]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMBase/GEOMBase_Skeleton.cxx
Salome HOME
NPAL14167: Keep the parameters of the object after a transformation.
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : GEOMBase_Skeleton.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #include "GEOMBase_Skeleton.h"
30
31 #include "GeometryGUI.h"
32
33 #include "SalomeApp_Application.h"
34 #include "LightApp_Application.h"
35 #include "LightApp_SelectionMgr.h"
36 #include "SUIT_Session.h"
37 #include "SUIT_MessageBox.h"
38
39 #include <qlabel.h>
40 #include <qpushbutton.h>
41 #include <qcheckbox.h>
42
43 using namespace std;
44
45 //=================================================================================
46 // class    : GEOMBase_Skeleton()
47 // purpose  : Constructs a GEOMBase_Skeleton which is a child of 'parent', with the
48 //            name 'name' and widget flags set to 'f'.
49 //            The dialog will by default be modeless, unless you set 'modal' to
50 //            TRUE to construct a modal dialog.
51 //=================================================================================
52 GEOMBase_Skeleton::GEOMBase_Skeleton (GeometryGUI* theGeometryGUI, QWidget* parent,
53                                       const char* name, bool modal, WFlags fl)
54   : DlgRef_Skeleton_QTD( parent, name, modal, WStyle_Customize | WStyle_NormalBorder
55                          | WStyle_Title | WStyle_SysMenu | WDestructiveClose ),
56    GEOMBase_Helper( dynamic_cast<SUIT_Desktop*>( parent ) ),
57    myGeomGUI( theGeometryGUI )
58 {
59   if (!name)
60     setName("GEOMBase_Skeleton");
61
62   GroupBoxName->setTitle(tr("GEOM_RESULT_NAME_GRP"));
63   NameLabel->setText(tr("GEOM_RESULT_NAME_LBL"));
64
65   GroupBoxPublish->setTitle(tr("GEOM_PUBLISH_RESULT_GRP"));
66   CheckBoxRestoreSS->setText(tr("GEOM_RESTORE_SUB_SHAPES"));
67
68   buttonCancel->setText(tr("GEOM_BUT_CLOSE"));
69   buttonOk->setText(tr("GEOM_BUT_APPLY_AND_CLOSE"));
70   buttonApply->setText(tr("GEOM_BUT_APPLY"));
71   buttonHelp->setText(tr("GEOM_BUT_HELP"));
72
73   resize(0, 0);
74
75   Init();
76 }
77
78 //=================================================================================
79 // function : ~GEOMBase_Skeleton()
80 // purpose  : Destroys the object and frees any allocated resources
81 //=================================================================================
82 GEOMBase_Skeleton::~GEOMBase_Skeleton()
83 {
84   if (myGeomGUI)
85     myGeomGUI->SetActiveDialogBox( 0 );
86 }
87
88 //=================================================================================
89 // function : Init()
90 // purpose  :
91 //=================================================================================
92 void GEOMBase_Skeleton::Init()
93 {
94   SalomeApp_Application* app = (SalomeApp_Application*)(SUIT_Session::session()->activeApplication());
95   if (!myGeomGUI && app)
96     myGeomGUI = dynamic_cast<GeometryGUI*>( app->module( "Geometry" ) );
97
98   /* init variables */
99   if (myGeomGUI)
100     myGeomGUI->SetActiveDialogBox(this);
101
102   /* signals and slots connections */
103   connect(buttonCancel, SIGNAL(clicked()), this, SLOT(ClickOnCancel()));
104   if (myGeomGUI)
105   {
106     connect(myGeomGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
107     connect(myGeomGUI, SIGNAL(SignalCloseAllDialogs()), this, SLOT(ClickOnCancel()));
108   }
109
110   // connect help button on a private slot that displays help information
111   connect( buttonHelp, SIGNAL( clicked() ), this, SLOT( ClickOnHelp() ) );
112
113   /* displays Dialog */
114   RadioButton1->setChecked(TRUE);
115   RadioButton4->hide();
116
117   CheckBoxRestoreSS->setChecked(FALSE);
118   GroupBoxPublish->hide();
119 }
120
121 //=================================================================================
122 // function : ClickOnCancel()
123 // purpose  :
124 //=================================================================================
125 void GEOMBase_Skeleton::ClickOnCancel()
126 {
127   close();
128 }
129
130 //=================================================================================
131 // function : LineEditReturnPressed()
132 // purpose  :
133 //=================================================================================
134 void GEOMBase_Skeleton::LineEditReturnPressed()
135 {
136   if ( !myEditCurrentArgument )
137     return;
138
139   /* User name of object input management                          */
140   /* If successfull the selection is changed and signal emitted... */
141   /* so SelectionIntoArgument() is automatically called.           */
142   const QString objectUserName = myEditCurrentArgument->text();
143   QWidget* thisWidget = (QWidget*)this;
144
145   if(GEOMBase::SelectionByNameInDialogs(thisWidget, objectUserName, selectedIO()))
146      myEditCurrentArgument->setText(objectUserName);
147 }
148
149 //=================================================================================
150 // function : DeactivateActiveDialog()
151 // purpose  :
152 //=================================================================================
153 void GEOMBase_Skeleton::DeactivateActiveDialog()
154 {
155   this->setEnabled(false);
156   globalSelection();
157   if (myGeomGUI) {
158     myGeomGUI->SetActiveDialogBox(0);
159     disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
160   }
161 }
162
163 //=================================================================================
164 // function : ActivateThisDialog()
165 // purpose  :
166 //=================================================================================
167 void GEOMBase_Skeleton::ActivateThisDialog()
168 {
169   /* Emit a signal to deactivate the active dialog */
170   if (myGeomGUI) myGeomGUI->EmitSignalDeactivateDialog();
171   this->setEnabled(true);
172   if (myGeomGUI) myGeomGUI->SetActiveDialogBox((QDialog*)this);
173 }
174
175 //=================================================================================
176 // function : closeEvent()
177 // purpose  : same than click on cancel button
178 //=================================================================================
179 void GEOMBase_Skeleton::closeEvent(QCloseEvent* e)
180 {
181   if (myGeomGUI) {
182     disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
183     myGeomGUI->getApp()->updateActions();
184   }
185   QDialog::closeEvent( e );
186 }
187
188 //=================================================================================
189 // function : initName()
190 // purpose  : initialize the Name field with a string "thePrefix_X" (Vertex_3)
191 //=================================================================================
192 void GEOMBase_Skeleton::initName( const char* thePrefix )
193 {
194   if ( thePrefix )
195     setPrefix( thePrefix );
196   ResultName->setText( GEOMBase::GetDefaultName( getPrefix() ) );
197 }
198
199 //=================================================================================
200 // function : getNewObjectName()
201 // purpose  : returns contents of Name field
202 //=================================================================================
203 const char* GEOMBase_Skeleton::getNewObjectName() const
204 {
205   return ResultName->text();
206 }
207
208 //=================================================================================
209 // function : getConstructorId()
210 // purpose  :
211 //=================================================================================
212 int GEOMBase_Skeleton::getConstructorId() const
213 {
214   if ( GroupConstructors != NULL && GroupConstructors->selected() != NULL )
215     return GroupConstructors->id( GroupConstructors->selected() );
216   return -1;
217 }
218
219 //=================================================================================
220 // function : ClickOnHelp()
221 // purpose  :
222 //=================================================================================
223 void GEOMBase_Skeleton::ClickOnHelp()
224 {
225   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
226   if (app)
227     app->onHelpContextModule(myGeomGUI ? app->moduleName(myGeomGUI->moduleName()) : QString(""), myHelpFileName);
228   else {
229     QString platform;
230 #ifdef WIN32
231     platform = "winapplication";
232 #else
233     platform = "application";
234 #endif
235     SUIT_MessageBox::warn1(0, QObject::tr("WRN_WARNING"),
236                            QObject::tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
237                            arg(app->resourceMgr()->stringValue("ExternalBrowser", platform)).arg(myHelpFileName),
238                            QObject::tr("BUT_OK"));
239   }
240 }
241
242 //=================================================================================
243 //  function : setHelpFileName()
244 //  purpose  : set name for help file html
245 //=================================================================================
246 void GEOMBase_Skeleton::setHelpFileName(const QString& theName)
247 {
248     myHelpFileName = theName;
249 }
250
251 //=================================================================================
252 // function : keyPressEvent()
253 // purpose  :
254 //=================================================================================
255 void GEOMBase_Skeleton::keyPressEvent( QKeyEvent* e )
256 {
257   QDialog::keyPressEvent( e );
258   if ( e->isAccepted() )
259     return;
260
261   if ( e->key() == Key_F1 )
262   {
263     e->accept();
264     ClickOnHelp();
265   }
266 }