]> Creatis software - creaContours.git/blobdiff - lib/Interface_Icons_NDimensions/interfSegmentationPanels.cxx
*** empty log message ***
[creaContours.git] / lib / Interface_Icons_NDimensions / interfSegmentationPanels.cxx
index 9be4d4b98eb3c41d2eb3e1d4a32ae9f6bc0f725d..edb257c80ca7721ea6f89964ee2d298c387d9482 100644 (file)
@@ -201,12 +201,19 @@ void interfSegmentationPanelITK::onSegmentationAllSlice( wxCommandEvent& event )
 interfMirrorPanel::interfMirrorPanel(wxWindow* parent)
 : wxPanel(parent, -1, wxDefaultPosition, wxDefaultSize, wxBORDER_SUNKEN)
 {
-       wxButton *mirrorGoBtn = new wxButton(this,-1,_T("Go"), wxDefaultPosition, wxSize(200,35) );
-       _thickness = new wxSlider(this, -1, 4, 1, 10, wxDefaultPosition, wxSize(200,35), wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator);
+       wxButton *axisShowBtn = new wxButton(this,wxID_ANY,_T("Show Axis"), wxDefaultPosition, wxSize(200,35) );
+       wxButton *axisHideBtn = new wxButton(this,wxID_ANY,_T("Hide Axis"), wxDefaultPosition, wxSize(200,35) );
+       wxButton *mirrorGoBtn = new wxButton(this,wxID_ANY,_T("Mirror Contour"), wxDefaultPosition, wxSize(200,35) );
+       _thickness = new wxSlider(this, -1, 4, 1, 10, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator);
        
-       Connect( mirrorGoBtn->GetId(),          wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &interfMirrorPanel::onMirrorGo ); 
+       Connect( axisShowBtn->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &interfMirrorPanel::onAxisShow );
+       Connect( axisHideBtn->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &interfMirrorPanel::onAxisHide ); 
+       Connect( mirrorGoBtn->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &interfMirrorPanel::onMirrorGo ); 
 
        wxFlexGridSizer * sizer         = new wxFlexGridSizer(1);
+       sizer -> Add( axisShowBtn, 1, wxGROW );
+       sizer -> Add( axisHideBtn, 1, wxGROW );
+       sizer -> Add( new wxStaticText(this,-1,_T(" "))  , 1, wxGROW );
        sizer -> Add( new wxStaticText(this,-1,_T("Thickness"))  , 1, wxGROW );
        sizer -> Add( _thickness, 1, wxGROW );
        sizer -> Add( mirrorGoBtn, 1, wxGROW );
@@ -219,6 +226,16 @@ interfMirrorPanel::interfMirrorPanel(wxWindow* parent)
 interfMirrorPanel::~interfMirrorPanel(){
 }
 
+void interfMirrorPanel::onAxisShow(wxCommandEvent& event)
+{
+       interfMainPanel::getInstance()->onMirrorAxisShow();
+}
+
+void interfMirrorPanel::onAxisHide(wxCommandEvent& event)
+{
+       interfMainPanel::getInstance()->onMirrorAxisHide();
+}
+
 void interfMirrorPanel::onMirrorGo(wxCommandEvent& event)
 {
        interfMainPanel::getInstance()->onMirror();
@@ -238,13 +255,19 @@ void interfMirrorPanel::onChangeWidth(wxScrollEvent& event)
 interfThresholdPanel::interfThresholdPanel(wxWindow* parent)
 : wxPanel(parent, -1, wxDefaultPosition, wxDefaultSize, wxBORDER_SUNKEN)
 {
-       wxButton *thresholdGoBtn = new wxButton(this,-1,_T("Threshold Go"), wxDefaultPosition, wxSize(200,30) );
-
+       wxButton *thresholdGoBtn = new wxButton(this,wxID_ANY,_T("Add Fake Color"), wxDefaultPosition, wxSize(200,30) );
+       wxButton *thresholdRemoveBtn = new wxButton(this,wxID_ANY,_T("Remove Fake Color"), wxDefaultPosition, wxSize(200,30) );
+       _interpolationCheckBox = new wxCheckBox(this, -1, _T("Image interpolation") );
+       _interpolationCheckBox->SetValue(true); 
+       _opacity = new wxSlider(this, wxID_ANY, 6, 1, 10, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL|wxSL_LABELS, wxDefaultValidator);
        _thresholdGo = false;
 
        double range[2];
        interfMainPanel::getInstance()->getImageRange(range);
        
+       int min = floor (range[0]);
+       int max = ceil (range[1]);
+
        _mBarThreshold  =  new mBarRange(this,70,65);
        _mBarThreshold->SetMin(0);
        _mBarThreshold->SetStart(0);
@@ -252,21 +275,27 @@ interfThresholdPanel::interfThresholdPanel(wxWindow* parent)
        _mBarThreshold-> setActiveStateTo(true);
        _mBarThreshold-> setVisibleLabels( true );
        _mBarThreshold-> setDeviceEndMargin(10);
-       _mBarThreshold-> setRepresentedValues( range[0] , range[1] );
+       _mBarThreshold-> setRepresentedValues( min , max );
        _mBarThreshold-> setDeviceBlitStart(10,10); 
        _mBarThreshold-> setIfWithActualDrawed( false );
-       _mBarThreshold-> SetStart( range[0] );
-       _mBarThreshold-> SetEnd( range[1] );  
+       _mBarThreshold-> SetStart( min );
+       _mBarThreshold-> SetEnd( max );  
        
        Connect( thresholdGoBtn->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &interfThresholdPanel::onThresholdGo ); 
+       Connect( thresholdRemoveBtn->GetId(), wxEVT_COMMAND_BUTTON_CLICKED , (wxObjectEventFunction) &interfThresholdPanel::onThresholdRemove );
+       Connect( _interpolationCheckBox->GetId(), wxEVT_COMMAND_CHECKBOX_CLICKED, (wxObjectEventFunction) &interfThresholdPanel::onThresholdInterpolation );
 
        wxFlexGridSizer * sizer         = new wxFlexGridSizer(1);
+       sizer -> Add( new wxStaticText(this,-1,_T("Image Threshold"))  , 1, wxGROW );
        sizer -> Add( _mBarThreshold, 1, wxGROW );
-       sizer -> Add( thresholdGoBtn, 1, wxGROW );
        sizer -> Add( new wxStaticText(this,-1,_T(" "))  , 1, wxGROW );
+       sizer -> Add( new wxStaticText(this,-1,_T("Opacity Level"))  , 1, wxGROW );
+       sizer -> Add( _opacity, 1, wxGROW );
        sizer -> Add( new wxStaticText(this,-1,_T(" "))  , 1, wxGROW );
-       //sizer -> Add( new wxStaticText(this,-1,_T("Select the image's range to superpose a Fake Color"))  , 1, wxGROW );
-       
+       sizer -> Add( thresholdGoBtn, 1, wxGROW );
+       sizer -> Add( thresholdRemoveBtn, 1, wxGROW );
+       sizer -> Add( new wxStaticText(this,-1,_T(" "))  , 1, wxGROW );
+       sizer -> Add( _interpolationCheckBox, 1, wxGROW );
 
        this->SetSizer( sizer );
        this->SetAutoLayout( true );
@@ -285,9 +314,9 @@ void interfThresholdPanel::onThresholdChange(wxCommandEvent& event)
                int minVal = _mBarThreshold->GetStart();
                int maxVal = _mBarThreshold->GetEnd();
 
-               interfMainPanel::getInstance()->onThreshold(minVal, maxVal);
+               interfMainPanel::getInstance()->onThresholdChange(minVal, maxVal);
 
-               std::cout<< "Valor Min: " << minVal << " & Valor Max: " << maxVal  << std::endl;
+               //std::cout<< "Valor Min: " << minVal << " & Valor Max: " << maxVal  << std::endl;
        }
 }
 
@@ -303,11 +332,35 @@ void interfThresholdPanel::onThresholdGo(wxCommandEvent& event)
        }
 }
 
