-
Notifications
You must be signed in to change notification settings - Fork 1
/
HlabGui.fl
47 lines (44 loc) · 975 Bytes
/
HlabGui.fl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# data file for the Fltk User Interface Designer (fluid)
version 1.0304
header_name {.h}
code_name {.cxx}
decl {\#include "HlabLogic.h"} {private global
}
decl {\#include "HexView.h"} {public global
}
class HlabGui {open
} {
Function {make_window()} {open
} {
Fl_Window mainWindow {
label {Hex Lab} open
xywh {288 170 604 527} type Double visible
} {
Fl_Menu_Bar menuBar {
label menu open
xywh {0 0 604 20} color 29
} {}
Fl_Box hexView {
xywh {0 20 604 480} box BORDER_BOX color 7 labeltype NO_LABEL
class HexView
}
Fl_Output statusBar {
xywh {0 500 604 20} color 29 labelfont 4 textfont 4
}
}
}
}
Function {} {open
} {
code {HlabGui gui;
Fl_Double_Window *w = gui.make_window();
onGuiFinished(&gui, argc, argv);
//Fl::add_idle(onIdle, &gui);
w->end();
w->show();
int rc = Fl::run();
onExit();
return rc;
/* fluid will insert Fl::run() here... */} {selected
}
}