X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FEditorGraphicBBS%2FbbsWxGUIEditorGraphic%2FbbtkwxGUIEditorGraphicBBS.h;h=997f4d3368ea9eefb6cb109c482929a0abcd2d66;hb=3babfd57a9b4b3cffba34415e928239592e7d4a1;hp=eccbb09b263281fcf86c817f497ed035907bcdef;hpb=cf27872d1d54520546326af3a294962c34d12496;p=bbtkGEditor.git diff --git a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.h b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.h index eccbb09..997f4d3 100644 --- a/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.h +++ b/lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.h @@ -43,25 +43,79 @@ #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 +#include +#include +#include + +//Includes vtk + +//Includes wxWidgets #include #include +#include +#include +#include +#include +#include +#include +#include +//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: + };