]> Creatis software - creaContours.git/blobdiff - lib/Interface_Icons_NDimensions/interfSegmentationPanels.h
*** empty log message ***
[creaContours.git] / lib / Interface_Icons_NDimensions / interfSegmentationPanels.h
index 605e1b1d44aee0786b3d31b5c28f9fc4da5869fa..f52a776830be2a140d43cfc8db39ec19754a2b00 100644 (file)
@@ -68,17 +68,70 @@ public:
        
 private:
 
-       wxSlider* _isovalue;
+       wxTextCtrl * _distance;
+       wxTextCtrl * _sigma;
+       wxTextCtrl * _alfa;
+       wxTextCtrl * _beta;
+       wxTextCtrl * _propagation;
+       wxTextCtrl * _iterations;
+       wxTextCtrl * _infStrength;
+};
 
-       mBarRange* _mbarrange;
+
+class interfMirrorPanel
+       : public wxPanel
+{
+public:
+       interfMirrorPanel(wxWindow * parent);           
+       ~interfMirrorPanel();
+
+private:
+
+       wxSlider* _thickness;
+
+       void onAxisShow(wxCommandEvent& event);
+
+       void onAxisHide(wxCommandEvent& event);
+
+       void onMirrorGo(wxCommandEvent& event);
+
+       void onChangeWidth(wxScrollEvent& event);
+
+       DECLARE_EVENT_TABLE()
+};
+
+
+class interfThresholdPanel
+       : public wxPanel
+{
+public:
+       interfThresholdPanel(wxWindow * parent);                
+       ~interfThresholdPanel();
        
-       wxSlider* _sampling;
+       void onThresholdStop();
+       void onThresholdInstantChange(double range[]);
 
-       wxStaticText* _staticTextSegmentation;
+private:
 
-       wxRadioBox* methodRadiobox;
+       mBarRange* _mBarThreshold;
+       wxSlider* _opacity;
+       bool _thresholdGo;
+       wxCheckBox* _interpolationCheckBox;     
+
+       void onThresholdChange(wxCommandEvent& event);
+
+       void onThresholdGo(wxCommandEvent& event);
+
+       void onThresholdRemove(wxCommandEvent& event);
+
+       void onThresholdInterpolation(wxCommandEvent& event);
+
+       void onChangeOpacity(wxScrollEvent& event);
+
+       DECLARE_EVENT_TABLE()
 };
 
+
 #endif