Salome HOME
Mantis issues 0021432 and 0021404: MakeFace[Wires] should generate exception on attem...
[modules/geom.git] / src / MeasureGUI / MeasureGUI.cxx
index d2a67dac4dd7c00332ca1c51d11ac393f2ec8753..7b21bcb05a40cd13524245b59fa753eddfb755ce 100644 (file)
@@ -1,58 +1,59 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+// Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  File   : MeasureGUI.cxx
-//  Author : Damien COQUERET
-//  Module : GEOM
-//  $Header: 
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+
+// GEOM GEOMGUI : GUI for Geometry component
+// File   : MeasureGUI.cxx
+// Author : Damien COQUERET, Open CASCADE S.A.S.
 
-using namespace std;
 #include "MeasureGUI.h"
 
-#include "SALOMEGUI_QtCatchCorbaException.hxx"
+#include <GeometryGUI.h>
+#include "GeometryGUI_Operations.h"
+#include <SUIT_Desktop.h>
+#include <SalomeApp_Application.h>
 
 #include "MeasureGUI_PropertiesDlg.h"    // Method PROPERTIES
 #include "MeasureGUI_CenterMassDlg.h"    // Method CENTER MASS
+#include "MeasureGUI_NormaleDlg.h"       // Method NORMALE
 #include "MeasureGUI_InertiaDlg.h"       // Method INERTIA
 #include "MeasureGUI_BndBoxDlg.h"        // Method BNDBOX
 #include "MeasureGUI_DistanceDlg.h"      // Method DISTANCE
+#include "MeasureGUI_AngleDlg.h"         // Method ANGLE
 #include "MeasureGUI_MaxToleranceDlg.h"  // Method MAXTOLERANCE
 #include "MeasureGUI_WhatisDlg.h"        // Method WHATIS
 #include "MeasureGUI_CheckShapeDlg.h"    // Method CHECKSHAPE
+#include "MeasureGUI_CheckCompoundOfBlocksDlg.h" // Method CHECKCOMPOUND
+#include "MeasureGUI_CheckSelfIntersectionsDlg.h" // Method CHECK SELF INTERSCTIONS
+#include "MeasureGUI_PointDlg.h"         // Method POINTCOORDINATES
+
+#include <QApplication>
 
 //=======================================================================
 // function : MeasureGUI()
 // purpose  : Constructor
 //=======================================================================
-MeasureGUI::MeasureGUI() :
-  QObject()
+MeasureGUI::MeasureGUI( GeometryGUI* parent ) : GEOMGUI( parent )
 {
-  myGeomBase = new GEOMBase();
-  myGeomGUI = GEOMContext::GetGeomGUI();
-  myGeom = myGeomGUI->myComponentGeom;
 }
 
-
 //=======================================================================
 // function : ~MeasureGUI()
 // purpose  : Destructor
@@ -66,84 +67,64 @@ MeasureGUI::~MeasureGUI()
 // function : OnGUIEvent()
 // purpose  : 
 //=======================================================================
-bool MeasureGUI::OnGUIEvent(int theCommandID, QAD_Desktop* parent)
+bool MeasureGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
 {
-  MeasureGUI* myMeasureGUI = new MeasureGUI();
-  myMeasureGUI->myGeomGUI->EmitSignalDeactivateDialog();
-  SALOME_Selection* Sel = SALOME_Selection::Selection(QAD_Application::getDesktop()->getActiveStudy()->getSelection());
-
-  switch (theCommandID)
-    {
-    case 701: // PROPERTIES (Length, surface, volume)
-      {
-       MeasureGUI_PropertiesDlg *aDlg = new MeasureGUI_PropertiesDlg(parent, "", Sel);
-       break;
-      }
-    case 702: // CDG : Center of mass
-      {
-       MeasureGUI_CenterMassDlg *aDlg = new MeasureGUI_CenterMassDlg(parent, "", myMeasureGUI, Sel);
-       break;
-      }
-    case 703: // INERTIA
-      {
-       MeasureGUI_InertiaDlg *aDlg = new MeasureGUI_InertiaDlg(parent, "", Sel);
-       break;
-      }
-    case 7041: // BOUNDING BOX
-      {
-       MeasureGUI_BndBoxDlg *aDlg = new MeasureGUI_BndBoxDlg(parent, "", Sel);
-       break;
-      }
-    case 7042: // MIN DISTANCE
-      {
-       MeasureGUI_DistanceDlg *aDlg = new MeasureGUI_DistanceDlg(parent, "", Sel);
-       break;
-      }
-    case 705: // MAXTOLERANCE
-      {
-       MeasureGUI_MaxToleranceDlg *aDlg = new MeasureGUI_MaxToleranceDlg(parent, "", Sel);
-       break;
-      }
-    case 706: // WHATIS
-      {
-       MeasureGUI_WhatisDlg *aDlg = new MeasureGUI_WhatisDlg(parent, "", Sel);
-       break;
-      }
-    case 707: // CHECKSHAPE
-     {
-       MeasureGUI_CheckShapeDlg *aDlg = new MeasureGUI_CheckShapeDlg(parent, "", Sel);
-       break;
-     }
-    default:
-      {
-       parent->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
-       break;
-      }
-    }
-  return true;
-}
+  SalomeApp_Application* app = getGeometryGUI()->getApp();
+  if ( !app ) return false;
 
