-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCheckBox.cpp
45 lines (37 loc) · 993 Bytes
/
CheckBox.cpp
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
#include <gtkmm.h>
using namespace Glib;
using namespace Gtk;
class WindowMain : public Window {
public:
WindowMain() {
add(scrolledWindow);
scrolledWindow.add(fixed);
checkBox1.set_label("Checked");
checkBox1.set_active(true);
fixed.add(checkBox1);
fixed.move(checkBox1, 30, 30);
checkBox2.set_label("Unchecked");
checkBox2.set_active(false);
fixed.add(checkBox2);
fixed.move(checkBox2, 30, 60);
checkBox3.set_label("Indeterminate");
checkBox3.set_active(true);
checkBox3.set_inconsistent(true);
fixed.add(checkBox3);
fixed.move(checkBox3, 30, 90);
set_title("CheckBox example");
resize(300, 300);
show_all();
}
private:
Fixed fixed;
ScrolledWindow scrolledWindow;
CheckButton checkBox1;
CheckButton checkBox2;
CheckButton checkBox3;
};
int main(int argc, char* argv[]) {
auto application = Application::create(argc, argv);
WindowMain window;
return application->run(window);
}