]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/InterpreterBBS.h
Feature #1771 Add licence terms for all files.
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / InterpreterBBS.h
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------  
24 */
25
26 /*=========================================================================                                                                               
27 Program:   bbtk
28 Module:    $RCSfile$
29 Language:  C++
30 Date:      $Date$
31 Version:   $Revision$
32 =========================================================================*/
33
34 /* ---------------------------------------------------------------------
35
36 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
37 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
38 *
39 *  This software is governed by the CeCILL-B license under French law and 
40 *  abiding by the rules of distribution of free software. You can  use, 
41 *  modify and/ or redistribute the software under the terms of the CeCILL-B 
42 *  license as circulated by CEA, CNRS and INRIA at the following URL 
43 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
44 *  or in the file LICENSE.txt.
45 *
46 *  As a counterpart to the access to the source code and  rights to copy,
47 *  modify and redistribute granted by the license, users are provided only
48 *  with a limited warranty  and the software's author,  the holder of the
49 *  economic rights,  and the successive licensors  have only  limited
50 *  liability. 
51 *
52 *  The fact that you are presently reading this means that you have had
53 *  knowledge of the CeCILL-B license and that you accept its terms.
54 * ------------------------------------------------------------------------ */                                                                         
55
56
57 /****
58 * Design and Developpement of BBTK GEditor
59 * Ricardo A Corredor J <eduardo.davila@creatis.insa-lyon.fr>
60 * RaC - 2010
61 ****/
62
63 #ifndef __ExecuterBBSG_h__
64 #define __ExecuterBBSG_h__
65
66 //Includes same project
67 #include "wxVtkSceneManager.h"
68
69 //Includes bbtk
70 #include "bbtkInterpreterVirtual.h"
71
72 //Includes std
73 #include <iostream>
74
75
76 //#include "bbtkSystem.h"
77 //#include "bbtkComplexBlackBox.h"
78 #include "bbtkFactory.h"
79
80 namespace bbtk
81 {
82         class InterpreterBBS : public InterpreterVirtual
83         {
84                 public:
85                 static Pointer New( wxVtkSceneManager* sceneManager, Factory::Pointer factory );
86                 InterpreterBBS( wxVtkSceneManager* sceneManager, Factory::Pointer factory );
87                 ~InterpreterBBS();
88                 
89                 //Public methods
90
91                 virtual void commandNew( const std::string& boxType, const std::string& boxName);
92                 
93                 virtual void commandConnection (const std::string &boxfrom,
94                                      const std::string &output,
95                                      const std::string &boxto,
96                                      const std::string &input);
97                 virtual void commandSet(const std::string &box,const std::string &input,const std::string &value);
98
99
100                 virtual void commandDefine(const std::string &name,const std::string &pack,const std::string &scriptfilename);
101                 virtual void commandEndDefine();
102                 
103                 virtual void commandExec(const std::string &word);
104                 
105                 virtual void commandAuthor(const std::string &author);
106                 virtual void commandCategory(const std::string &categorytype);
107                 virtual void commandDescription(const std::string &description);
108                 
109                 virtual void commandInput(const std::string &name,const std::string &box,const std::string &input,const std::string  &help);
110                 virtual void commandOutput(const std::string &name,const std::string &box,const std::string &output,const std::string  &help);
111
112
113                 double              _xGeneral;
114                 double              _yGeneral;
115                 double              _zGeneral;
116                 int                                     _countInputs;
117                 int                                     _countOutputs;
118                 int                                     _countBoxes;
119                 wxVtkSceneManager   *_sceneManager;
120                 Factory::Pointer    _factory;
121                 
122         private:
123
124                 //Private Attributes
125
126                 //Private Methods
127
128         protected:
129
130                 //Protected Attributes
131
132                 //Protected methods
133                 
134         };
135 }
136 // namespace bbtk
137 #endif
138