]> Creatis software - bbtk.git/blob - packages/wx/bbs/appli/exampleGUI1.bbs
Feature #1774
[bbtk.git] / packages / wx / bbs / appli / exampleGUI1.bbs
1 # ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la SantÈ)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26
27
28 description "Example of automatic gui creation with bbi command 'newgui'"
29 category "example"
30 author "laurent.guigues@creatis.insa-lyon.fr"
31
32 load std
33 include wx
34
35 # Create a Add box
36 new Add a
37
38 # Set the initial values of its inputs :
39 # will be used to initialize the GUI
40 set a.In1 10
41 set a.In2 20
42
43 # And create its GUI
44 # create a GUI for box 'a' and call it 'ag'
45 # this bbi macro inspects the box provided 
46 # and define a complex box called agType
47 # which contains the suitable GUI components 
48 # for the box provided (see User's Guide for details)
49 # an instance of 'agType' called 'ag' is then created
50 # and its output are connected to the corresponding inputs of 'a'
51
52 # setting "Echo" message level to 2 allow
53 # to see which commands are generated by the macro 'newgui'
54 message echo 2
55 newgui a ag
56 message echo 0
57
58 # Define the properties of the window of the GUI box created
59 set ag.WinTitle "Automatic GUI"
60 set ag.WinWidth 400
61 set ag.WinHeight 200
62
63
64 # Output of the add box
65 new OutputText out
66 connect a.Out out.In
67 set out.WinWidth 200
68 set out.WinHeight 200
69
70 # Connect changes of the GUI to the execution of the output 
71 # to refresh the output each time the user interacts with the GUI
72 connect ag.BoxChange out.BoxExecute
73
74 # go
75 exec out