]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.h
The actual version updates the status bar with the highlighted object ... Also it...
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.h
index eccbb09b263281fcf86c817f497ed035907bcdef..997f4d3368ea9eefb6cb109c482929a0abcd2d66 100644 (file)
 #ifndef __WxGUIEditorGraphicBBS_h__
 #define __WxGUIEditorGraphicBBS_h__
 
+//Includes same project
+#include "wxTabPanelsManager.h"
+#include "wxPropertiesPanel.h"
+#include "C:\RaC\CREATIS\bbtkGEditor\data\icons\wxart_new.xpm"
+
+//Includes creaMaracasVisu
+
+//Includes bbtk
+#include <bbtkWxGUIPackageBrowser2.h>
+#include <bbtkWxGUIHtmlBrowser.h>
+#include <bbtkBlackBoxDescriptor.h>
+#include <bbtkConfigurationFile.h>
+
+//Includes vtk
+
+//Includes wxWidgets
 #include <wx/frame.h>
 #include <wx/aui/aui.h>
+#include <wx/aui/auibook.h>
+#include <wx/panel.h>
+#include <wx/toolbar.h>
+#include <wx/bitmap.h>
+#include <wx/menu.h>
+#include <wx/dnd.h>
+#include <wx/grid.h>
 
+//Includes std
 
 namespace bbtk
 {
-
-       class wxGUIEditorGraphicContainer;
+       class wxTabPanelsManager;
   
        class  wxGUIEditorGraphicBBS : public wxFrame
   {
   public: 
          wxGUIEditorGraphicBBS(wxFrame *parent );
          ~wxGUIEditorGraphicBBS();
-  private:
-         wxAuiManager                                  m_mgr;
-         wxGUIEditorGraphicContainer   *editorgraphiccontainer;
-         
-  protected:
+
+               void initToolbar(); 
+               void initMenu();
+               void initTabPanelsManager();
+               void initPackageBrowser();
+               void initHelpHTMLBrowser();
+               void initPropertiesPanel();
+
+               wxAuiNotebook* getAuiNotebook();
+               void displayBlackBoxInfo(std::string packageName, std::string boxName);
+               void updateStatusBar(std::string textStatus);
+
+               void RegenerateAll();
+               void DoRegeneratePackageDoc(const std::string& pack);   
+               void DoRegenerateBoxesLists();
+
+               void OnToolLeftClick(wxCommandEvent& event);
+               void OnExit(wxCommandEvent& event);
+
+
+       private:
+               wxAuiManager                                            *_frameAUIMgr;
+               wxTabPanelsManager                                      *_tabsMgr;
+               wxAuiNotebook                                           *_notebook;
+               WxGUIPackageBrowser2                            *_pkgBrowser;
+               WxGUIHtmlBrowser                                        *_helpHtmlBrowser;
+               wxPropertiesPanel                                       *_propertiesPanel;
+
+               std::string _dataDir;
+
+               std::string _actualPkgBrowserBoxName;
+
+               std::string _actualPkgBrowserPkgName;
+
+       protected:
+
          
  };