]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.h
The actual version works with complex box automatic generated from selected boxes...
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.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  * \class bbtk::WxGUIEditorGraphicBBS
40  * \brief 
41  */
42  
43 #ifndef __WxGUIEditorGraphicBBS_h__
44 #define __WxGUIEditorGraphicBBS_h__
45
46 //Includes same project
47 #include "wxTabPanelsManager.h"
48 #include "wxBlackBoxEditionDialog.h"
49 #include "wxVtkSceneManager.h"
50 #include "GlobalConstants.h"
51
52 //#include "C:\RaC\CREATIS\bbtkGEditor\data\icons\wxart_new.xpm" // JPR
53 #include "wxart_new.xpm" // JPR
54 #include "wxart_open.xpm"
55 #include "wxart_save.xpm"
56 #include "wxart_run.xpm"
57 #include "wxart_delete.xpm"
58 #include "wxart_centerview.xpm"
59 #include "wxart_complexbox.xpm"
60 #include "wxart_complexinputport.xpm"
61 #include "wxart_complexoutputport.xpm"
62
63 //Includes creaMaracasVisu
64
65 //Includes bbtk
66 #include <bbtkWxGUIPackageBrowser2.h>
67 #include <bbtkWxGUIHtmlBrowser.h>
68 #include <bbtkBlackBoxDescriptor.h>
69 #include <bbtkConfigurationFile.h>
70
71 //Includes vtk
72
73 //Includes wxWidgets
74 #include <wx/frame.h>
75 #include <wx/aui/aui.h>
76 #include <wx/aui/auibook.h>
77 #include <wx/panel.h>
78 #include <wx/toolbar.h>
79 #include <wx/bitmap.h>
80 #include <wx/menu.h>
81 #include <wx/dnd.h>
82 #include <wx/grid.h>
83
84 //Includes std
85 #include <iostream>
86 #include <fstream>
87
88 namespace bbtk
89 {
90         //RaC: It is important if it exists a double relation 
91         //e.g. wxTabPanelsManager includes wxGUIEditorGraphicBBS, and wxGUIEditorGraphicBBS includes wxTabPanelsManager
92         class wxTabPanelsManager;
93         class wxVtkSceneManager;
94
95         class  wxGUIEditorGraphicBBS : public wxFrame
96         {
97                 public: 
98                         wxGUIEditorGraphicBBS(wxFrame *parent);
99                         ~wxGUIEditorGraphicBBS();
100
101                         void initToolbar(); 
102                         void initMenu();
103                         void initTabPanelsManager();
104                         void initPackageBrowser();
105                         void initHelpHTMLBrowser();
106
107                         wxAuiNotebook* getAuiNotebook();
108                         void displayBlackBoxInfo(std::string packageName, std::string boxName);
109                         void updateStatusBar(std::string textStatus);
110                         void executeScript(std::string script);
111
112                         void editBlackBox(GBlackBoxModel *bbmodel);
113                         void editDiagramParameters(wxVtkSceneManager* scene);
114
115                         void RegenerateAll();
116                         void DoRegeneratePackageDoc(const std::string& pack);   
117                         void DoRegenerateBoxesLists();
118
119                         void refreshGUIControls();
120
121                         // File menu and toolbar events
122                         void OnCreateNewTab(wxCommandEvent& event);
123                         void OnOpenDiagram(wxCommandEvent& event);
124                         void OnSaveActualDiagram(wxCommandEvent& event);
125                         void OnSaveActualBBS(wxCommandEvent& event);
126                         void OnSaveActualComplexBox(wxCommandEvent& event);
127                         void OnExecuteActualDiagram(wxCommandEvent& event);
128                         void OnDeleteAllBoxesActualDiagram(wxCommandEvent& event);
129                         void OnCenterViewActualDiagram(wxCommandEvent& event);
130                         void OnClickBtnComplexBox(wxCommandEvent& event);
131                         void OnAddComplexBoxInput(wxCommandEvent& event);
132                         void OnAddComplexBoxOutput(wxCommandEvent& event);
133                         void OnExit(wxCommandEvent& event);
134
135                         // Edit menu events
136                         void OnCopySelectedToComplexDiagram(wxCommandEvent& event);
137
138
139                 private:
140                         
141                         //AuiManager for the wxWindow
142                         wxAuiManager                                            *_frameAUIMgr;
143
144                         //Class that manages all the tabs in the window
145                         wxTabPanelsManager                                      *_tabsMgr;
146
147                         //Notebook managed by the wxTabPanelsManager
148                         wxAuiNotebook                                           *_notebook;
149
150                         //Instance to the BBTK Package Browser
151                         WxGUIPackageBrowser2                            *_pkgBrowser;
152
153                         //Instance to the BBTK Help Browser
154                         WxGUIHtmlBrowser                                        *_helpHtmlBrowser;
155
156                         //Name of the box and its package that is shown in the browser
157                         std::string _actualPkgBrowserBoxName;
158                         std::string _actualPkgBrowserPkgName;
159
160                 protected:
161
162           
163  };
164
165
166 }
167 // namespace bbtk
168 #endif
169