X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fwx%2Fbbs%2Fappli%2FexampleSlider.bbs;h=1664203390915664ce9f2e783aec7971e5f1196c;hb=0aa49410fc182f0c3a5cbec359d30ca65a26a180;hp=300f502da42e3eadaf4d68c7d3b839d3fd3f09df;hpb=8c7d963544d45c3a7d5c262f6dd9d7f8cf8e7cf1;p=bbtk.git diff --git a/packages/wx/bbs/appli/exampleSlider.bbs b/packages/wx/bbs/appli/exampleSlider.bbs index 300f502..1664203 100644 --- a/packages/wx/bbs/appli/exampleSlider.bbs +++ b/packages/wx/bbs/appli/exampleSlider.bbs @@ -1,24 +1,96 @@ +# --------------------------------------------------------------------- +# +# 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;widget" +category "example" # Load the packages load std load wx # 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 LayoutLine layout + +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