]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.h
std::string vs wxString
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.h
index a1b3878d127890ce2eac5624f8e00338a06f9cd6..5f3a91fbfc25238b9d4644a5868ed861bd4e2a05 100644 (file)
 
 //Includes same project
 #include "wxTabPanelsManager.h"
-#include "wxart_new.xpm"
+#include "wxPropertiesPanel.h"
+#include "wxEditionDialog.h"
+#include "wxVtkSceneManager.h"
+//#include "C:\RaC\CREATIS\bbtkGEditor\data\icons\wxart_new.xpm" // JPR
+#include "wxart_new.xpm" // JPR
 
 //Includes creaMaracasVisu
 
@@ -53,6 +57,7 @@
 #include <bbtkWxGUIPackageBrowser2.h>
 #include <bbtkWxGUIHtmlBrowser.h>
 #include <bbtkBlackBoxDescriptor.h>
+#include <bbtkConfigurationFile.h>
 
 //Includes vtk
 
 #include <wx/bitmap.h>
 #include <wx/menu.h>
 #include <wx/dnd.h>
+#include <wx/grid.h>
+
+//Includes std
+#include <iostream>
+#include <fstream>
 
 namespace bbtk
 {
+       class wxTabPanelsManager;
+
+       class wxVtkSceneManager;
   
        class  wxGUIEditorGraphicBBS : public wxFrame
   {
@@ -80,6 +93,19 @@ namespace bbtk
                void initTabPanelsManager();
                void initPackageBrowser();
                void initHelpHTMLBrowser();
+               void initPropertiesPanel();
+
+               wxAuiNotebook* getAuiNotebook();
+               void displayBlackBoxInfo(std::string packageName, std::string boxName);
+               void updateStatusBar(std::string textStatus);
+               void executeActualDiagram();
+
+               void editBlackBox(GBlackBoxModel *bbmodel);
+               void editDiagramParameters(wxVtkSceneManager* scene);
+
+               void RegenerateAll();
+               void DoRegeneratePackageDoc(const std::string& pack);   
+               void DoRegenerateBoxesLists();
 
                void OnToolLeftClick(wxCommandEvent& event);
                void OnExit(wxCommandEvent& event);
@@ -91,9 +117,14 @@ namespace bbtk
                wxAuiNotebook                                           *_notebook;
                WxGUIPackageBrowser2                            *_pkgBrowser;
                WxGUIHtmlBrowser                                        *_helpHtmlBrowser;
+               wxPropertiesPanel                                       *_propertiesPanel;
 
                std::string _dataDir;
 
+               std::string _actualPkgBrowserBoxName;
+
+               std::string _actualPkgBrowserPkgName;
+
        protected: