mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
26 lines
404 B
C++
26 lines
404 B
C++
#ifndef _GUISample1_GUISample1_h
|
|
#define _GUISample1_GUISample1_h
|
|
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <GUISample1/GUISample1.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
|
|
class GUISample1 : public WithGUISample1Layout<TopWindow> {
|
|
public:
|
|
typedef GUISample1 CLASSNAME;
|
|
GUISample1();
|
|
void ToolbarClicked();
|
|
void InitToolbar(Bar& bar);
|
|
};
|
|
|
|
#endif
|
|
|