mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
27 lines
504 B
C++
27 lines
504 B
C++
#ifndef _I18NCtrlLayoutTest_I18NCtrlLayoutTest_h
|
|
#define _I18NCtrlLayoutTest_I18NCtrlLayoutTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <I18NCtrlLayoutTest/Layout.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class MainDlg : public WithMainDlg<TopWindow> {
|
|
MenuBar m_menu;
|
|
typedef MainDlg CLASSNAME;
|
|
|
|
public:
|
|
void OnFile();
|
|
void OnPallette();
|
|
void OnPrinter();
|
|
void OnMenu(Bar& bar );
|
|
void OnLanguage(Bar& bar );
|
|
void OnChangeLanguage(int language );
|
|
|
|
MainDlg();
|
|
};
|
|
|
|
#endif
|
|
|