mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
59 lines
1.1 KiB
C++
59 lines
1.1 KiB
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define IMAGECLASS TutorialImg
|
|
#define IMAGEFILE <Gui12/images.iml>
|
|
#include <Draw/iml.h>
|
|
|
|
struct MyAppWindow : TopWindow {
|
|
MenuBar menu;
|
|
ToolBar tool;
|
|
StatusBar status;
|
|
|
|
void MenuFn() {
|
|
PromptOK("Fn activated!");
|
|
}
|
|
|
|
void BarFn() {
|
|
PromptOK("Fn2 activated!");
|
|
}
|
|
|
|
void Exit() {
|
|
if(PromptOKCancel("Exit MyApp?"))
|
|
Break();
|
|
}
|
|
|
|
void SubBar(Bar& bar) {
|
|
bar.AddMenu("Function", TutorialImg::Fn(), THISBACK(MenuFn))
|
|
.Help("This invokes MenuFn method of tutorial example");
|
|
bar.Add(TutorialImg::Fn2(), THISBACK(BarFn))
|
|
.Help("This invokes BarFn method of tutorial example");
|
|
bar.Add("Exit", TutorialImg::Exit(), THISBACK(Exit));
|
|
}
|
|
|
|
void MainMenu(Bar& bar) {
|
|
bar.Add("Menu", THISBACK(SubBar));
|
|
}
|
|
|
|
typedef MyAppWindow CLASSNAME;
|
|
|
|
MyAppWindow() {
|
|
Title("My application with bars").Sizeable();
|
|
AddFrame(menu);
|
|
AddFrame(TopSeparatorFrame());
|
|
AddFrame(tool);
|
|
AddFrame(status);
|
|
AddFrame(InsetFrame());
|
|
menu.Set(THISBACK(MainMenu));
|
|
menu.WhenHelp = status;
|
|
tool.Set(THISBACK(SubBar));
|
|
tool.WhenHelp = status;
|
|
}
|
|
};
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
MyAppWindow app;
|
|
app.Run();
|
|
}
|