]> Creatis software - creaContours.git/blobdiff - lib/Interface_Icons_NDimensions/interfMainPanel.cxx
Changes with manualBaseModel. It improves the functionality with the new
[creaContours.git] / lib / Interface_Icons_NDimensions / interfMainPanel.cxx
index 6a308294bee53d3d935666895bc01374bb701323..b5da6290946a2b1fbfb180fe7a3fcf12ca8f0468 100644 (file)
@@ -35,7 +35,11 @@ interfMainPanel::interfMainPanel(wxWindow * parent, int sizex, int sizey, wxEvtH
        mirrorPanel                     = NULL;
        thresholdPanel          = NULL;
        currentWindow           = NULL;
-       
+
+//CMRU 17-08-09 ------------------------------------------------------------------
+       infoPanelCalibration = NULL;
+       panelAux = NULL;
+//--------------------------------------------------------------------------------
        splitterwindow = new wxSplitterWindow(this,-1, wxDefaultPosition, wxSize(sizex, sizey), wxSP_3DSASH, wxString(_T("")));
 
        splitterwindow->SetMinimumPaneSize( 10 );
@@ -106,11 +110,11 @@ interfMainPanel::interfMainPanel(wxWindow * parent, int sizex, int sizey, wxEvtH
        wxFlexGridSizer* infosizer = new wxFlexGridSizer(1,1,2,2);      
        infoPanel->SetSizer(infosizer, true);
        infoPanel->SetAutoLayout( true );       
-               
+
        splitterwindow->Initialize(toolpanel);
        splitterwindow->SetSashGravity(1);
        splitterwindow->SplitHorizontally(toolpanel, infoPanel);        
-               
+
        Connect(b->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, (wxObjectEventFunction)&interfMainPanel::onActionButtonPressed1);
        Connect(b1->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, (wxObjectEventFunction)&interfMainPanel::onActionButtonPressed1);
        Connect(b2->GetId(), wxEVT_COMMAND_BUTTON_CLICKED, (wxObjectEventFunction)&interfMainPanel::onActionButtonPressed1);
@@ -349,6 +353,14 @@ void interfMainPanel::onCreateContourLine( ){
        wxContourMainFrame::getInstance()->showAxis(false);
     wxContourMainFrame::getInstance()->onCreateContourLine();
 }
+
+// RaC 09-09 ---------------------
+void interfMainPanel::onCreateContourPoints( ){
+       wxContourMainFrame::getInstance()->showAxis(false);
+    wxContourMainFrame::getInstance()->onCreateContourPoints();
+}
+// RaC 09-09 ---------------------
+
 void interfMainPanel::onCreateContoursBullEye(wxPanel* panBull){
        wxContourMainFrame::getInstance()->showAxis(false);
        wxContourMainFrame::getInstance()->onCreateContourBullEye(panBull);
@@ -455,7 +467,6 @@ void interfMainPanel::onSegmentationPressedITK(){
                //wxPanel* panel = contourevent->getSegmentationPanelITK(segmentPanelITK);
                wxPanel* panel = new interfSegmentationPanelITK(segmentPanelITK);
        
-
                wxStaticText* stattext = new wxStaticText(segmentPanelITK, -1, wxString(_T("   Automatic ITK Segmentation   ")), wxDefaultPosition,
                        wxDefaultSize, wxALIGN_CENTRE|wxBORDER_SIMPLE|wxFULL_REPAINT_ON_RESIZE, wxString(_T("")));
 
@@ -578,16 +589,23 @@ void interfMainPanel::onInformationPressed(){
                        //contourevent->FillGridWithContoursInformation();
                        infoWin->Show(true);
                }
+       }
+               
+//CMRU 29-08-09----------------------------------------------------------------------------------------------- 
+       if(panelAux == NULL)
+       {
+               panelAux = new wxPanel(interfMainPanel::getInstance()->getInfoPanel(), -1, wxDefaultPosition, wxDefaultSize, wxNO_BORDER, wxString(_T("")));
        }       
-       
+//------------------------------------------------------------------------------------------------------------
+
        // mask view control panel
        if(infoPanelMask == NULL){
-               infoPanelMask = new wxPanel(interfMainPanel::getInstance()->getInfoPanel(), -1, wxDefaultPosition, wxDefaultSize, wxNO_BORDER, wxString(_T("")));
+               infoPanelMask = new wxPanel(panelAux, -1, wxDefaultPosition, wxDefaultSize, wxNO_BORDER, wxString(_T("")));
                wxFlexGridSizer* flexsizer = new wxFlexGridSizer(1);    
                infoPanelMask->SetSizer(flexsizer, true);
                infoPanelMask->SetAutoLayout( true );   
                //configPanel->SetEventHandler(this->contourevent);
-               wxPanel *panel = wxContourMainFrame::getInstance()->getThresholdImageViewPanel( infoPanelMask );                                
+               wxPanel *panel = wxContourMainFrame::getInstance()->getMaskImageViewPanel( infoPanelMask );                             
                wxStaticText* stattext = new wxStaticText(infoPanelMask, -1, wxString(_T("   Mask segmentation    ")), wxDefaultPosition,
                                                                                                  wxDefaultSize, wxALIGN_CENTRE|wxBORDER_SIMPLE|wxFULL_REPAINT_ON_RESIZE, wxString(_T("")));
                
@@ -597,7 +615,36 @@ void interfMainPanel::onInformationPressed(){
                infoPanelMask->Layout();
                
        }
-       showPanel(infoPanelMask);
+       
+//CMRU 29-08-09-----------------------------------------------------------------------------------------------
+       //Calibration panel
+       if(infoPanelCalibration == NULL)
+       {
+               infoPanelCalibration = new wxPanel(panelAux, -1, wxDefaultPosition, wxDefaultSize, wxNO_BORDER , wxString(_T("")));
+               wxFlexGridSizer* flexsizer = new wxFlexGridSizer(1);    
+               infoPanelCalibration->SetSizer(flexsizer, true);
+               infoPanelCalibration->SetAutoLayout( true );    
+
+               wxPanel *panel = new interfCalibrationPanel(infoPanelCalibration);
+               wxStaticText* stattext = new wxStaticText(infoPanelCalibration, -1, wxString(_T("              Calibration               ")), wxDefaultPosition,
+                                                                                                 wxDefaultSize, wxALIGN_CENTRE|wxBORDER_SIMPLE|wxFULL_REPAINT_ON_RESIZE, wxString(_T("")));
+               
+               flexsizer->Add(stattext,wxALIGN_CENTER | wxALIGN_CENTRE);
+               
+               flexsizer->Add(panel, wxEXPAND);
+               infoPanelCalibration->Layout();
+       }
+
+       wxFlexGridSizer* sizer = new wxFlexGridSizer(1);
+       panelAux->SetSizer(sizer, true);
+       panelAux->SetAutoLayout( true );        
+       sizer->Add(infoPanelMask);
+       sizer->Add(infoPanelCalibration);
+       
+       showPanel(panelAux);
+
+//------------------------------------------------------------------
+
        wxContourMainFrame::getInstance()->changeInstant();
 }
 
@@ -721,64 +768,129 @@ void interfMainPanel::onMirrorChangeWidth(int width)
 }
 
 
-void interfMainPanel::onThreshold()
-{
-       wxContourMainFrame::getInstance()->onThreshold();
-}
 
-void interfMainPanel::onThresholdChange()
+//EED01
+void interfMainPanel::onThresholdPressed()
 {
-       wxContourMainFrame::getInstance()->onThresholdChange();
+       
+       // Threshold view control panel
+       if(thresholdPanel == NULL){
+               thresholdPanel = new wxPanel(interfMainPanel::getInstance()->getInfoPanel(), -1, wxDefaultPosition, wxDefaultSize, wxNO_BORDER, wxString(_T("")));
+               wxFlexGridSizer* flexsizer = new wxFlexGridSizer(1);    
+               thresholdPanel->SetSizer(flexsizer, true);
+               thresholdPanel->SetAutoLayout( true );  
+               //configPanel->SetEventHandler(this->contourevent);
+               wxPanel *panel = wxContourMainFrame::getInstance()->getThresholdImageViewPanel( thresholdPanel );                               
+               wxStaticText* stattext = new wxStaticText(thresholdPanel, -1, wxString(_T("   Threshold segmentation    ")), wxDefaultPosition,
+                                                                                                 wxDefaultSize, wxALIGN_CENTRE|wxBORDER_SIMPLE|wxFULL_REPAINT_ON_RESIZE, wxString(_T("")));
+               
+               flexsizer->Add(stattext,wxALIGN_CENTER | wxALIGN_CENTRE);
+               
+               flexsizer->Add(panel, wxEXPAND);
+               thresholdPanel->Layout();
+               
+       }
+       showPanel(thresholdPanel);
+       wxContourMainFrame::getInstance()->changeInstant();
 }
 
-void interfMainPanel::onThresholdInstantChange(double range[])
-{
-       panelThreshold->onThresholdInstantChange(range);
-}
 
-void interfMainPanel::onThresholdInterpolation(bool interpolate)
+void interfMainPanel::ShowResultImages(int typeContourGroup, int selection, int minZ, int maxZ)
 {
-       wxContourMainFrame::getInstance()->onThresholdInterpolation(interpolate);
+       wxContourMainFrame::getInstance()->ShowResultImages(typeContourGroup, selection, minZ, maxZ);
 }
 
-void interfMainPanel::onThresholdChangeOpacity (int opacity)
-{
-       wxContourMainFrame::getInstance()->onThresholdChangeOpacity(opacity);
-}
 
-void interfMainPanel::onThresholdRemove()
+void interfMainPanel::SetContourGroup(int contourGroup)
 {
-       wxContourMainFrame::getInstance()->onThresholdRemove();
+       wxContourMainFrame::getInstance()->SetContourGroup( contourGroup);
 }
 
-void interfMainPanel::onThresholdPressed()
+//CMRU 17-08-09 ---------------------------------------------
+void interfMainPanel::onPrintLabel () 
 {
-    if(thresholdPanel==NULL)
+       wxString label;
+       manualBaseModel* manualModel = wxContourMainFrame::getInstance()->getContour();
+
+       if(manualModel==NULL)
        {
+        wxMessageDialog *dial = new wxMessageDialog(NULL, wxT("Please select a Contour"), wxT("Warning"), wxOK | wxICON_EXCLAMATION);
+               dial->ShowModal();
+               return;
+       }
 
-               thresholdPanel = new wxPanel(interfMainPanel::getInstance()->getInfoPanel(), -1, wxDefaultPosition, wxDefaultSize, wxBORDER_STATIC, wxString(_T("")));
-               wxFlexGridSizer* flexsizer = new wxFlexGridSizer(1);    
-               thresholdPanel->SetSizer(flexsizer, true);
-               thresholdPanel->SetAutoLayout( true );  
-               panelThreshold = new interfThresholdPanel(thresholdPanel);
+       wxTextEntryDialog* dialog = new wxTextEntryDialog(this,"Enter a tag name: ") ;
        
-               wxStaticText* stattext = new wxStaticText(thresholdPanel, -1, wxString(_T("   Threshold Tool   ")), wxDefaultPosition,
-                       wxDefaultSize, wxALIGN_CENTRE|wxBORDER_SIMPLE|wxFULL_REPAINT_ON_RESIZE, wxString(_T("")));
+       if (dialog->ShowModal() == wxID_OK)
+       {
+               label = dialog->GetValue(); 
 
-               flexsizer->Add(stattext,wxALIGN_CENTER | wxALIGN_CENTRE);
-               flexsizer->Add(panelThreshold, wxEXPAND);
-               thresholdPanel->Layout();
+               if(label.Len()!=0)
+               {
+                       wxContourMainFrame::getInstance()->onPrintLabel(label,manualModel);
+                       wxMessageDialog *dial = new wxMessageDialog(NULL, wxT("The tag name was updated"), wxT("Information"), wxOK | wxICON_INFORMATION);
+                       dial->ShowModal();
+               }
+               else
+               {
+                       wxMessageDialog *dial = new wxMessageDialog(NULL, wxT("Please enter a valid tag"), wxT("Warning"), wxOK | wxICON_EXCLAMATION);
+                       dial->ShowModal();
+               }
+       }
+}
+void interfMainPanel::onCalibration(wxString size, int unit)
+{
+       int type = 0;
+       double contourSize = 0.0; 
+       double realSizeDouble = 0.0;
 
-       }       
-       showPanel(thresholdPanel);
+       type = wxContourMainFrame::getInstance()->getType(); 
+       contourSize = wxContourMainFrame::getInstance()->getContourSizeInPixels();
+
+       std::cout<<"Cata->TamaƱo del contorno en pixeles:"<<contourSize<<endl;
+       
+       if ( type == 6 ) 
+       {
+               if (size.ToDouble(&realSizeDouble))
+               {
+                       if(unit==1)
+                       {
+                               realSizeDouble = realSizeDouble * 10;
+                       }
+                       if(unit==2)
+                       {
+                               realSizeDouble = realSizeDouble * 25.4;
+                       }
+                       std::cout<< "Valor del usuario" << realSizeDouble<< endl ; 
+                       onePixelSize (realSizeDouble,contourSize);
+                }
+                else
+                {
+                       wxMessageDialog *dial = new wxMessageDialog(NULL, wxT("Please enter a numeric value"), wxT("Warning"), wxOK | wxICON_EXCLAMATION);
+                       dial->ShowModal();
+                }              
+       }
+       else 
+       {
+       
+               wxMessageDialog *dial = new wxMessageDialog(NULL, wxT("Please select a line contour"), wxT("Warning"), wxOK | wxICON_EXCLAMATION);
+               dial->ShowModal();
+       }
+       
+       wxMessageDialog *dial = new wxMessageDialog(NULL, wxT("The calibration was made"), wxT("Information"), wxOK | wxICON_INFORMATION);
+       dial->ShowModal();
+       std::cout<< "Cata-> Se ha realizado la calibracion" << endl ;
 }
 
-void interfMainPanel::ShowResultImages(int typeContourGroup, int selection, int minZ, int maxZ)
+double interfMainPanel::onePixelSize (double realSize,double sizePixel) 
 {
-       wxContourMainFrame::getInstance()->ShowResultImages(typeContourGroup, selection, minZ, maxZ);
+       _pixelValue = realSize/sizePixel;
+       std::cout<< "Valor del un pixel = " << _pixelValue<< endl ;
+       wxContourMainFrame::getInstance()->onePixelSize (_pixelValue);
+       return _pixelValue ;
 }
-
-void interfMainPanel::SetContourGroup(int contourGroup)
+double interfMainPanel::GetPixelValue()
 {
-       wxContourMainFrame::getInstance()->SetContourGroup( contourGroup);
+       return _pixelValue;
 }
+//------------------------------------------------------------------------------------------------------------
\ No newline at end of file