Salome HOME
e079e74bc0bcab5af1d5bb4f1490e81382968682
[modules/geom.git] / src / MeasureGUI / MeasureGUI.cxx
1 // Copyright (C) 2007-2013  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_GetNonBlocksDlg.h"           // Method GET NON BLOCKS
46 #include "MeasureGUI_CheckSelfIntersectionsDlg.h" // Method CHECK SELF INTERSCTIONS
47 #include "MeasureGUI_PointDlg.h"                  // Method POINTCOORDINATES
48 #include "MeasureGUI_ManageDimensionsDlg.h"       // Method MANAGEDIMENSIONS
49
50 #include <QApplication>
51
52 //=======================================================================
53 // function : MeasureGUI()
54 // purpose  : Constructor
55 //=======================================================================
56 MeasureGUI::MeasureGUI( GeometryGUI* parent ) : GEOMGUI( parent )
57 {
58 }
59
60 //=======================================================================
61 // function : ~MeasureGUI()
62 // purpose  : Destructor
63 //=======================================================================
64 MeasureGUI::~MeasureGUI()
65 {
66 }
67
68
69 //=======================================================================
70 // function : OnGUIEvent()
71 // purpose  : 
72 //=======================================================================
73 bool MeasureGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
74 {
75   SalomeApp_Application* app = getGeometryGUI()->getApp();
76   if ( !app ) return false;
77
78   getGeometryGUI()->EmitSignalDeactivateDialog();
79
80   QDialog* dlg = 0;
81   switch ( theCommandID ) {
82   case GEOMOp::OpProperties:
83     dlg = new MeasureGUI_PropertiesDlg( getGeometryGUI(), parent );
84     break; // LENGTH, AREA AND VOLUME
85   case GEOMOp::OpCenterMass:
86     dlg = new MeasureGUI_CenterMassDlg( getGeometryGUI(), parent );
87     break; // CENTER MASS7
88   case GEOMOp::OpInertia:
89     dlg = new MeasureGUI_InertiaDlg( getGeometryGUI(), parent );
90     break; // INERTIA
91   case GEOMOp::OpNormale : 
92     dlg = new MeasureGUI_NormaleDlg( getGeometryGUI(), parent );
93     break; // NORMALE
94   case GEOMOp::OpBoundingBox:
95     dlg = new MeasureGUI_BndBoxDlg( getGeometryGUI(), parent );
96     break; // BOUNDING BOX
97   case GEOMOp::OpMinDistance:
98     dlg = new MeasureGUI_DistanceDlg( getGeometryGUI(), parent );
99     break; // MIN DISTANCE
100   case GEOMOp::OpAngle: 
101     dlg = new MeasureGUI_AngleDlg( getGeometryGUI(), parent );
102     break; // ANGLE
103   case GEOMOp::OpTolerance: 
104     dlg = new MeasureGUI_MaxToleranceDlg( getGeometryGUI(), parent );
105     break; // MAXTOLERANCE
106   case GEOMOp::OpWhatIs:
107     dlg = new MeasureGUI_WhatisDlg( getGeometryGUI(), parent );
108     break; // WHATIS
109   case GEOMOp::OpCheckShape:
110     dlg = new MeasureGUI_CheckShapeDlg( getGeometryGUI(), parent );
111     break; // CHECKSHAPE
112   case GEOMOp::OpCheckCompound:
113     dlg = new MeasureGUI_CheckCompoundOfBlocksDlg( getGeometryGUI(), parent );
114     break; // CHECKCOMPOUND
115   case GEOMOp::OpGetNonBlocks:
116     dlg = new MeasureGUI_GetNonBlocksDlg(getGeometryGUI(), parent);
117     break; // GET NON BLOCKS
118   case GEOMOp::OpCheckSelfInters:
119     dlg = new MeasureGUI_CheckSelfIntersectionsDlg( getGeometryGUI(), parent );
120     break; // CHECK SELF INTERSCTIONS
121   case GEOMOp::OpPointCoordinates:
122     dlg = new MeasureGUI_PointDlg( getGeometryGUI(), parent );
123     break; // POINT COORDINATES
124   case GEOMOp::OpManageDimensions:
125     dlg = new MeasureGUI_ManageDimensionsDlg( getGeometryGUI(), parent );
126     break; // MANAGE DIMENSIONS
127   default: 
128     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
129     break;
130   }
131   if ( dlg ) {
132     dlg->updateGeometry();
133     dlg->resize( dlg->minimumSizeHint() );
134     dlg->show();
135   }
136   return true;
137 }
138
139
140 //=====================================================================================
141 // EXPORTED METHODS
142 //=====================================================================================
143 extern "C"
144 {
145 #ifdef WIN32
146   __declspec( dllexport )
147 #endif
148   GEOMGUI* GetLibGUI( GeometryGUI* parent )
149   {
150     return new MeasureGUI( parent );
151   }
152 }