ultimatepp/upptst/TestChStyle/TestChStyle.h
2024-12-06 10:05:57 +01:00

32 lines
547 B
C++

#ifndef _TestChStyle_TestChStyle_h
#define _TestChStyle_TestChStyle_h
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define LAYOUTFILE <TestChStyle/TestChStyle.lay>
#include <CtrlCore/lay.h>
struct Sample : public Ctrl {
virtual void Paint(Draw& w);
};
class TestChStyle : public WithTestChStyleLayout<TopWindow> {
public:
virtual void Skin();
typedef TestChStyle CLASSNAME;
ToolBar bar;
MenuBar menu;
Sample sample;
Vector<void (*)()> skin_fn;
TimeCallback tm;
TestChStyle();
};
#endif