]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h
db615aa629274b7263137abc85020f446f7f6469
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxGEditorTabPanel.h
1 /*=========================================================================
2 Program:   bbtk
3 Module:    $RCSfile$
4 Language:  C++
5 Date:      $Date$
6 Version:   $Revision$
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and
15 *  abiding by the rules of distribution of free software. You can  use,
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B
17 *  license as circulated by CEA, CNRS and INRIA at the following URL
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability.
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */
30
31
32
33 /**
34 *  \file
35 *  \brief Class bbtk::BlackBox : abstract black-box interface.
36 */
37
38 /****
39 * Design and Developpement of BBTK GEditor
40 * Ricardo A Corredor J <ra.corredor67@uniandes.edu.co>
41 * RaC - 2010
42 ****/
43
44 #ifndef __wxGEditorTabPanel_h__
45 #define __wxGEditorTabPanel_h__
46
47 //Includes same project
48 #include "wxVtkSceneManager.h"
49 #include "wxTabPanelsManager.h"
50
51 //Includes wxWidgets
52 #include <wx/panel.h>
53 #include <wx/aui/aui.h>
54 #include <wx/dnd.h>
55
56 //Includes creaMaracasVisu
57 #include <wxVtk3DBaseView.h>
58
59 //Includes std
60 #include <fstream>
61
62 namespace bbtk
63 {
64
65         class tmpClasswxTextDropTarget :   public wxTextDropTarget
66         {
67                 public:
68                   virtual bool OnDropText(wxCoord x, wxCoord y, const wxString& data) { return false;}
69         };
70
71
72         //RaC: It is important if it exists a double relation
73         //e.g. wxGEditorTabPanel includes wxVtkSceneManager, and wxVtkSceneManager includes wxGEditorTabPanel
74         class wxVtkSceneManager;
75         class wxTabPanelsManager;
76
77         // RaC Be careful with the double heritance
78         class wxGEditorTabPanel :  public wxPanel, public wxTextDropTarget
79         {
80         public:
81                 wxGEditorTabPanel();
82                 wxGEditorTabPanel(wxWindow *parent, int id);
83                 ~wxGEditorTabPanel();
84
85                 void initWxVtkCanvas();
86
87                 // Sets the parent manager
88                 void setPanelsManager(wxTabPanelsManager* panelsManager);
89
90                 // Get the BBS script of the pipeline diagram included in the panel
91                 std::string getDiagramBBS(bool wln=false);
92
93                 // Saves the actual BBS as complex box
94                 // RaC TOFIX It must be included the package of the complex box
95                 std::string saveComplexBoxBBS();
96
97                 // Shows the dialog to edit black box parameters
98                 void editBlackBox(GBlackBoxModel *bbmodel);
99
100                 // Save diagram as BBG
101                 void saveDiagram(std::string &content, const std::string &path); //DFCH
102
103                 // Save temporary diagram as BBG
104                 void saveTempDiagram();
105
106                 // Load BBG diagram
107                 void loadDiagram(ifstream &inputStream, const std::string &path); //DFCH
108
109                 // Load temporary diagram as BBG
110                 void  loadTempDiagram(unsigned short un);
111
112                 // evaluate the position in the undo actions list
113                 unsigned short getUndoState();
114
115                 // evaluate the position in the redo actions list
116                 unsigned short getRedoState();
117
118                 // Add a new complex input object to the scene
119                 void addComplexInputPort(std::string portName);
120
121                 // Add a new complex output object to the scene
122                 void addComplexOutputPort(std::string portName);
123
124                 // Delete all boxes in the diagram
125                 void deleteAllBoxes();
126
127                 // Center the camera in the initial position
128                 void centerView();
129
130                 // Display feedback info in the GUI
131                 void displayBlackBoxInfo(std::string packageName, std::string boxName);
132                 void updateStatusBar(std::string textStatus);
133
134                 int getPanelId();
135                 bool isComplexBox();
136                 void setComplexBox(bool val);
137
138                 // Returns a map with the id,controller of all the objects selected
139                 std::map<int,GObjectController*> getSelectedObjects();
140
141                 void addObjects(std::map<int,GObjectController*> objectsMap);
142                 int getNumSelectedObjects();
143
144                 // Receives the string from a drag and drop source as for example the BBTK Package Browser
145                 virtual bool OnDropText(wxCoord x, wxCoord y, const wxString& data);
146
147                 wxVtkSceneManager* getSceneManager();
148
149                 void SetFullPath( const std::string& );
150                 void SetFileName( const std::string& );
151                 void SetCbName(std::string cbName);
152         void SetCbPackageName(std::string packagename);
153         void SetAuthor(std::string author);
154         void SetCategory(std::string category);
155         void SetDescription(std::string description);
156         //Getters
157         std::string GetFullPath( );
158         std::string GetFileName( );
159         
160         std::string GetCbName();
161         std::string GetCbPackageName();
162         std::string GetAuthor();
163         std::string GetDescription();
164         std::string GetCategory();
165
166
167
168         //=========================================================================
169
170         private:
171                 std::vector<std::string> states; // represents each modification of the tab. Maxixum size 100!!
172                 std::vector<std::string>::iterator _actualdo;   // actual position on modifications vector
173
174                 int                                             _id;
175                 wxAuiManager                    *_panelAUIMgr;
176                 wxVtkSceneManager               *_sceneManager;
177                 wxTabPanelsManager              *_panelsManager;
178                 std::string                             _fullPath;
179                 std::string                             _fileName;
180
181         protected:
182
183         };
184
185
186 }
187 // namespace bbtk
188 #endif
189