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