+  getGeometryGUI()->EmitSignalDeactivateDialog();
 
-//=====================================================================================
-// function : MakeCDGAndDisplay()
-// purpose  :
-//=====================================================================================
-void MeasureGUI::MakeCDGAndDisplay(GEOM::GEOM_Shape_ptr Shape)
-{
-  try {
-    GEOM::GEOM_Shape_var result = myGeom->MakeCDG(Shape);
-    if(result->_is_nil()) {
-      QAD_Application::getDesktop()->putInfo(tr("GEOM_PRP_ABORT"));
-      return;
-    }
-    result->NameType(tr("GEOM_POINT"));
-    if(myGeomBase->Display(result))
-      QAD_Application::getDesktop()->putInfo(tr("GEOM_PRP_DONE"));
-  }  
-  catch(const SALOME::SALOME_Exception& S_ex) {
-    QtCatchCorbaException(S_ex);
+  QDialog* dlg = 0;
+  switch ( theCommandID ) {
+  case GEOMOp::OpProperties:
+    dlg = new MeasureGUI_PropertiesDlg( getGeometryGUI(), parent );
+    break; // LENGTH, AREA AND VOLUME
+  case GEOMOp::OpCenterMass:
+    dlg = new MeasureGUI_CenterMassDlg( getGeometryGUI(), parent );
+    break; // CENTER MASS7
+  case GEOMOp::OpInertia:
+    dlg = new MeasureGUI_InertiaDlg( getGeometryGUI(), parent );
+    break; // INERTIA
+  case GEOMOp::OpNormale : 
+    dlg = new MeasureGUI_NormaleDlg( getGeometryGUI(), parent );
+    break; // NORMALE
+  case GEOMOp::OpBoundingBox:
+    dlg = new MeasureGUI_BndBoxDlg( getGeometryGUI(), parent );
+    break; // BOUNDING BOX
+  case GEOMOp::OpMinDistance:
+    dlg = new MeasureGUI_DistanceDlg( getGeometryGUI(), parent );
+    break; // MIN DISTANCE
+  case GEOMOp::OpAngle: 
+    dlg = new MeasureGUI_AngleDlg( getGeometryGUI(), parent );
+    break; // ANGLE
+  case GEOMOp::OpTolerance: 
+    dlg = new MeasureGUI_MaxToleranceDlg( getGeometryGUI(), parent );
+    break; // MAXTOLERANCE
+  case GEOMOp::OpWhatIs:
+    dlg = new MeasureGUI_WhatisDlg( getGeometryGUI(), parent );
+    break; // WHATIS
+  case GEOMOp::OpCheckShape:
+    dlg = new MeasureGUI_CheckShapeDlg( getGeometryGUI(), parent );
+    break; // CHECKSHAPE
+  case GEOMOp::OpCheckCompound:
+    dlg = new MeasureGUI_CheckCompoundOfBlocksDlg( getGeometryGUI(), parent );
+    break; // CHECKCOMPOUND
+  case GEOMOp::OpCheckSelfInters:
+    dlg = new MeasureGUI_CheckSelfIntersectionsDlg( getGeometryGUI(), parent );
+    break; // CHECK SELF INTERSCTIONS
+  case GEOMOp::OpPointCoordinates:
+    dlg = new MeasureGUI_PointDlg( getGeometryGUI(), parent );
+    break; // POINT COORDINATES
+  default: 
+    app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
+    break;
   }
-  return;
+  if ( dlg ) {
+    dlg->updateGeometry();
+    dlg->resize( dlg->minimumSizeHint() );
+    dlg->show();
+  }
+  return true;
 }
 
 
@@ -152,6 +133,11 @@ void MeasureGUI::MakeCDGAndDisplay(GEOM::GEOM_Shape_ptr Shape)
 //=====================================================================================
 extern "C"
 {
-  bool OnGUIEvent(int theCommandID, QAD_Desktop* parent)
-  {return MeasureGUI::OnGUIEvent(theCommandID, parent);}
+#ifdef WIN32
+  __declspec( dllexport )
+#endif
+  GEOMGUI* GetLibGUI( GeometryGUI* parent )
+  {
+    return new MeasureGUI( parent );
+  }
 }