]> SALOME platform Git repositories - modules/geom.git/blob - src/MeasureGUI/MeasureGUI.cxx
Salome HOME
Fix usage of SUIT_OverrideCursor
[modules/geom.git] / src / MeasureGUI / MeasureGUI.cxx
1 // Copyright (C) 2007-2015  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, or (at your option) any later version.
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
32 #include <GEOMGUI_DimensionProperty.h>
33
34 #include <LightApp_SelectionMgr.h>
35 #include <SUIT_OverrideCursor.h>
36 #include <SUIT_Desktop.h>
37 #include <SalomeApp_Application.h>
38 #include <SalomeApp_Study.h>
39
40 #include "MeasureGUI_PropertiesDlg.h"             // Method PROPERTIES
41 #include "MeasureGUI_CenterMassDlg.h"             // Method CENTER MASS
42 #include "MeasureGUI_NormaleDlg.h"                // Method NORMALE
43 #include "MeasureGUI_InertiaDlg.h"                // Method INERTIA
44 #include "MeasureGUI_BndBoxDlg.h"                 // Method BNDBOX
45 #include "MeasureGUI_DistanceDlg.h"               // Method DISTANCE
46 #include "MeasureGUI_AngleDlg.h"                  // Method ANGLE
47 #include "MeasureGUI_MaxToleranceDlg.h"           // Method MAXTOLERANCE
48 #include "MeasureGUI_WhatisDlg.h"                 // Method WHATIS
49 #include "MeasureGUI_CheckShapeDlg.h"             // Method CHECKSHAPE
50 #include "MeasureGUI_CheckCompoundOfBlocksDlg.h"  // Method CHECKCOMPOUND
51 #include "MeasureGUI_GetNonBlocksDlg.h"           // Method GET NON BLOCKS
52 #include "MeasureGUI_CheckSelfIntersectionsDlg.h" // Method CHECK SELF INTERSCTIONS
53 #include "MeasureGUI_FastCheckIntersectionsDlg.h" // Method FAST CHECK INTERSCTIONS
54 #include "MeasureGUI_PointDlg.h"                  // Method POINTCOORDINATES
55 #include "MeasureGUI_ManageDimensionsDlg.h"       // Method MANAGEDIMENSIONS
56
57 #include <QApplication>
58
59 //=======================================================================
60 // function : MeasureGUI()
61 // purpose  : Constructor
62 //=======================================================================
63 MeasureGUI::MeasureGUI( GeometryGUI* parent ) : GEOMGUI( parent )
64 {
65   myManageDimensionDlg = 0;
66 }
67
68 //=======================================================================
69 // function : ~MeasureGUI()
70 // purpose  : Destructor
71 //=======================================================================
72 MeasureGUI::~MeasureGUI()
73 {
74 }
75
76
77 //=======================================================================
78 // function : OnGUIEvent()
79 // purpose  : 
80 //=======================================================================
81 bool MeasureGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
82 {
83   SalomeApp_Application* app = getGeometryGUI()->getApp();
84   if ( !app ) return false;
85
86   getGeometryGUI()->EmitSignalDeactivateDialog();
87
88   QDialog* dlg = 0;
89   switch ( theCommandID ) {
90   case GEOMOp::OpProperties:
91     dlg = new MeasureGUI_PropertiesDlg( getGeometryGUI(), parent );
92     break; // LENGTH, AREA AND VOLUME
93   case GEOMOp::OpCenterMass:
94     dlg = new MeasureGUI_CenterMassDlg( getGeometryGUI(), parent );
95     break; // CENTER MASS7
96   case GEOMOp::OpInertia:
97     dlg = new MeasureGUI_InertiaDlg( getGeometryGUI(), parent );
98     break; // INERTIA
99   case GEOMOp::OpNormale : 
100     dlg = new MeasureGUI_NormaleDlg( getGeometryGUI(), parent );
101     break; // NORMALE
102   case GEOMOp::OpBoundingBox:
103     dlg = new MeasureGUI_BndBoxDlg( getGeometryGUI(), parent );
104     break; // BOUNDING BOX
105   case GEOMOp::OpMinDistance:
106     dlg = new MeasureGUI_DistanceDlg( getGeometryGUI(), parent );
107     break; // MIN DISTANCE
108   case GEOMOp::OpAngle: 
109     dlg = new MeasureGUI_AngleDlg( getGeometryGUI(), parent );
110     break; // ANGLE
111   case GEOMOp::OpTolerance: 
112     dlg = new MeasureGUI_MaxToleranceDlg( getGeometryGUI(), parent );
113     break; // MAXTOLERANCE
114   case GEOMOp::OpWhatIs:
115     dlg = new MeasureGUI_WhatisDlg( getGeometryGUI(), parent );
116     break; // WHATIS
117   case GEOMOp::OpCheckShape:
118     dlg = new MeasureGUI_CheckShapeDlg( getGeometryGUI(), parent );
119     break; // CHECKSHAPE
120   case GEOMOp::OpCheckCompound:
121     dlg = new MeasureGUI_CheckCompoundOfBlocksDlg( getGeometryGUI(), parent );
122     break; // CHECKCOMPOUND
123   case GEOMOp::OpGetNonBlocks:
124     dlg = new MeasureGUI_GetNonBlocksDlg(getGeometryGUI(), parent);
125     break; // GET NON BLOCKS
126   case GEOMOp::OpCheckSelfInters:
127     dlg = new MeasureGUI_CheckSelfIntersectionsDlg( getGeometryGUI(), parent );
128     break; // CHECK SELF INTERSCTIONS
129   case GEOMOp::OpFastCheckInters:
130     dlg = new MeasureGUI_FastCheckIntersectionsDlg( getGeometryGUI(), parent );
131     break; // FAST CHECK INTERSCTIONS
132   case GEOMOp::OpPointCoordinates:
133     dlg = new MeasureGUI_PointDlg( getGeometryGUI(), parent );
134     break; // POINT COORDINATES
135   case GEOMOp::OpManageDimensions:
136     if( !myManageDimensionDlg ) {
137       dlg = new MeasureGUI_ManageDimensionsDlg( getGeometryGUI(), parent );
138       myManageDimensionDlg = dlg;
139       connect( dlg, SIGNAL( finished(int) ), this, SLOT( onFinished(int) ) );
140     }
141     myManageDimensionDlg->activateWindow();
142     break; // MANAGE DIMENSIONS
143   case GEOMOp::OpShowAllDimensions:
144     ChangeDimensionsVisibility( true );
145     break; // SHOW ALL DIMENSIONS
146   case GEOMOp::OpHideAllDimensions:
147     ChangeDimensionsVisibility( false );
148     break; // HIDE ALL DIMENSIONS
149   default: 
150     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
151     break;
152   }
153   if ( dlg ) {
154     dlg->updateGeometry();
155     dlg->resize( dlg->minimumSizeHint() );
156     dlg->show();
157   }
158   return true;
159 }
160
161 //=======================================================================
162 // function : ChangeDimensionsVisibility
163 // purpose  : 
164 //=======================================================================
165 void MeasureGUI::ChangeDimensionsVisibility( const bool theIsVisible )
166 {
167   SalomeApp_Application* anApp = getGeometryGUI()->getApp();
168   if (!anApp)
169   {
170     return;
171   }
172
173   SalomeApp_Study* anActiveStudy = dynamic_cast<SalomeApp_Study*>( anApp->activeStudy() );
174   if ( !anActiveStudy )
175   {
176     return;
177   }
178
179   LightApp_SelectionMgr* aSelMgr = anApp->selectionMgr();
180   if ( !aSelMgr )
181   {
182     return;
183   }
184
185   SALOME_ListIO aListIO;
186   aSelMgr->selectedObjects( aListIO );
187   if ( aListIO.Extent() != 1 )
188   {
189     return;
190   }
191
192   Handle(SALOME_InteractiveObject) anIObject = aListIO.First();
193   if ( !anIObject->hasEntry() )
194   {
195     return;
196   }
197
198   SUIT_OverrideCursor wc;
199
200   GEOMGUI_DimensionProperty aDimensions( anActiveStudy, anIObject->getEntry() );
201
202   for ( int anIt = 0; anIt < aDimensions.GetNumber(); ++anIt )
203   {
204     aDimensions.SetVisible( anIt, theIsVisible );
205   }
206
207   aDimensions.SaveToAttribute( anActiveStudy, anIObject->getEntry() );
208
209   GEOM_Displayer( anActiveStudy ).Redisplay( anIObject, true );
210 }
211
212 //=======================================================================
213 // function : onFinished
214 // purpose  : called then "Manage Dimension" dialog is closed.
215 //=======================================================================
216 void MeasureGUI::onFinished(int /*theResult*/) {
217   if(sender() == myManageDimensionDlg) {
218     myManageDimensionDlg = 0;
219   }
220 }
221
222 //=====================================================================================
223 // EXPORTED METHODS
224 //=====================================================================================
225 extern "C"
226 {
227 #ifdef WIN32
228   __declspec( dllexport )
229 #endif
230   GEOMGUI* GetLibGUI( GeometryGUI* parent )
231   {
232     return new MeasureGUI( parent );
233   }
234 }