Salome HOME
NPAL17269: Performance pb. when creating a group with GUI.
[modules/geom.git] / src / MeasureGUI / MeasureGUI.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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 //
24 //  File   : MeasureGUI.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #include "MeasureGUI.h"
30 #include "SUIT_Desktop.h"
31 #include "SUIT_Session.h"
32
33 #include "SalomeApp_Tools.h"
34 #include "SalomeApp_Application.h"
35
36 #include "MeasureGUI_PropertiesDlg.h"    // Method PROPERTIES
37 #include "MeasureGUI_CenterMassDlg.h"    // Method CENTER MASS
38 #include "MeasureGUI_InertiaDlg.h"       // Method INERTIA
39 #include "MeasureGUI_BndBoxDlg.h"        // Method BNDBOX
40 #include "MeasureGUI_DistanceDlg.h"      // Method DISTANCE
41 #include "MeasureGUI_AngleDlg.h"         // Method ANGLE
42 #include "MeasureGUI_MaxToleranceDlg.h"  // Method MAXTOLERANCE
43 #include "MeasureGUI_WhatisDlg.h"        // Method WHATIS
44 #include "MeasureGUI_CheckShapeDlg.h"    // Method CHECKSHAPE
45 #include "MeasureGUI_CheckCompoundOfBlocksDlg.h" // Method CHECKCOMPOUND
46 #include "MeasureGUI_PointDlg.h"         // Method POINTCOORDINATES
47
48 //=======================================================================
49 // function : MeasureGUI()
50 // purpose  : Constructor
51 //=======================================================================
52 MeasureGUI::MeasureGUI( GeometryGUI* parent ) : GEOMGUI( parent )
53 {
54 }
55
56 //=======================================================================
57 // function : ~MeasureGUI()
58 // purpose  : Destructor
59 //=======================================================================
60 MeasureGUI::~MeasureGUI()
61 {
62 }
63
64
65 //=======================================================================
66 // function : OnGUIEvent()
67 // purpose  : 
68 //=======================================================================
69 bool MeasureGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
70 {
71   SalomeApp_Application* app = getGeometryGUI()->getApp();
72   if ( !app ) return false;
73
74   getGeometryGUI()->EmitSignalDeactivateDialog();
75
76   switch ( theCommandID )
77   {
78     case 701 : new MeasureGUI_PropertiesDlg  (getGeometryGUI(), parent); break; // LENGTH, AREA AND VOLUME
79     case 702 : new MeasureGUI_CenterMassDlg  (getGeometryGUI(), parent); break; // CENTER MASS
80     case 703 : new MeasureGUI_InertiaDlg     (getGeometryGUI(), parent); break; // INERTIA
81     case 7041: new MeasureGUI_BndBoxDlg      (getGeometryGUI(), parent); break; // BOUNDING BOX
82     case 7042: new MeasureGUI_DistanceDlg    (getGeometryGUI(), parent); break; // MIN DISTANCE
83     case 7043: new MeasureGUI_AngleDlg       (getGeometryGUI(), parent); break; // ANGLE
84     case 705 : new MeasureGUI_MaxToleranceDlg(getGeometryGUI(), parent); break; // MAXTOLERANCE
85     case 706 : new MeasureGUI_WhatisDlg      (getGeometryGUI(), parent); break; // WHATIS
86     case 707 : new MeasureGUI_CheckShapeDlg  (getGeometryGUI(), parent); break; // CHECKSHAPE
87     case 7072: new MeasureGUI_CheckCompoundOfBlocksDlg  (getGeometryGUI(), parent); break; // CHECKCOMPOUND
88     case 708 : new MeasureGUI_PointDlg       (getGeometryGUI(), parent); break; // POINT COORDINATES
89
90     default: 
91       app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
92       break;
93   }
94   return true;
95 }
96
97
98 //=====================================================================================
99 // EXPORTED METHODS
100 //=====================================================================================
101 extern "C"
102 {
103 GEOM_MEASUREGUI_EXPORT
104   GEOMGUI* GetLibGUI( GeometryGUI* parent )
105   {
106     return new MeasureGUI( parent );
107   }
108 }