description "Simple use of wx::CheckBox widget" author "jpr@creatis.insa-lyon.fr" category "example" # Load the packages load std load wx # Create the Objects new CheckBox chkbox new OutputText text new LayoutLine layout # Graphical pipeline connect chkbox.Widget layout.Widget1 connect text.Widget layout.Widget2 # Execution pipeline connect chkbox.BoxChange text.BoxExecute connect chkbox.Out text.In # Go! exec layout