+void interfThresholdPanel::onThresholdRemove(wxCommandEvent& event)
+{
+       interfMainPanel::getInstance()->onThresholdRemove( );
+       _thresholdGo=false;
+}
+
 void interfThresholdPanel::onThresholdStop()
 {
+       interfMainPanel::getInstance()->onThresholdRemove( );
        _thresholdGo=false;
 }
 
+void interfThresholdPanel::onThresholdInstantChange(int range[])
+{
+       range[0] = _mBarThreshold->GetStart();
+       range[1] = _mBarThreshold->GetEnd();
+}
+
+void interfThresholdPanel::onThresholdInterpolation(wxCommandEvent& event)
+{
+       interfMainPanel::getInstance()->onThresholdInterpolation(_interpolationCheckBox->GetValue());
+}
+
+void interfThresholdPanel::onChangeOpacity(wxScrollEvent& event)
+{
+       int opacity = _opacity->GetValue();
+       interfMainPanel::getInstance()->onThresholdChangeOpacity(opacity);
+}
+
 
 BEGIN_EVENT_TABLE(interfMirrorPanel, wxPanel)
        EVT_SCROLL(interfMirrorPanel :: onChangeWidth)
@@ -317,6 +370,7 @@ BEGIN_EVENT_TABLE(interfThresholdPanel, wxPanel)
        EVT_COMMAND(wxID_ANY, wxEVT_TSBAR_START, interfThresholdPanel :: onThresholdChange)
        EVT_COMMAND(wxID_ANY, wxEVT_TSBAR_END, interfThresholdPanel :: onThresholdChange)
        EVT_COMMAND(wxID_ANY, wxEVT_TSBAR_MOVED, interfThresholdPanel :: onThresholdChange)     
+       EVT_SCROLL(interfThresholdPanel :: onChangeOpacity)
 END_EVENT_TABLE()