ultimatepp/upptst/TestChStyle/TestChStyle.h
cxl fe6350d690 .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@14158 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-03-12 16:05:56 +00:00

30 lines
522 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:
typedef TestChStyle CLASSNAME;
ToolBar bar;
MenuBar menu;
Sample sample;
Vector<void (*)()> skin_fn;
TimeCallback tm;
TestChStyle();
};
#endif