#ifndef _GridTest_Panel_h_ #define _GridTest_Panel_h_ #include #include using namespace Upp; #define LAYOUTFILE #include struct Panel : WithPanelLayout { GridCtrl* grid; WithEditOptionsLayout editopt; WithLookOptionsLayout lookopt; WithColorsOptionsLayout colsopt; WithNumberLayout 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