/
dinruspro
/
reference
Обзор
Документация
Войти
/
dinruspro
/
reference
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
GridCtrlTest/Panel.h
32 строки
626 B
EnergonV
Справка по коду перекочевала в репозиторий (наконец-то!)
09 янв 2024, 19:20
09 янв 2024, 19:20
e333663
Код
Авторство
О чём код?
#ifndef _GridTest_Panel_h_ #define _GridTest_Panel_h_ #include <CtrlLib/CtrlLib.h> #include <GridCtrl/GridCtrl.h> using namespace Upp; #define LAYOUTFILE <GridCtrlTest/Panel.lay> #include <CtrlCore/lay.h> struct Panel : WithPanelLayout<ParentCtrl> { GridCtrl* grid; WithEditOptionsLayout<ParentCtrl> editopt; WithLookOptionsLayout<ParentCtrl> lookopt; WithColorsOptionsLayout<ParentCtrl> colsopt; WithNumberLayout<ParentCtrl> numsopt; void LookOptions(int n); void ColorsOptions(int n); void EditOptions(int n); void Actions(int n); void Init(GridCtrl& g); Panel(); typedef Panel CLASSNAME; }; #endif