]> Creatis software - bbtkGEditor.git/blobdiff - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.h
Updated Version with the moving of the objects updated and the background doesn't...
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxTabPanelsManager.h
index 5f08e601e731a5261e218b5c28f682e18850bea0..b987a9bdd9ca06c8a4d51344c27d11ec6c53873d 100644 (file)
@@ -50,27 +50,37 @@ Version:   $Revision$
 #include <iostream>
 
 #include "wxGEditorTabPanel.h"
+#include "wxVtkSceneManager.h"
+#include "bbtkwxGUIEditorGraphicBBS.h"
 
 using namespace std;
 
 namespace bbtk
 {
 
+       class wxVtkSceneManager;
+       class wxGEditorTabPanel;
+       class wxGUIEditorGraphicBBS;
+
        class wxTabPanelsManager
        {
        public: 
-               wxTabPanelsManager(wxAuiNotebook *notebook);
+               wxTabPanelsManager(wxGUIEditorGraphicBBS *parent);
                ~wxTabPanelsManager();
                
                virtual void addNewTab();
                wxAuiNotebook* getAuiNotebook();
                wxGEditorTabPanel* getActualTabPanel();
 
+               void displayBlackBoxInfo(std::string packageName, std::string boxName);
+               
+
        private:
 
        /**
        ** The map 
        */
+               wxGUIEditorGraphicBBS *_parent;
                map<int, wxPanel*> _panels;
                wxGEditorTabPanel* _actual;
                wxAuiNotebook  *_notebook;