]> Creatis software - bbtk.git/blob - packages/wx/bbs/appli/exampleCheckBox.bbs
8c7e850f6b79f7b5a1afd2a97cae795c82166e2a
[bbtk.git] / packages / wx / bbs / appli / exampleCheckBox.bbs
1 description "Simple use of wx::CheckBox widget"
2 author "jpr@creatis.insa-lyon.fr"
3 category "example"
4
5 # Load the packages
6 load std
7 load wx
8
9 # Create the Objects
10 new CheckBox   chkbox
11 new OutputText text
12 new LayoutLine layout
13
14 # Graphical pipeline
15 connect chkbox.Widget    layout.Widget1
16 connect text.Widget      layout.Widget2
17
18 # Execution pipeline
19 connect chkbox.BoxChange text.BoxExecute
20 connect chkbox.Out       text.In
21
22 # Go!
23 exec layout