]> Creatis software - bbtk.git/blob - appli/exampleCheckBox.bbs
#3202 BBTK Feature New Normal - fast algorithm for ImageBoundaries box
[bbtk.git] / 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