]> Creatis software - bbtk.git/blobdiff - packages/wx/bbs/appli/exampleSlider.bbs
Feature #1774
[bbtk.git] / packages / wx / bbs / appli / exampleSlider.bbs
index 962a353fa6b2a0a20c0b00624eed471d2d44c67f..1664203390915664ce9f2e783aec7971e5f1196c 100644 (file)
@@ -1,7 +1,96 @@
-description "Simple test of wx::Slider widget"
-author "laurent.guigues@creatis.insa-lyon.fr"
-category "example;widget"
+# ---------------------------------------------------------------------
+#
+# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+#                        pour la SantÈ)
+# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+# Previous Authors : Laurent Guigues, Jean-Pierre Roux
+# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+#
+#  This software is governed by the CeCILL-B license under French law and
+#  abiding by the rules of distribution of free software. You can  use,
+#  modify and/ or redistribute the software under the terms of the CeCILL-B
+#  license as circulated by CEA, CNRS and INRIA at the following URL
+#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+#  or in the file LICENSE.txt.
+#
+#  As a counterpart to the access to the source code and  rights to copy,
+#  modify and redistribute granted by the license, users are provided only
+#  with a limited warranty  and the software's author,  the holder of the
+#  economic rights,  and the successive licensors  have only  limited
+#  liability.
+#
+#  The fact that you are presently reading this means that you have had
+#  knowledge of the CeCILL-B license and that you accept its terms.
+# ------------------------------------------------------------------------ */
 
+
+description "Simple use of wx::Slider widget"
+author "jpr@creatis.insa-lyon.fr"
+category "example"
+
+# Load the packages
+load std
 load wx
-new Slider slider
-exec slider
+
+# Create the Objects
+
+new LayoutLine layout
+
+// Initialisations with Set
+//---------------------------
+
+new Slider     slider
+ set slider.ReactiveOnTrack 1
+ set slider.Min 10
+ set slider.Max 100
+ set slider.In 25
+ set slider.Label 1
+ set slider.Orientation H  
+ set slider.Title "initialisations with Set"      
+new OutputText text
+
+new Add a1
+   set a1.In1 5
+
+new Add a2
+   set a2.In1 5
+
+new Add a3
+   set a3.In1 5
+
+// Initialisations with Connect 
+//---------------------------------         
+new Slider     slider2
+ set slider2.ReactiveOnTrack 1
+
+ set a1.In2 5
+ connect a1.Out slider2.Min
+
+ set a2.In2 95
+ connect a2.Out slider2.Max 
+   
+ set a3.In2 20
+ connect a3.Out slider2.In
+
+ set slider2.Label 1
+ set slider2.Orientation H  
+ set slider2.Title "initialisations with Connect"      
+new OutputText text2
+
+
+# Graphical pipeline
+connect slider.Widget    layout.Widget1
+connect text.Widget      layout.Widget2
+
+connect slider2.Widget    layout.Widget3
+connect text2.Widget      layout.Widget4
+
+# Execution pipeline
+connect slider.BoxChange text.BoxExecute
+connect slider.Out       text.In
+
+connect slider2.BoxChange text2.BoxExecute
+connect slider2.Out       text2.In
+
+# Go!
+exec layout