Salome HOME
Using files from package LightApp instead of SalomeApp
[modules/geom.git] / src / GEOMBase / GEOMBase_Skeleton.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   : GEOMBase_Skeleton.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #include "GEOMBase_Skeleton.h"
30 #include "GeometryGUI.h"
31
32 #include "SUIT_Session.h"
33 #include "SalomeApp_Application.h"
34 #include "LightApp_SelectionMgr.h"
35
36 #include <qpushbutton.h>
37
38 using namespace std;
39
40 //=================================================================================
41 // class    : GEOMBase_Skeleton()
42 // purpose  : Constructs a GEOMBase_Skeleton which is a child of 'parent', with the 
43 //            name 'name' and widget flags set to 'f'.
44 //            The dialog will by default be modeless, unless you set 'modal' to
45 //            TRUE to construct a modal dialog.
46 //=================================================================================
47 GEOMBase_Skeleton::GEOMBase_Skeleton(QWidget* parent, const char* name, bool modal, WFlags fl)
48   :DlgRef_Skeleton_QTD( parent, name, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu | WDestructiveClose ), 
49    GEOMBase_Helper( dynamic_cast<SUIT_Desktop*>( parent ) )
50 {
51   if (!name)
52     setName("GEOMBase_Skeleton");
53
54   buttonCancel->setText(tr("GEOM_BUT_CLOSE"));
55   buttonOk->setText(tr("GEOM_BUT_OK"));
56   buttonApply->setText(tr("GEOM_BUT_APPLY"));
57
58   GroupMedium->close(TRUE);
59   resize(0, 0);
60
61   Init();
62 }
63
64
65 //=================================================================================
66 // function : ~GEOMBase_Skeleton()
67 // purpose  : Destroys the object and frees any allocated resources
68 //=================================================================================
69 GEOMBase_Skeleton::~GEOMBase_Skeleton()
70 {
71   if (myGeomGUI)
72     myGeomGUI->SetActiveDialogBox( 0 );
73 }
74
75
76 //=================================================================================
77 // function : Init()
78 // purpose  :
79 //=================================================================================
80 void GEOMBase_Skeleton::Init()
81 {
82   myGeomGUI = 0;
83   SalomeApp_Application* app = (SalomeApp_Application*)(SUIT_Session::session()->activeApplication());
84   if (app)
85     {
86       SalomeApp_Module* module = dynamic_cast<SalomeApp_Module*>(app->loadModule("Geometry"));
87       if (module)
88         myGeomGUI =  dynamic_cast<GeometryGUI*>(module);
89     }
90   
91   /* init variables */
92   myGeomBase = new GEOMBase();  // SAN -- TO BE REMOVED !!!
93   myGeomGUI->SetActiveDialogBox(this);
94   
95   /* signals and slots connections */
96   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
97   if (myGeomGUI) 
98     {
99       connect(myGeomGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
100       connect(myGeomGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
101     }
102   
103   /* Move widget on the botton right corner of main widget */
104 //   int x, y;
105 //   myGeomBase->DefineDlgPosition( this, x, y );
106
107   /* displays Dialog */
108   RadioButton1->setChecked(TRUE);
109   RadioButton4->hide();
110
111   return;
112 }
113
114
115 //=================================================================================
116 // function : ClickOnCancel()
117 // purpose  :
118 //=================================================================================
119 void GEOMBase_Skeleton::ClickOnCancel()
120 {
121   close();
122 }
123
124
125 //=================================================================================
126 // function : LineEditReturnPressed()
127 // purpose  :
128 //=================================================================================
129 void GEOMBase_Skeleton::LineEditReturnPressed()
130 {
131   if ( !myEditCurrentArgument )
132     return;
133
134   /* User name of object input management                          */
135   /* If successfull the selection is changed and signal emitted... */
136   /* so SelectionIntoArgument() is automatically called.           */
137   const QString objectUserName = myEditCurrentArgument->text();
138   QWidget* thisWidget = (QWidget*)this;
139   
140   if(GEOMBase::SelectionByNameInDialogs(thisWidget, objectUserName, selectedIO()))
141      myEditCurrentArgument->setText(objectUserName);
142
143   return;
144 }
145
146
147 //=================================================================================
148 // function : DeactivateActiveDialog()
149 // purpose  :
150 //=================================================================================
151 void GEOMBase_Skeleton::DeactivateActiveDialog()
152 {
153   this->setEnabled(false);
154   globalSelection();
155   disconnect( ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 0, this, 0);
156   if (myGeomGUI) myGeomGUI->SetActiveDialogBox(0);
157     
158   return;
159 }
160
161
162 //=================================================================================
163 // function : ActivateThisDialog()
164 // purpose  :
165 //=================================================================================
166 void GEOMBase_Skeleton::ActivateThisDialog()
167 {
168   /* Emit a signal to deactivate the active dialog */
169   if (myGeomGUI) myGeomGUI->EmitSignalDeactivateDialog();
170   this->setEnabled(true);
171   if (myGeomGUI) myGeomGUI->SetActiveDialogBox((QDialog*)this);
172   return;
173 }
174
175
176 //=================================================================================
177 // function : closeEvent()
178 // purpose  : same than click on cancel button
179 //=================================================================================
180 void GEOMBase_Skeleton::closeEvent(QCloseEvent* e)
181 {
182   SalomeApp_Application* app = (SalomeApp_Application*)(SUIT_Session::session()->activeApplication());
183   if(app) {
184     disconnect( app->selectionMgr(), 0, this, 0);
185     app->updateActions();
186   }
187   QDialog::closeEvent( e );
188 }
189
190 //=================================================================================
191 // function : initName()
192 // purpose  : initialize the Name field with a string "thePrefix_X" (Vertex_3)
193 //=================================================================================
194 void GEOMBase_Skeleton::initName( const char* thePrefix )
195 {
196   if ( thePrefix )
197     setPrefix( thePrefix );
198   ResultName->setText( GEOMBase::GetDefaultName( getPrefix() ) );
199 }
200
201 //=================================================================================
202 // function : getNewObjectName()
203 // purpose  : returns contents of Name field
204 //=================================================================================
205 const char* GEOMBase_Skeleton::getNewObjectName() const
206 {
207   return ResultName->text();
208 }
209
210 //=================================================================================
211 // function : getConstructorId()
212 // purpose  :
213 //=================================================================================
214 int GEOMBase_Skeleton::getConstructorId() const
215 {
216   if ( GroupConstructors != NULL && GroupConstructors->selected() != NULL )
217     return GroupConstructors->id( GroupConstructors->selected() );
218   return -1;
219 }