]> SALOME platform Git repositories - modules/geom.git/blob - src/AdvancedGUI/AdvancedGUI.cxx
Salome HOME
Added a mechanism to store AIS_AngleDimension objects and display them all along...
[modules/geom.git] / src / AdvancedGUI / AdvancedGUI.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  File   : AdvancedGUI.cxx
21 //  Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
22 //
23 #include "AdvancedGUI.h"
24
25 #include "GeometryGUI.h"
26 #include "GeometryGUI_Operations.h"
27
28 #include <SUIT_Desktop.h>
29 #include <SalomeApp_Application.h>
30
31 #include "AdvancedGUI_PipeTShapeDlg.h"
32 #include "AdvancedGUI_DividedDiskDlg.h"
33 //@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@//
34
35 #include <QDialog>
36
37 //=======================================================================
38 // function : AdvancedGUI()
39 // purpose  : Constructor
40 //=======================================================================
41 AdvancedGUI::AdvancedGUI( GeometryGUI* parent ) : GEOMGUI( parent )
42 {
43 }
44
45 //=======================================================================
46 // function : ~AdvancedGUI
47 // purpose  : Destructor
48 //=======================================================================
49 AdvancedGUI::~AdvancedGUI()
50 {
51 }
52
53 //=======================================================================
54 // function : OnGUIEvent()
55 // purpose  : 
56 //=======================================================================
57 bool AdvancedGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
58 {
59   SalomeApp_Application* app = getGeometryGUI()->getApp();
60   if ( !app ) return false;
61
62   getGeometryGUI()->EmitSignalDeactivateDialog();
63
64   QDialog* aDlg = NULL;
65
66   switch ( theCommandID ) {
67   case GEOMOp::OpPipeTShape:
68     aDlg = new AdvancedGUI_PipeTShapeDlg( getGeometryGUI(), parent );
69     break;
70 //   case GEOMOp::OpPipeTShapeGroups:
71 //     aDlg = new AdvancedGUI_PipeTShapeGroupsDlg( getGeometryGUI(), parent );
72 //     break;
73   case GEOMOp::OpDividedDisk:
74     aDlg = new AdvancedGUI_DividedDiskDlg( getGeometryGUI(), parent );
75     break;
76   //@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@//
77   default:
78     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
79     break;
80   }
81
82   if ( aDlg != NULL )
83     aDlg->show();
84
85   return true;
86 }
87
88 //=====================================================================================
89 // EXPORTED METHODS
90 //=====================================================================================
91 extern "C"
92 {
93 #ifdef WIN32
94   __declspec( dllexport )
95 #endif
96   GEOMGUI* GetLibGUI( GeometryGUI* parent )
97   {
98     return new AdvancedGUI( parent );
99   }
100 }