Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / BlocksGUI / BlocksGUI.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  CEA
4 //
5 //  This library is free software; you can redistribute it and/or
6 //  modify it under the terms of the GNU Lesser General Public
7 //  License as published by the Free Software Foundation; either
8 //  version 2.1 of the License.
9 //
10 //  This library is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 //  Lesser General Public License for more details.
14 //
15 //  You should have received a copy of the GNU Lesser General Public
16 //  License along with this library; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 //
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 //
22 //
23 //  File   : BooleanGUI.cxx
24 //  Author : Julia DOOVSKIKH
25 //  Module : GEOM
26 //  $Header$
27
28 #include "BlocksGUI.h"
29
30 #include "BlocksGUI_QuadFaceDlg.h"
31 #include "BlocksGUI_BlockDlg.h"
32 #include "BlocksGUI_TrsfDlg.h"
33 #include "BlocksGUI_ExplodeDlg.h"
34 #include "BlocksGUI_PropagateDlg.h"
35
36 #include "GeometryGUI.h"
37
38 #include "SUIT_Desktop.h"
39 #include "SUIT_MessageBox.h"
40 #include "SUIT_Session.h"
41
42 #include "SalomeApp_Application.h"
43
44 //=======================================================================
45 // function : BlocksGUI()
46 // purpose  : Constructor
47 //=======================================================================
48 BlocksGUI::BlocksGUI( GeometryGUI* parent )
49      : GEOMGUI( parent )
50 {
51 }
52
53 //=======================================================================
54 // function : ~BlocksGUI()
55 // purpose  : Destructor
56 //=======================================================================
57 BlocksGUI::~BlocksGUI()
58 {
59 }
60
61 //=======================================================================
62 // function : OnGUIEvent()
63 // purpose  :
64 //=======================================================================
65 bool BlocksGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
66 {
67   getGeometryGUI()->EmitSignalDeactivateDialog();
68
69   QDialog* aDlg = NULL;
70
71   switch (theCommandID)
72   {
73     case 9999:  aDlg = new BlocksGUI_BlockDlg     (getGeometryGUI(), parent); break;
74     case 9998:  aDlg = new BlocksGUI_TrsfDlg      (getGeometryGUI(), parent); break;
75     case 9997:  aDlg = new BlocksGUI_QuadFaceDlg  (getGeometryGUI(), parent); break;
76     case 9995:  aDlg = new BlocksGUI_ExplodeDlg   (getGeometryGUI(), parent); break;
77     case 99991: aDlg = new BlocksGUI_PropagateDlg (getGeometryGUI(), parent); break;
78     default:
79       getGeometryGUI()->getApp()->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
80       break;
81   }
82
83   if (aDlg != NULL)
84     aDlg->show();
85
86   return true;
87 }
88
89 //=====================================================================================
90 // EXPORTED METHODS
91 //=====================================================================================
92 extern "C"
93 {
94  GEOM_BLOCKSGUI_EXPORT
95   GEOMGUI* GetLibGUI( GeometryGUI* parent )
96   {
97     return new BlocksGUI( parent );
98   }
99 }