-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.fld
38 lines (36 loc) · 851 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
# data file for the Fltk User Interface Designer (fluid)
version 1.0107
header_name {.h}
code_name {.cpp}
decl {\#include <iostream>} {}
Function {bt_callback(Fl_Widget*, void* userdata)} {open selected return_type {static void}
} {
code {if(userdata == "test")
std::cout << "Testing" << std::endl;
else if (userdata == "close")
exit(0);} {}
}
Function {} {open
} {
Fl_Window window_main {
label {FLTK window} open
xywh {387 309 305 135} type Double 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}
}
}
}