]> Creatis software - bbtk.git/commitdiff
new
authorjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Mon, 6 Oct 2008 09:03:36 +0000 (09:03 +0000)
committerjean-pierre roux <jean-pierre.roux@creatis.insa-lyon.fr>
Mon, 6 Oct 2008 09:03:36 +0000 (09:03 +0000)
packages/wx/bbs/appli/exampleSlider.bbs

index fa6dd812b5e7247d0c49deaef6096cac27c28971..300f502da42e3eadaf4d68c7d3b839d3fd3f09df 100644 (file)
@@ -1,11 +1,24 @@
+description "Simple use of wx::Slider widget"
+author "jpr@creatis.insa-lyon.fr"
+category "example;widget"
+
+# Load the packages
 load std
 load wx
+
+# Create the Objects
 new Slider     slider
  set slider.ReactiveOnTrack 1
 new OutputText text
 new LayoutLine layout
+
+# Graphical pipeline
 connect slider.Widget    layout.Widget1
 connect text.Widget      layout.Widget2
+
+# Execution pipeline
 connect slider.BoxChange text.BoxExecute
 connect slider.Out       text.In
+
+# Go!
 exec layout