Salome HOME
Implementation of the "21187: EDF 1137 GEOM: Performance issue when manipulating...
[modules/geom.git] / src / BlocksGUI / BlocksGUI_BlockDlg.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : BlocksGUI_BlockDlg.cxx
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S. (julia.dorovskikh@opencascade.com)
26 //
27 #include "BlocksGUI_BlockDlg.h"
28
29 #include <DlgRef.h>
30 #include <GeometryGUI.h>
31 #include <GEOMBase.h>
32
33 #include <SUIT_Session.h>
34 #include <SUIT_ResourceMgr.h>
35 #include <SalomeApp_Application.h>
36 #include <LightApp_SelectionMgr.h>
37
38 #include <GEOMImpl_Types.hxx>
39
40 // OCCT Includes
41 #include <TColStd_IndexedMapOfInteger.hxx>
42
43 //=================================================================================
44 // class    : BlocksGUI_BlockDlg()
45 // purpose  : Constructs a BlocksGUI_BlockDlg which is a child of 'parent'.
46 //=================================================================================
47 BlocksGUI_BlockDlg::BlocksGUI_BlockDlg (GeometryGUI* theGeometryGUI, QWidget* parent)
48   : GEOMBase_Skeleton(theGeometryGUI, parent),
49     myInitial(true)
50 {
51   QPixmap image0 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_BLOCK_2F")));
52   QPixmap image1 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_BLOCK_6F")));
53   QPixmap imageS (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
54
55   setWindowTitle(tr("GEOM_BLOCK_TITLE"));
56
57   /***************************************************************/
58   mainFrame()->GroupConstructors->setTitle(tr("GEOM_BLOCK"));
59
60   mainFrame()->RadioButton1->setIcon(image0);
61   mainFrame()->RadioButton2->setIcon(image1);
62   mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
63   mainFrame()->RadioButton3->close();
64
65   // Create first group
66   Group2F = new DlgRef_2Sel (centralWidget());
67   Group2F->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
68   Group2F->TextLabel1->setText(tr("FACE_1"));
69   Group2F->TextLabel2->setText(tr("FACE_2"));
70   Group2F->PushButton1->setIcon(imageS);
71   Group2F->PushButton2->setIcon(imageS);
72
73   // Create second group
74   Group6F = new DlgRef_6Sel (centralWidget());
75   Group6F->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
76   Group6F->TextLabel1->setText(tr("FACE_1"));
77   Group6F->TextLabel2->setText(tr("FACE_2"));
78   Group6F->TextLabel3->setText(tr("FACE_3"));
79   Group6F->TextLabel4->setText(tr("FACE_4"));
80   Group6F->TextLabel5->setText(tr("FACE_5"));
81   Group6F->TextLabel6->setText(tr("FACE_6"));
82   Group6F->PushButton1->setIcon(imageS);
83   Group6F->PushButton2->setIcon(imageS);
84   Group6F->PushButton3->setIcon(imageS);
85   Group6F->PushButton4->setIcon(imageS);
86   Group6F->PushButton5->setIcon(imageS);
87   Group6F->PushButton6->setIcon(imageS);
88
89   // Add groups to layout
90   QVBoxLayout* layout = new QVBoxLayout (centralWidget());
91   layout->setMargin(0);
92   layout->setSpacing(6);
93   layout->addWidget(Group2F);
94   layout->addWidget(Group6F);
95   /***************************************************************/
96
97   setHelpFileName("build_by_blocks_page.html#hexa_solid_anchor");
98
99   Init();
100 }
101
102 //=================================================================================
103 // function : ~BlocksGUI_BlockDlg()
104 // purpose  : Destroys the object and frees any allocated resources
105 //=================================================================================
106 BlocksGUI_BlockDlg::~BlocksGUI_BlockDlg()
107 {
108   // no need to delete child widgets, Qt does it all for us
109 }
110
111 //=================================================================================
112 // function : Init()
113 // purpose  :
114 //=================================================================================
115 void BlocksGUI_BlockDlg::Init()
116 {
117   // init variables
118   Group2F->LineEdit1->setReadOnly(true);
119   Group2F->LineEdit2->setReadOnly(true);
120
121   Group6F->LineEdit1->setReadOnly(true);
122   Group6F->LineEdit2->setReadOnly(true);
123   Group6F->LineEdit3->setReadOnly(true);
124   Group6F->LineEdit4->setReadOnly(true);
125   Group6F->LineEdit5->setReadOnly(true);
126   Group6F->LineEdit6->setReadOnly(true);
127
128   // signals and slots connections
129   connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
130   connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
131
132   connect(this, SIGNAL(constructorsClicked(int)), this, SLOT(ConstructorsClicked(int)));
133
134   connect(Group2F->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
135   connect(Group2F->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
136
137   connect(Group6F->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
138   connect(Group6F->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
139   connect(Group6F->PushButton3, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
140   connect(Group6F->PushButton4, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
141   connect(Group6F->PushButton5, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
142   connect(Group6F->PushButton6, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
143
144   // init controls and fields
145   initName(tr("GEOM_BLOCK"));
146
147   myConstructorId = -1;
148   ConstructorsClicked(0);
149 }
150
151 //=================================================================================
152 // function : ConstructorsClicked()
153 // purpose  : Radio button management
154 //=================================================================================
155 void BlocksGUI_BlockDlg::ConstructorsClicked (int constructorId)
156 {
157   if (myConstructorId == constructorId)
158     return;
159
160   myConstructorId = constructorId;
161
162   // init fields
163   myFace1.nullify();
164   myFace2.nullify();
165   myFace3.nullify();
166   myFace4.nullify();
167   myFace5.nullify();
168   myFace6.nullify();
169
170   switch (constructorId) {
171   case 0:
172     Group6F->hide();
173     Group2F->show();
174
175     Group2F->LineEdit1->setText(tr(""));
176     Group2F->LineEdit2->setText(tr(""));
177
178     Group2F->PushButton1->click();
179     break;
180   case 1:
181     Group2F->hide();
182     Group6F->show();
183
184     Group6F->LineEdit1->setText(tr(""));
185     Group6F->LineEdit2->setText(tr(""));
186     Group6F->LineEdit3->setText(tr(""));
187     Group6F->LineEdit4->setText(tr(""));
188     Group6F->LineEdit5->setText(tr(""));
189     Group6F->LineEdit6->setText(tr(""));
190
191     Group6F->PushButton1->click();
192     break;
193   default:
194     break;
195   }
196
197   qApp->processEvents();
198   updateGeometry();
199   resize(minimumSizeHint());
200
201   // on dialog initialization we init the first field with a selected object (if any)
202   SelectionIntoArgument();
203 }
204
205 //=================================================================================
206 // function : ClickOnOk()
207 // purpose  :
208 //=================================================================================
209 void BlocksGUI_BlockDlg::ClickOnOk()
210 {
211   if (ClickOnApply())
212     ClickOnCancel();
213 }
214
215 //=================================================================================
216 // function : ClickOnApply()
217 // purpose  :
218 //=================================================================================
219 bool BlocksGUI_BlockDlg::ClickOnApply()
220 {
221   if (!onAccept())
222     return false;
223
224   initName();
225   return true;
226 }
227
228 //=================================================================================
229 // function : SelectionIntoArgument()
230 // purpose  : Called when selection is changed or on dialog initialization or activation
231 //=================================================================================
232 void BlocksGUI_BlockDlg::SelectionIntoArgument()
233 {
234   erasePreview();
235
236   GEOM::GeomObjPtr aSelectedObject = getSelected( TopAbs_FACE );
237   TopoDS_Shape aShape;
238   if ( aSelectedObject && GEOMBase::GetShape( aSelectedObject.get(), aShape ) && !aShape.IsNull() ) {
239     QString aName = GEOMBase::GetName( aSelectedObject.get() );
240     myEditCurrentArgument->setText( aName );
241     if ( myEditCurrentArgument == Group2F->LineEdit1 ) {
242       myFace1 = aSelectedObject;
243       if (!myFace2) Group2F->PushButton2->click();
244     }
245     else if ( myEditCurrentArgument == Group2F->LineEdit2 ) {
246       myFace2 = aSelectedObject;
247       if (!myFace1) Group2F->PushButton1->click();
248     }
249     else if ( myEditCurrentArgument == Group6F->LineEdit1 ) {
250       myFace1 = aSelectedObject;
251       if      (!myFace2) Group6F->PushButton2->click();
252       else if (!myFace3) Group6F->PushButton3->click();
253       else if (!myFace4) Group6F->PushButton4->click();
254       else if (!myFace5) Group6F->PushButton5->click();
255       else if (!myFace6) Group6F->PushButton6->click();
256     }
257     else if ( myEditCurrentArgument == Group6F->LineEdit2 ) {
258       myFace2 = aSelectedObject;
259       if      (!myFace3) Group6F->PushButton3->click();
260       else if (!myFace4) Group6F->PushButton4->click();
261       else if (!myFace5) Group6F->PushButton5->click();
262       else if (!myFace6) Group6F->PushButton6->click();
263       else if (!myFace1) Group6F->PushButton1->click();
264     }
265     else if ( myEditCurrentArgument == Group6F->LineEdit3 ) {
266       myFace3 = aSelectedObject;
267       if      (!myFace4) Group6F->PushButton4->click();
268       else if (!myFace5) Group6F->PushButton5->click();
269       else if (!myFace6) Group6F->PushButton6->click();
270       else if (!myFace1) Group6F->PushButton1->click();
271       else if (!myFace2) Group6F->PushButton2->click();
272     }
273     else if ( myEditCurrentArgument == Group6F->LineEdit4 ) {
274       myFace4 = aSelectedObject;
275       if      (!myFace5) Group6F->PushButton5->click();
276       else if (!myFace6) Group6F->PushButton6->click();
277       else if (!myFace1) Group6F->PushButton1->click();
278       else if (!myFace2) Group6F->PushButton2->click();
279       else if (!myFace3) Group6F->PushButton3->click();
280     }
281     else if ( myEditCurrentArgument == Group6F->LineEdit5 ) {
282       myFace5 = aSelectedObject;
283       if      (!myFace6) Group6F->PushButton6->click();
284       else if (!myFace1) Group6F->PushButton1->click();
285       else if (!myFace2) Group6F->PushButton2->click();
286       else if (!myFace3) Group6F->PushButton3->click();
287       else if (!myFace4) Group6F->PushButton4->click();
288     }
289     else if ( myEditCurrentArgument == Group6F->LineEdit6 ) {
290       myFace6 = aSelectedObject;
291       if      (!myFace1) Group6F->PushButton1->click();
292       else if (!myFace2) Group6F->PushButton2->click();
293       else if (!myFace3) Group6F->PushButton3->click();
294       else if (!myFace4) Group6F->PushButton4->click();
295       else if (!myFace5) Group6F->PushButton5->click();
296     }
297   }
298   else {
299     if      (myEditCurrentArgument == Group2F->LineEdit1) myFace1.nullify();
300     else if (myEditCurrentArgument == Group2F->LineEdit2) myFace2.nullify();
301     else if (myEditCurrentArgument == Group6F->LineEdit1) myFace1.nullify();
302     else if (myEditCurrentArgument == Group6F->LineEdit2) myFace2.nullify();
303     else if (myEditCurrentArgument == Group6F->LineEdit3) myFace3.nullify();
304     else if (myEditCurrentArgument == Group6F->LineEdit4) myFace4.nullify();
305     else if (myEditCurrentArgument == Group6F->LineEdit5) myFace5.nullify();
306     else if (myEditCurrentArgument == Group6F->LineEdit6) myFace6.nullify();
307     myEditCurrentArgument->setText( "" );
308   }
309
310   displayPreview(true);
311 }
312
313 //=================================================================================
314 // function : SetEditCurrentArgument()
315 // purpose  :
316 //=================================================================================
317 void BlocksGUI_BlockDlg::SetEditCurrentArgument()
318 {
319   QPushButton* aSender = (QPushButton*)sender();
320
321   // clear selection
322   disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
323   if (myInitial)
324     myInitial = false;
325   else
326     myGeomGUI->getApp()->selectionMgr()->clearSelected();
327
328   // disable all
329   switch (myConstructorId) {
330   case 0:
331     Group2F->PushButton1->setDown(false);
332     Group2F->PushButton2->setDown(false);
333
334     Group2F->LineEdit1->setEnabled(false);
335     Group2F->LineEdit2->setEnabled(false);
336     break;
337   case 1:
338     Group6F->PushButton1->setDown(false);
339     Group6F->PushButton2->setDown(false);
340     Group6F->PushButton3->setDown(false);
341     Group6F->PushButton4->setDown(false);
342     Group6F->PushButton5->setDown(false);
343     Group6F->PushButton6->setDown(false);
344
345     Group6F->LineEdit1->setEnabled(false);
346     Group6F->LineEdit2->setEnabled(false);
347     Group6F->LineEdit3->setEnabled(false);
348     Group6F->LineEdit4->setEnabled(false);
349     Group6F->LineEdit5->setEnabled(false);
350     Group6F->LineEdit6->setEnabled(false);
351     break;
352   default:
353     break;
354   }
355
356   // set line edit as current argument
357   if (aSender == Group2F->PushButton1) {
358     myEditCurrentArgument = Group2F->LineEdit1;
359   }
360   else if (aSender == Group2F->PushButton2) {
361     myEditCurrentArgument = Group2F->LineEdit2;
362   }
363   else if (aSender == Group6F->PushButton1) {
364     myEditCurrentArgument = Group6F->LineEdit1;
365   }
366   else if (aSender == Group6F->PushButton2) {
367     myEditCurrentArgument = Group6F->LineEdit2;
368   }
369   else if (aSender == Group6F->PushButton3) {
370     myEditCurrentArgument = Group6F->LineEdit3;
371   }
372   else if (aSender == Group6F->PushButton4) {
373     myEditCurrentArgument = Group6F->LineEdit4;
374   }
375   else if (aSender == Group6F->PushButton5) {
376     myEditCurrentArgument = Group6F->LineEdit5;
377   }
378   else if (aSender == Group6F->PushButton6) {
379     myEditCurrentArgument = Group6F->LineEdit6;
380   }
381
382   // enable push button and line edit
383   myEditCurrentArgument->setEnabled(true);
384   myEditCurrentArgument->setFocus();
385   // after setFocus(), because it will be setDown(false) when loses focus
386   aSender->setDown(true);
387
388   globalSelection(); // close local contexts, if any
389   localSelection(GEOM::GEOM_Object::_nil(), TopAbs_FACE); //Select Faces on All Shapes
390   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
391           this, SLOT(SelectionIntoArgument()));
392 }
393
394 //=================================================================================
395 // function : ActivateThisDialog()
396 // purpose  :
397 //=================================================================================
398 void BlocksGUI_BlockDlg::ActivateThisDialog()
399 {
400   GEOMBase_Skeleton::ActivateThisDialog();
401   globalSelection(); // close local contexts, if any
402   localSelection(GEOM::GEOM_Object::_nil(), TopAbs_FACE); //Select Faces on All Shapes
403   connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
404           this, SLOT(SelectionIntoArgument()));
405   displayPreview(true);
406 }
407
408 //=================================================================================
409 // function : enterEvent()
410 // purpose  :
411 //=================================================================================
412 void BlocksGUI_BlockDlg::enterEvent (QEvent*)
413 {
414   if (!mainFrame()->GroupConstructors->isEnabled())
415     ActivateThisDialog();
416 }
417
418 //=================================================================================
419 // function : createOperation
420 // purpose  :
421 //=================================================================================
422 GEOM::GEOM_IOperations_ptr BlocksGUI_BlockDlg::createOperation()
423 {
424   return getGeomEngine()->GetIBlocksOperations(getStudyId());
425 }
426
427 //=================================================================================
428 // function : isValid
429 // purpose  :
430 //=================================================================================
431 bool BlocksGUI_BlockDlg::isValid(QString&)
432 {
433   bool ok = false;
434   switch (getConstructorId()) {
435   case 0:
436     ok = myFace1 && myFace2;
437     break;
438   case 1:
439     ok = myFace1 && myFace2 && myFace3 && myFace4 && myFace5 && myFace6;
440     break;
441   default:
442     break;
443   }
444   return ok;
445 }
446
447 //=================================================================================
448 // function : execute
449 // purpose  :
450 //=================================================================================
451 bool BlocksGUI_BlockDlg::execute (ObjectList& objects)
452 {
453   bool res = false;
454
455   GEOM::GEOM_Object_var anObj;
456
457   GEOM::GEOM_IBlocksOperations_var anOper = GEOM::GEOM_IBlocksOperations::_narrow(getOperation());
458
459   switch (getConstructorId()) {
460   case 0:
461     if ( myFace1 && myFace2 ) {
462       anObj = anOper->MakeHexa2Faces(myFace1.get(), myFace2.get());
463       res = true;
464     }
465     break;
466   case 1:
467     if ( myFace1 && myFace2 && myFace3 && myFace4 && myFace5 && myFace6 ) {
468       anObj = anOper->MakeHexa(myFace1.get(), myFace2.get(), myFace3.get(), myFace4.get(), myFace5.get(), myFace6.get());
469       res = true;
470     }
471     break;
472   }
473
474   if (!anObj->_is_nil())
475     objects.push_back(anObj._retn());
476
477   return res;
478 }
479
480 //=================================================================================
481 // function : addSubshapesToStudy
482 // purpose  : virtual method to add new SubObjects if local selection
483 //=================================================================================
484 void BlocksGUI_BlockDlg::addSubshapesToStudy()
485 {
486   switch (getConstructorId()) {
487   case 0:
488     GEOMBase::PublishSubObject( myFace1.get() );
489     GEOMBase::PublishSubObject( myFace2.get() );
490     break;
491   case 1:
492     GEOMBase::PublishSubObject( myFace1.get() );
493     GEOMBase::PublishSubObject( myFace2.get() );
494     GEOMBase::PublishSubObject( myFace3.get() );
495     GEOMBase::PublishSubObject( myFace4.get() );
496     GEOMBase::PublishSubObject( myFace5.get() );
497     GEOMBase::PublishSubObject( myFace6.get() );
498     break;
499   default:
500     break;
501   }
502 }