Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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_NormaleDlg.h"       // Method NORMALE
39 #include "MeasureGUI_InertiaDlg.h"       // Method INERTIA
40 #include "MeasureGUI_BndBoxDlg.h"        // Method BNDBOX
41 #include "MeasureGUI_DistanceDlg.h"      // Method DISTANCE
42 #include "MeasureGUI_AngleDlg.h"         // Method ANGLE
43 #include "MeasureGUI_MaxToleranceDlg.h"  // Method MAXTOLERANCE
44 #include "MeasureGUI_WhatisDlg.h"        // Method WHATIS
45 #include "MeasureGUI_CheckShapeDlg.h"    // Method CHECKSHAPE
46 #include "MeasureGUI_CheckCompoundOfBlocksDlg.h" // Method CHECKCOMPOUND
47 #include "MeasureGUI_PointDlg.h"         // Method POINTCOORDINATES
48
49 //=======================================================================
50 // function : MeasureGUI()
51 // purpose  : Constructor
52 //=======================================================================
53 MeasureGUI::MeasureGUI( GeometryGUI* parent ) : GEOMGUI( parent )
54 {
55 }
56
57 //=======================================================================
58 // function : ~MeasureGUI()
59 // purpose  : Destructor
60 //=======================================================================
61 MeasureGUI::~MeasureGUI()
62 {
63 }
64
65
66 //=======================================================================
67 // function : OnGUIEvent()
68 // purpose  : 
69 //=======================================================================
70 bool MeasureGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
71 {
72   SalomeApp_Application* app = getGeometryGUI()->getApp();
73   if ( !app ) return false;
74
75   getGeometryGUI()->EmitSignalDeactivateDialog();
76
77   switch ( theCommandID )
78   {
79     case 701 : new MeasureGUI_PropertiesDlg  (getGeometryGUI(), parent); break; // LENGTH, AREA AND VOLUME
80     case 702 : new MeasureGUI_CenterMassDlg  (getGeometryGUI(), parent); break; // CENTER MASS
81     case 703 : new MeasureGUI_InertiaDlg     (getGeometryGUI(), parent); break; // INERTIA
82     case 704 : new MeasureGUI_NormaleDlg     (getGeometryGUI(), parent); break; // NORMALE
83     case 7041: new MeasureGUI_BndBoxDlg      (getGeometryGUI(), parent); break; // BOUNDING BOX
84     case 7042: new MeasureGUI_DistanceDlg    (getGeometryGUI(), parent); break; // MIN DISTANCE
85     case 7043: new MeasureGUI_AngleDlg       (getGeometryGUI(), parent); break; // ANGLE
86     case 705 : new MeasureGUI_MaxToleranceDlg(getGeometryGUI(), parent); break; // MAXTOLERANCE
87     case 706 : new MeasureGUI_WhatisDlg      (getGeometryGUI(), parent); break; // WHATIS
88     case 707 : new MeasureGUI_CheckShapeDlg  (getGeometryGUI(), parent); break; // CHECKSHAPE
89     case 7072: new MeasureGUI_CheckCompoundOfBlocksDlg  (getGeometryGUI(), parent); break; // CHECKCOMPOUND
90     case 708 : new MeasureGUI_PointDlg       (getGeometryGUI(), parent); break; // POINT COORDINATES
91
92     default: 
93       app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) ); 
94       break;
95   }
96   return true;
97 }
98
99
100 //=====================================================================================
101 // EXPORTED METHODS
102 //=====================================================================================
103 extern "C"
104 {
105 GEOM_MEASUREGUI_EXPORT
106   GEOMGUI* GetLibGUI( GeometryGUI* parent )
107   {
108     return new MeasureGUI( parent );
109   }
110 }