]> SALOME platform Git repositories - modules/geom.git/blob - src/MeasureGUI/MeasureGUI.cxx
Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/geom.git] / src / MeasureGUI / MeasureGUI.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : MeasureGUI.cxx
25 // Author : Damien COQUERET, Open CASCADE S.A.S.
26
27 #include "MeasureGUI.h"
28
29 #include <GeometryGUI.h>
30 #include "GeometryGUI_Operations.h"
31 #include <SUIT_Desktop.h>
32 #include <SalomeApp_Application.h>
33
34 #include "MeasureGUI_PropertiesDlg.h"    // Method PROPERTIES
35 #include "MeasureGUI_CenterMassDlg.h"    // Method CENTER MASS
36 #include "MeasureGUI_NormaleDlg.h"       // Method NORMALE
37 #include "MeasureGUI_InertiaDlg.h"       // Method INERTIA
38 #include "MeasureGUI_BndBoxDlg.h"        // Method BNDBOX
39 #include "MeasureGUI_DistanceDlg.h"      // Method DISTANCE
40 #include "MeasureGUI_AngleDlg.h"         // Method ANGLE
41 #include "MeasureGUI_MaxToleranceDlg.h"  // Method MAXTOLERANCE
42 #include "MeasureGUI_WhatisDlg.h"        // Method WHATIS
43 #include "MeasureGUI_CheckShapeDlg.h"    // Method CHECKSHAPE
44 #include "MeasureGUI_CheckCompoundOfBlocksDlg.h" // Method CHECKCOMPOUND
45 #include "MeasureGUI_CheckSelfIntersectionsDlg.h" // Method CHECK SELF INTERSCTIONS
46 #include "MeasureGUI_PointDlg.h"         // Method POINTCOORDINATES
47
48 #include <QApplication>
49
50 //=======================================================================
51 // function : MeasureGUI()
52 // purpose  : Constructor
53 //=======================================================================
54 MeasureGUI::MeasureGUI( GeometryGUI* parent ) : GEOMGUI( parent )
55 {
56 }
57
58 //=======================================================================
59 // function : ~MeasureGUI()
60 // purpose  : Destructor
61 //=======================================================================
62 MeasureGUI::~MeasureGUI()
63 {
64 }
65
66
67 //=======================================================================
68 // function : OnGUIEvent()
69 // purpose  : 
70 //=======================================================================
71 bool MeasureGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
72 {
73   SalomeApp_Application* app = getGeometryGUI()->getApp();
74   if ( !app ) return false;
75
76   getGeometryGUI()->EmitSignalDeactivateDialog();
77
78   QDialog* dlg = 0;
79   switch ( theCommandID ) {
80   case GEOMOp::OpProperties:
81     dlg = new MeasureGUI_PropertiesDlg( getGeometryGUI(), parent );
82     break; // LENGTH, AREA AND VOLUME
83   case GEOMOp::OpCenterMass:
84     dlg = new MeasureGUI_CenterMassDlg( getGeometryGUI(), parent );
85     break; // CENTER MASS7
86   case GEOMOp::OpInertia:
87     dlg = new MeasureGUI_InertiaDlg( getGeometryGUI(), parent );
88     break; // INERTIA
89   case GEOMOp::OpNormale : 
90     dlg = new MeasureGUI_NormaleDlg( getGeometryGUI(), parent );
91     break; // NORMALE
92   case GEOMOp::OpBoundingBox:
93     dlg = new MeasureGUI_BndBoxDlg( getGeometryGUI(), parent );
94     break; // BOUNDING BOX
95   case GEOMOp::OpMinDistance:
96     dlg = new MeasureGUI_DistanceDlg( getGeometryGUI(), parent );
97     break; // MIN DISTANCE
98   case GEOMOp::OpAngle: 
99     dlg = new MeasureGUI_AngleDlg( getGeometryGUI(), parent );
100     break; // ANGLE
101   case GEOMOp::OpTolerance: 
102     dlg = new MeasureGUI_MaxToleranceDlg( getGeometryGUI(), parent );
103     break; // MAXTOLERANCE
104   case GEOMOp::OpWhatIs:
105     dlg = new MeasureGUI_WhatisDlg( getGeometryGUI(), parent );
106     break; // WHATIS
107   case GEOMOp::OpCheckShape:
108     dlg = new MeasureGUI_CheckShapeDlg( getGeometryGUI(), parent );
109     break; // CHECKSHAPE
110   case GEOMOp::OpCheckCompound:
111     dlg = new MeasureGUI_CheckCompoundOfBlocksDlg( getGeometryGUI(), parent );
112     break; // CHECKCOMPOUND
113   case GEOMOp::OpCheckSelfInters:
114     dlg = new MeasureGUI_CheckSelfIntersectionsDlg( getGeometryGUI(), parent );
115     break; // CHECK SELF INTERSCTIONS
116   case GEOMOp::OpPointCoordinates:
117     dlg = new MeasureGUI_PointDlg( getGeometryGUI(), parent );
118     break; // POINT COORDINATES
119   default: 
120     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
121     break;
122   }
123   if ( dlg ) {
124     dlg->updateGeometry();
125     dlg->resize( dlg->minimumSizeHint() );
126     dlg->show();
127   }
128   return true;
129 }
130
131
132 //=====================================================================================
133 // EXPORTED METHODS
134 //=====================================================================================
135 extern "C"
136 {
137 #ifdef WIN32
138   __declspec( dllexport )
139 #endif
140   GEOMGUI* GetLibGUI( GeometryGUI* parent )
141   {
142     return new MeasureGUI( parent );
143   }
144 }