]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/wxVtkMPR3DViewCntrlPanel.h
Bug #1373
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / wxVtkMPR3DViewCntrlPanel.h
index 4d5c1edb5868d1f223ed4f214b3a9cf77abccd97..fbd17a5f42d2c155b5c2b22f73d6a5b5b6292451 100644 (file)
@@ -10,7 +10,7 @@ class wxVtkMPR3DView;
 class wxVtkMPR3DViewCntrlPanel: public wxPanel
 {
 public:
-       wxVtkMPR3DViewCntrlPanel(wxWindow *parent, wxVtkMPR3DView *wxvtkmpr3Dview);
+       wxVtkMPR3DViewCntrlPanel(wxWindow *parent, wxVtkMPR3DView *wxvtkmpr3Dview, bool align);
        ~wxVtkMPR3DViewCntrlPanel();
        void            OnVisibleAxisX(wxCommandEvent& event);
        void            OnVisibleAxisY(wxCommandEvent& event);
@@ -21,9 +21,30 @@ public:
        void            OnVisibleAxisXYZ(wxCommandEvent& event);
        void            OnVisiblePlane(wxCommandEvent& event);
        void            OnEditColorTable(wxCommandEvent& event);
+////EED 05Nov2012      void            On_BW_Color_Plane(wxCommandEvent& event);
+       
+       void OnVisibleFreePlaneX(wxCommandEvent& event);
+       void OnVisibleFreePlaneY(wxCommandEvent& event);
+       void OnVisibleFreePlaneZ(wxCommandEvent& event);
+       void OnVisibleFreePlaneInteraction(wxCommandEvent& event);
+       void OnSetStereo(wxCommandEvent& event);
+       void OnFreePlanesOrtho(wxCommandEvent& event);
+
        virtual void Refresh();
        void            UpdateControlPanel();
 
+       bool            GetVisibleX();
+       bool            GetVisibleY();
+       bool            GetVisibleZ();
+       bool            GetVisibleXYZ();
+       bool            GetVisiblePlane();
+////EED 05Nov2012      bool            Get_BW_Color_Plane();
+       void            SetVisibleX(bool value);
+       void            SetVisibleY(bool value);
+       void            SetVisibleZ(bool value);
+       void            SetVisibleXYZ(bool value);
+       void            SetVisiblePlane(bool value);
+
 private:
        wxVtkMPR3DView  *_wxvtkmpr3Dview;
 
@@ -40,9 +61,24 @@ private:
        wxSlider                *_positionX;
        wxSlider                *_positionY;    
        wxSlider                *_positionZ;
-
+       
+       //CPR: Added 30 nov 2009
+       wxCheckBox              *_ckBoxX;
+       wxCheckBox              *_ckBoxY;
+       wxCheckBox              *_ckBoxZ;
+       
+       //EED 03 nov 2012
+////EED 05Nov2012      wxCheckBox              *_ckBox_BW_Color_Plane;
+       
        wxCheckBox              *_ckBoxXYZ;
        wxCheckBox              *_ckBoxPlane;
+       
+       wxCheckBox      *_ckFreePlaneX;
+       wxCheckBox      *_ckFreePlaneY;
+       wxCheckBox      *_ckFreePlaneZ;
+       wxCheckBox      *_ckFreePlaneInteraction;
+       
+       wxComboBox              *_cbStereo;
 
 
 protected: