Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/hexablock.git] / src / HEXABLOCKGUI / MyGEOMBase_Skeleton.cxx
1 // Copyright (C) 2009-2012  CEA/DEN, EDF R&D
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 #include "MyGEOMBase_Skeleton.hxx"
21 #include "GEOMBase.h"
22
23 #include "MyDlgRef.hxx"
24 #include <GeometryGUI.h>
25
26 #include <SalomeApp_Application.h>
27 #include <SalomeApp_DoubleSpinBox.h>
28 #include <SalomeApp_Study.h>
29 #include <LightApp_Application.h>
30 #include <LightApp_SelectionMgr.h>
31 #include <SUIT_Desktop.h>
32 #include <SUIT_ResourceMgr.h>
33 #include <SUIT_Session.h>
34 #include <SUIT_MessageBox.h>
35
36 #include <QKeyEvent>
37 #include <QSpinBox>
38 #include <QDoubleSpinBox>
39
40 //=================================================================================
41 // class    : MyGEOMBase_Skeleton()
42 // purpose  : Constructs a MyGEOMBase_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 MyGEOMBase_Skeleton::MyGEOMBase_Skeleton( GeometryGUI* theGeometryGUI, QWidget* parent,
48                                       bool modal, Qt::WindowFlags fl )
49   : QDialog( parent, fl ),
50     MyGEOMBase_Helper( dynamic_cast<SUIT_Desktop*>( parent ) ),
51     myGeomGUI( theGeometryGUI ),
52     myRBGroup( 0 )
53 {
54 //   setAttribute( Qt::WA_DeleteOnClose );
55
56   setModal( modal );
57   MESSAGE("MyGEOMBase_Skeleton::MyGEOMBase_Skeleton()");
58
59   myMainFrame = new MyDlgRef_Skeleton( this );
60   QVBoxLayout* topLayout = new QVBoxLayout( this );
61   topLayout->setMargin( 0 ); topLayout->setSpacing( 0 );
62   topLayout->addWidget( myMainFrame );
63
64   myMainFrame->GroupBoxName->setTitle( tr( "GEOM_RESULT_NAME_GRP" ) );
65   myMainFrame->NameLabel->setText( tr( "GEOM_RESULT_NAME_LBL" ) );
66
67   myMainFrame->GroupBoxPublish->setTitle( tr( "GEOM_PUBLISH_RESULT_GRP" ) );
68   myMainFrame->CheckBoxRestoreSS->setText( tr( "GEOM_RESTORE_SUB_SHAPES" ) );
69   myMainFrame->CheckBoxAddPrefix->setText( tr( "GEOM_RSS_ADD_FREFIX" ) );
70   myMainFrame->CheckBoxPreview->setText( tr("GEOM_PREVIEW") );
71
72   buttonCancel()->setText( tr( "GEOM_BUT_CLOSE" ) );
73   //buttonOk()->setText( tr( "GEOM_BUT_APPLY_AND_CLOSE" ) );
74   buttonApply()->setText( tr( "GEOM_BUT_APPLY" ) );
75   buttonHelp()->setText( tr( "GEOM_BUT_HELP" ) );
76
77   myRBGroup = new QButtonGroup( this );
78   myRBGroup->addButton( myMainFrame->RadioButton1, 0 );
79   myRBGroup->addButton( myMainFrame->RadioButton2, 1 );
80   myRBGroup->addButton( myMainFrame->RadioButton3, 2 );
81   myRBGroup->addButton( myMainFrame->RadioButton4, 3 );
82   myRBGroup->addButton( myMainFrame->RadioButton5, 4 );
83
84   connect( myRBGroup, SIGNAL( buttonClicked( int ) ), this, SIGNAL( constructorsClicked( int ) ) );
85
86   Init();
87 }
88
89 //=================================================================================
90 // function : ~MyGEOMBase_Skeleton()
91 // purpose  : Destroys the object and frees any allocated resources
92 //=================================================================================
93 MyGEOMBase_Skeleton::~MyGEOMBase_Skeleton()
94 {
95   if ( myGeomGUI )
96     myGeomGUI->SetActiveDialogBox( 0 );
97 }
98
99 //=================================================================================
100 // function : Init()
101 // purpose  :
102 //=================================================================================
103 void MyGEOMBase_Skeleton::Init()
104 {
105   SalomeApp_Application* app = (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() );
106   if ( !myGeomGUI && app )
107     myGeomGUI = dynamic_cast<GeometryGUI*>( app->module( "Geometry" ) );
108
109   /* init variables */
110   if ( myGeomGUI )
111     myGeomGUI->SetActiveDialogBox( this );
112
113   /* signals and slots connections */
114   connect( buttonCancel(), SIGNAL( clicked() ), this, SLOT( ClickOnCancel() ) );
115   if ( myGeomGUI ) {
116     connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
117     connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
118   }
119
120   // connect help button on a private slot that displays help information
121   connect( buttonHelp(), SIGNAL( clicked() ), this, SLOT( ClickOnHelp() ) );
122
123   connect( myMainFrame->CheckBoxPreview, SIGNAL(toggled(bool)), this, SLOT(processPreview()) );
124
125   /* displays Dialog */
126   myMainFrame->RadioButton1->setChecked( true );
127   myMainFrame->RadioButton4->hide();
128   myMainFrame->RadioButton5->hide();
129
130   myMainFrame->CheckBoxRestoreSS->setChecked( false );
131   myMainFrame->CheckBoxAddPrefix->setChecked( true );
132
133   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
134   bool aPrv = (resMgr == 0) ? false : resMgr->booleanValue( "Geometry", "geom_preview", false );
135
136   myMainFrame->CheckBoxPreview->setChecked( aPrv );
137   myMainFrame->GroupBoxPublish->hide();
138 }
139
140 //=================================================================================
141 // function : initSpinBox()
142 // purpose  :
143 //=================================================================================
144 void MyGEOMBase_Skeleton::initSpinBox( QSpinBox* spinBox,
145                                      int min,  int max, int step )
146 {
147   spinBox->setRange( min, max );
148   spinBox->setSingleStep( step );
149 }
150
151 //=================================================================================
152 // function : initSpinBox()
153 // purpose  :
154 //=================================================================================
155 void MyGEOMBase_Skeleton::initSpinBox( SalomeApp_DoubleSpinBox* spinBox,
156                                      double min,  double max,
157                                      double step, const char* quantity )
158 {
159   // Obtain precision from preferences
160   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
161   int aPrecision = resMgr->integerValue( "Geometry", quantity, 6 );
162
163   spinBox->setPrecision( aPrecision );
164   spinBox->setDecimals( qAbs( aPrecision ) ); // it's necessary to set decimals before the range setting,
165                                     // by default Qt rounds boundaries to 2 decimals at setRange
166   spinBox->setRange( min, max );
167   spinBox->setSingleStep( step );
168
169   // Add a hint for the user saying how to tune precision
170   QString userPropName = QObject::tr( QString( "GEOM_PREF_%1" ).arg( quantity ).toLatin1().constData() );
171   spinBox->setProperty( "validity_tune_hint",
172                         QVariant( QObject::tr( "GEOM_PRECISION_HINT" ).arg( userPropName ) ) );
173 }
174
175 //=================================================================================
176 // function : updateAttributes()
177 // purpose  : Workaround for Translation and Rotation operations with unchecked option "Create a copy".
178 //            In this case PublishInStudy isn't called, so we need to update object's attributes manually
179 //=================================================================================
180 void MyGEOMBase_Skeleton::updateAttributes( GEOM::GEOM_Object_ptr theObj,
181                                           const QStringList& theParameters)
182 {
183   SALOMEDS::Study_var aStudy = GeometryGUI::ClientStudyToStudy(getStudy()->studyDS());
184   SALOMEDS::StudyBuilder_var aStudyBuilder = aStudy->NewBuilder();
185   SALOMEDS::SObject_var aSObject = aStudy->FindObjectID(theObj->GetStudyEntry());
186   SALOMEDS::GenericAttribute_var anAttr = aStudyBuilder->FindOrCreateAttribute(aSObject, "AttributeString");
187   SALOMEDS::AttributeString_var aStringAttrib = SALOMEDS::AttributeString::_narrow(anAttr);
188
189   std::string aValue = aStringAttrib->Value();
190   if( aValue != "" )
191     aValue += "|";
192   for( int i = 0, n = theParameters.count(); i < n; i++ ) {
193     std::string aParameter = theParameters[i].toStdString();
194     if(aStudy->IsVariable(aParameter.c_str()))
195       aValue += aParameter;
196     if(i != n-1)
197       aValue += ":";
198   }
199   aStringAttrib->SetValue(aValue.c_str());
200 }
201
202 //=================================================================================
203 // function : ClickOnCancel()
204 // purpose  :
205 //=================================================================================
206 void MyGEOMBase_Skeleton::ClickOnCancel()
207 {
208   close();
209 }
210
211 //=================================================================================
212 // function : LineEditReturnPressed()
213 // purpose  :
214 //=================================================================================
215 void MyGEOMBase_Skeleton::LineEditReturnPressed()
216 {
217   if (!myEditCurrentArgument)
218     return;
219
220   /* User name of object input management                          */
221   /* If successfull the selection is changed and signal emitted... */
222   /* so SelectionIntoArgument() is automatically called.           */
223   const QString objectUserName = myEditCurrentArgument->text();
224   QWidget* thisWidget = (QWidget*)this;
225
226   SALOME_ListIO aList;
227   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
228   if (aSelMgr)
229     aSelMgr->selectedObjects(aList);
230   if (GEOMBase::SelectionByNameInDialogs(thisWidget, objectUserName, aList))
231     myEditCurrentArgument->setText(objectUserName);
232 }
233
234 //=================================================================================
235 // function : DeactivateActiveDialog()
236 // purpose  :
237 //=================================================================================
238 void MyGEOMBase_Skeleton::DeactivateActiveDialog()
239 {
240   this->setEnabled( false );
241   globalSelection();
242   if ( myGeomGUI ) {
243     myGeomGUI->SetActiveDialogBox( 0 );
244     disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
245   }
246   erasePreview();
247 }
248
249 //=================================================================================
250 // function : ActivateThisDialog()
251 // purpose  :
252 //=================================================================================
253 void MyGEOMBase_Skeleton::ActivateThisDialog()
254 {
255   /* Emit a signal to deactivate the active dialog */
256   if ( myGeomGUI ) myGeomGUI->EmitSignalDeactivateDialog();
257   this->setEnabled( true );
258   if ( myGeomGUI ) myGeomGUI->SetActiveDialogBox( (QDialog*)this );
259   return;
260 }
261
262 //=================================================================================
263 // function : closeEvent()
264 // purpose  : same than click on cancel button
265 //=================================================================================
266 void MyGEOMBase_Skeleton::closeEvent( QCloseEvent* e )
267 {
268   if ( myGeomGUI ) {
269     disconnect( myGeomGUI->getApp()->selectionMgr(), 0, this, 0 );
270     myGeomGUI->getApp()->updateActions();
271   }
272   QDialog::closeEvent( e );
273 }
274
275 //=================================================================================
276 // function : initName()
277 // purpose  : initialize the Name field with a string "thePrefix_X" (Vertex_3)
278 //=================================================================================
279 void MyGEOMBase_Skeleton::initName( const QString& thePrefix )
280 {
281   if ( !thePrefix.isNull() )
282     setPrefix( thePrefix );
283   myMainFrame->ResultName->setText( GEOMBase::GetDefaultName( getPrefix() ) );
284 }
285
286 //=================================================================================
287 // function : getNewObjectName()
288 // purpose  : returns contents of Name field
289 //=================================================================================
290 QString MyGEOMBase_Skeleton::getNewObjectName() const
291 {
292   return myMainFrame->ResultName->text();
293 }
294
295 //=================================================================================
296 // function : getConstructorId()
297 // purpose  :
298 //=================================================================================
299 int MyGEOMBase_Skeleton::getConstructorId() const
300 {
301   if ( myRBGroup )
302     return myRBGroup->checkedId();
303   return -1;
304 }
305
306 //=================================================================================
307 // function : setConstructorId( id )
308 // purpose  :
309 //=================================================================================
310 void MyGEOMBase_Skeleton::setConstructorId( const int id )
311 {
312   if ( myRBGroup && myRBGroup->button( id ) )
313     myRBGroup->button( id )->setChecked( true );
314 }
315
316 //=================================================================================
317 // function : unsetConstructorId
318 // purpose  :
319 //=================================================================================
320 void MyGEOMBase_Skeleton::unsetConstructorId()
321 {
322   // 0020428: EDF 906 GEOM : Performance for Group creation in GEOM
323   // uncheck all buttons
324   // workaround, because setChecked( false ) does not result in Qt4
325   bool isExclusive = myRBGroup->exclusive();
326   myRBGroup->setExclusive( false );
327   QList<QAbstractButton*> btnList = myRBGroup->buttons();
328   for ( int j = 0; j < 2; j++ )
329   {
330     QList<QAbstractButton*>::const_iterator it = btnList.constBegin();
331     for ( ; it != btnList.constEnd(); ++it )
332       (*it)->setCheckable( j == 1 );
333   }
334   myRBGroup->setExclusive( isExclusive );
335 }
336
337 //=================================================================================
338 // function : ClickOnHelp()
339 // purpose  :
340 //=================================================================================
341 void MyGEOMBase_Skeleton::ClickOnHelp()
342 {
343   LightApp_Application* app = (LightApp_Application*)( SUIT_Session::session()->activeApplication() );
344   if ( app )
345     app->onHelpContextModule( myGeomGUI ? app->moduleName( myGeomGUI->moduleName() ) : QString(""), myHelpFileName );
346   else {
347     QString platform;
348 #ifdef WIN32
349     platform = "winapplication";
350 #else
351     platform = "application";
352 #endif
353     SUIT_MessageBox::warning( 0, QObject::tr( "WRN_WARNING" ),
354                               QObject::tr( "EXTERNAL_BROWSER_CANNOT_SHOW_PAGE" ).
355                               arg( app->resourceMgr()->stringValue( "ExternalBrowser", platform ) ).arg( myHelpFileName ),
356                               QObject::tr( "BUT_OK" ) );
357   }
358 }
359
360 //=================================================================================
361 //  function : setHelpFileName()
362 //  purpose  : set name for help file html
363 //=================================================================================
364 void MyGEOMBase_Skeleton::setHelpFileName( const QString& theName )
365 {
366   myHelpFileName = theName;
367 }
368
369 MyDlgRef_Skeleton* MyGEOMBase_Skeleton::mainFrame()
370 {
371   return myMainFrame;
372 }
373
374 QWidget* MyGEOMBase_Skeleton::centralWidget()
375 {
376   return myMainFrame->GroupMedium;
377 }
378
379 QPushButton* MyGEOMBase_Skeleton::buttonCancel() const
380 {
381   return myMainFrame->buttonCancel;
382 }
383
384 /*QPushButton* MyGEOMBase_Skeleton::buttonOk() const
385 {
386   return myMainFrame->buttonOk;
387 }*/
388
389 QPushButton* MyGEOMBase_Skeleton::buttonApply() const
390 {
391   return myMainFrame->buttonApply;
392 }
393
394 QPushButton* MyGEOMBase_Skeleton::buttonHelp() const
395 {
396   return myMainFrame->buttonHelp;
397 }
398
399 //=================================================================================
400 // function : keyPressEvent()
401 // purpose  :
402 //=================================================================================
403 void MyGEOMBase_Skeleton::keyPressEvent( QKeyEvent* e )
404 {
405   QDialog::keyPressEvent( e );
406   if ( e->isAccepted() )
407     return;
408
409   if ( e->key() == Qt::Key_F1 ) {
410     e->accept();
411     ClickOnHelp();
412   }
413 }
414
415
416 //=================================================================================
417 // function : showOnlyPreviewControl()
418 // purpose  : display only CheckBoxPreview check box,
419 //            hide CheckBoxRestoreSS and CheckBoxAddPrefix
420 //=================================================================================
421 void MyGEOMBase_Skeleton::showOnlyPreviewControl(){
422   mainFrame()->GroupBoxPublish->show();
423   mainFrame()->CheckBoxRestoreSS->hide();
424   mainFrame()->CheckBoxAddPrefix->hide();
425 }
426
427 //=================================================================================
428 // function : processPreview()
429 // purpose  : Display preview if CheckBoxPreview is checked
430 //=================================================================================
431 void MyGEOMBase_Skeleton::processPreview() {
432   displayPreview(mainFrame()->CheckBoxPreview->isChecked());
433 }