mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
32 lines
547 B
C++
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
|