X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2FCutModule%2Finterface%2FCutModelMainPanel.h;h=e291c8b7469abb333fc581a0726058a11a9cfa53;hb=65b180b81f5c6b26a2e151800e4b6a305d27c538;hp=96891b2061d1b0928b750c5b4a4ce1a6144550d7;hpb=241ec043d82df169705445f317b332207fd1b6b2;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/CutModule/interface/CutModelMainPanel.h b/lib/maracasVisuLib/src/CutModule/interface/CutModelMainPanel.h index 96891b2..e291c8b 100644 --- a/lib/maracasVisuLib/src/CutModule/interface/CutModelMainPanel.h +++ b/lib/maracasVisuLib/src/CutModule/interface/CutModelMainPanel.h @@ -1,17 +1,17 @@ /*========================================================================= - Program: wxMaracas - Module: $RCSfile: CutModelMainPanel.h,v $ - Language: C++ - Date: $Date: 2009/12/08 13:42:48 $ - Version: $Revision: 1.4 $ +Program: wxMaracas +Module: $RCSfile: CutModelMainPanel.h,v $ +Language: C++ +Date: $Date: 2010/02/24 13:56:06 $ +Version: $Revision: 1.5 $ - Copyright: (c) 2002, 2003 - License: +Copyright: (c) 2002, 2003 +License: - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notice for more information. +This software is distributed WITHOUT ANY WARRANTY; without even +the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +PURPOSE. See the above copyright notice for more information. =========================================================================*/ @@ -23,6 +23,7 @@ #include #include "wx/aui/aui.h" #include + #include #include "marTypes.h" @@ -34,13 +35,23 @@ #include "vtkImageData.h" #include "vtkRenderWindowInteractor.h" +//RaC 02-2010 Add tabs +#include +#include +#include +#include +#include +#include +#include + + class creaMaracasVisu_EXPORT CutModelMainPanel : public wxPanel { public: - - ~CutModelMainPanel( ); + + ~CutModelMainPanel( ); static CutModelMainPanel* getInstance(wxWindow* parent=NULL, std::string path =""); @@ -54,6 +65,12 @@ public: void initialize(std::string path); + //RaC PolygonCutter changes + void onCheckChanged(); + void onExecuteCutPolygon(); + void UpdatePolygon(bool isChecked); + void UpdatePolygon(); + void onAddCutModel(); void onUndo(); @@ -65,7 +82,7 @@ public: void ShowViewBox(int id,bool check); void ChangeShape(int id,int selection); - + void changeColor(int id,double r,double g,double b); void updateActorDirection(int id); @@ -88,7 +105,7 @@ public: int GetType(); - + private: CutModelMainPanel( wxWindow* parent, std::string path); @@ -109,39 +126,65 @@ private: wxAuiManager* _wxauimanager; + int addNewViewPanel()throw( CutModelException); + + CutModelView* getModelView(int id)throw( CutModelException); + + int _panelid; + + int _type; + + //RaC 02-2010 Add tabs + wxAuiNotebook* _notebook; + + //RaC Adds Tab to cut a prism with the polygon as the base + void addPolygonCutterTab(); - int addNewViewPanel()throw( CutModelException); + bool _isCheck; - CutModelView* getModelView(int id)throw( CutModelException); + bool _isFirstTime; - int _panelid; + wxButton *btnExecutePolygonCut; + wxStaticText* lblMessagePolygon; + wxRadioBox* _radioinsideout; - int _type; }; class ToolBarEventHandlerCutModel : public wxEvtHandler{ - public: - ToolBarEventHandlerCutModel(); - ~ToolBarEventHandlerCutModel(); +public: + ToolBarEventHandlerCutModel(); + ~ToolBarEventHandlerCutModel(); + + void onAdd(wxCommandEvent& event); + + void onUndo(wxCommandEvent& event); - void onAdd(wxCommandEvent& event); + void onRedo(wxCommandEvent& event); - void onUndo(wxCommandEvent& event); + void onExecuteAll(wxCommandEvent& event); - void onRedo(wxCommandEvent& event); +private: - void onExecuteAll(wxCommandEvent& event); + DECLARE_EVENT_TABLE() +}; - private: +class PolygonCutterEventHandlerCutModel : public wxEvtHandler{ +public: + + PolygonCutterEventHandlerCutModel(): wxEvtHandler(){}; + ~PolygonCutterEventHandlerCutModel(){}; + + void onCheckChanged(wxCommandEvent& event); + void onExecuteCutPolygon(wxCommandEvent& event); + +}; - DECLARE_EVENT_TABLE() - }; class ToolBarCutModel : public wxToolBar{ - + public: ToolBarCutModel(wxWindow * parent); ~ToolBarCutModel(void);