X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsWxGUIEditorGraphic%2FwxTabPanelsManager.h;h=b987a9bdd9ca06c8a4d51344c27d11ec6c53873d;hb=50851761f4216d932217db8e8fe56dd5aac6b0fb;hp=5f08e601e731a5261e218b5c28f682e18850bea0;hpb=eaf825847b9ac4bd762deafa59a7df1c2ceba433;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.h b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.h index 5f08e60..b987a9b 100644 --- a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.h +++ b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.h @@ -50,27 +50,37 @@ Version: $Revision$ #include #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 _panels; wxGEditorTabPanel* _actual; wxAuiNotebook *_notebook;