-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.fld
42 lines (40 loc) · 1005 Bytes
/
main.fld
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
# data file for the Fltk User Interface Designer (fluid)
version 1.0304
header_name {.h}
code_name {.cpp}
decl {\#include <iostream>} {private local
}
Function {bt_callback(Fl_Widget*, void* userdata)} {open return_type {static void}
} {
code {if(userdata == "test")
std::cout << "Testing" << std::endl;
else if (userdata == "close")
exit(0);} {}
Fl_Window {} {open selected
xywh {327 156 650 450} type Double hide
} {}
}
Function {} {open
} {
Fl_Window window_main {
label {FLTK window} open
xywh {415 203 650 450} type Double box THIN_DOWN_BOX color 26 selection_color 70 labelsize 18 labelcolor 60 align 80 visible
} {
Fl_Input input {
label {Please enter value:}
xywh {145 10 150 25}
}
Fl_Button btnTest {
label Test
user_data {"test"}
callback bt_callback
xywh {10 100 100 25}
}
Fl_Return_Button btnClose {
label Close
user_data {"close"}
callback bt_callback
xywh {195 100 100 25}
}
}
}