]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.h
e7eb55338344e9ebbb92b4f8b1d31c2cf4ac174f
[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 <iostream>
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);
102
103                 // Load BBG diagram
104                 void loadDiagram(ifstream &inputStream);
105
106                 // Add a new complex input object to the scene
107                 void addComplexInputPort(std::string portName);
108
109                 // Add a new complex output object to the scene
110                 void addComplexOutputPort(std::string portName);
111
112                 // Delete all boxes in the diagram
113                 void deleteAllBoxes();
114
115                 // Center the camera in the initial position
116                 void centerView();
117
118                 // Display feedback info in the GUI
119                 void displayBlackBoxInfo(std::string packageName, std::string boxName);
120                 void updateStatusBar(std::string textStatus);
121
122                 int getPanelId();
123                 bool isComplexBox();
124                 void setComplexBox(bool val);
125
126                 // Returns a map with the id,controller of all the objects selected
127                 std::map<int,GObjectController*> getSelectedObjects();
128
129                 void addObjects(std::map<int,GObjectController*> objectsMap);
130                 int getNumSelectedObjects();
131
132                 // Receives the string from a drag and drop source as for example the BBTK Package Browser
133                 virtual bool OnDropText(wxCoord x, wxCoord y, const wxString& data);
134
135                 wxVtkSceneManager* getSceneManager();
136
137                 void SetFullPath( const std::string& );
138                 void SetFileName( const std::string& );
139                 void SetCbName(std::string cbName);
140         void SetCbPackageName(std::string packagename);
141         void SetAuthor(std::string author);
142         void SetCategory(std::string category);
143         void SetDescription(std::string description);
144         //Getters
145         std::string GetFullPath( );
146         std::string GetFileName( );
147         
148         std::string GetCbName();
149         std::string GetCbPackageName();
150         std::string GetAuthor();
151         std::string GetDescription();
152         std::string GetCategory();
153
154
155
156         //=========================================================================
157
158         private:
159
160                 int                                             _id;
161                 wxAuiManager                    *_panelAUIMgr;
162                 wxVtkSceneManager               *_sceneManager;
163                 wxTabPanelsManager              *_panelsManager;
164                 std::string                             _fullPath;
165                 std::string                             _fileName;
166
167         protected:
168
169         };
170
171
172 }
173 // namespace bbtk
174 #endif
175