]> SALOME platform Git repositories - modules/geom.git/blob - src/TransformationGUI/TransformationGUI.cxx
Salome HOME
5dfdd8955e4066d04dbba899d964035469c77eac
[modules/geom.git] / src / TransformationGUI / TransformationGUI.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : TransformationGUI.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #include "TransformationGUI.h"
30 #include "GeometryGUI.h"
31
32 #include "SUIT_Session.h"
33 #include "SUIT_Desktop.h"
34
35 #include "TransformationGUI_MultiTranslationDlg.h"   // Method MULTI TRANSLATION
36 #include "TransformationGUI_MultiRotationDlg.h"      // Method MULTI ROTATION
37 #include "TransformationGUI_TranslationDlg.h"        // Method TRANSLATION
38 #include "TransformationGUI_RotationDlg.h"           // Method ROTATION
39 #include "TransformationGUI_MirrorDlg.h"             // Method MIRROR
40 #include "TransformationGUI_ScaleDlg.h"              // Method SCALE
41 #include "TransformationGUI_OffsetDlg.h"             // Method OFFSET
42 #include "TransformationGUI_PositionDlg.h"           // Method POSITION
43
44 using namespace std;
45
46 TransformationGUI* TransformationGUI::myGUIObject = 0;
47
48 //=======================================================================
49 // function : GetTransformationGUI()
50 // purpose  : Get the only TransformationGUI object [ static ]
51 //=======================================================================
52 TransformationGUI* TransformationGUI::GetTransformationGUI( GeometryGUI* parent )
53 {
54   if ( myGUIObject == 0 ) {
55     // init TransformationGUI only once
56     myGUIObject = new TransformationGUI( parent );
57   }
58   return myGUIObject;
59 }
60
61 //=======================================================================
62 // function : TransformationGUI()
63 // purpose  : Constructor
64 //=======================================================================
65 TransformationGUI::TransformationGUI(GeometryGUI* parent) : GEOMGUI(parent)
66 {
67 }
68
69
70 //=======================================================================
71 // function : ~TransformationGUI()
72 // purpose  : Destructor
73 //=======================================================================
74 TransformationGUI::~TransformationGUI()
75 {
76 }
77
78
79 //=======================================================================
80 // function : OnGUIEvent()
81 // purpose  : 
82 //=======================================================================
83 bool TransformationGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
84 {
85   getGeometryGUI()->EmitSignalDeactivateDialog();
86   QDialog* aDlg = NULL;
87
88   switch (theCommandID)
89   {
90   case 5021: // TRANSLATION
91     aDlg = new TransformationGUI_TranslationDlg( getGeometryGUI(), parent, "" );
92     break;
93   case 5022: // ROTATION
94     aDlg = new TransformationGUI_RotationDlg( getGeometryGUI(), parent, "" );
95     break;
96   case 5023: // POSITION
97     aDlg = new TransformationGUI_PositionDlg( getGeometryGUI(), parent, "" );
98     break;
99   case 5024: // MIRROR
100     aDlg = new TransformationGUI_MirrorDlg( getGeometryGUI(), parent, "" );
101     break;
102   case 5025: // SCALE
103     aDlg = new TransformationGUI_ScaleDlg( getGeometryGUI(), parent, "" );
104     break;
105   case 5026: // OFFSET
106     aDlg = new TransformationGUI_OffsetDlg( getGeometryGUI(), parent, "" );
107     break;
108   case 5027: // MULTI TRANSLATION
109     aDlg = new TransformationGUI_MultiTranslationDlg( getGeometryGUI(), parent, "" );
110     break;
111   case 5028: // MULTI ROTATION
112     aDlg = new TransformationGUI_MultiRotationDlg( getGeometryGUI(), parent, "" );
113     break;
114   default:
115     SUIT_Session::session()->activeApplication()->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
116     break;
117   }
118
119   if ( aDlg != NULL )
120     aDlg->show();
121
122   return true;
123 }
124
125
126 //=====================================================================================
127 // EXPORTED METHODS
128 //=====================================================================================
129 extern "C"
130 {
131 #ifdef WNT
132         __declspec( dllexport )
133 #endif
134   GEOMGUI* GetLibGUI( GeometryGUI* parent )
135   {
136     return TransformationGUI::GetTransformationGUI( parent );
137   }
138 }