Salome HOME
2e1340d4d149b518a4a3d62722e5e401a6d07338
[plugins/hexoticplugin.git] / src / GUI / HexoticPluginGUI_HypothesisCreator.cxx
1 // Copyright (C) 2007-2019  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, or (at your option) any later version.
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 // ---
21 // File   : HexoticPluginGUI_HypothesisCreator.cxx
22 // Author : Lioka RAZAFINDRAZAKA (CEA)
23 // ---
24 //
25 #include "HexoticPluginGUI_HypothesisCreator.h"
26 #include "HexoticPluginGUI_Dlg.h"
27
28 #include <SMESHGUI_Utils.h>
29 #include <SMESHGUI_HypothesesUtils.h>
30 #include <SMESH_NumberFilter.hxx>
31 #include <SMESH_AdvOptionsWdg.h>
32
33 #include "utilities.h"
34
35 #include <SUIT_Session.h>
36 #include <SUIT_ResourceMgr.h>
37 #include <SUIT_MessageBox.h>
38 #include <SUIT_FileDlg.h>
39 #include <SalomeApp_Tools.h>
40 #include <QtxIntSpinBox.h>
41
42 #include <QFrame>
43 #include <QGroupBox>
44 #include <QVBoxLayout>
45 #include <QGridLayout>
46 #include <QLineEdit>
47 #include <QLabel>
48 #include <QCheckBox>
49 #include <QPushButton>
50
51 #include "SMESH_Gen_i.hxx"
52
53 // OCC includes
54 #include <TColStd_MapOfInteger.hxx>
55 #include <TopAbs.hxx>
56
57 // Main widget tabs identification
58 enum {
59   STD_TAB = 0,
60   ADV_TAB,
61   SMP_TAB,
62   VL_TAB
63 };
64
65 // Size maps tab, table columns order
66 enum {
67   ENTRY_COL = 0,
68   NAME_COL,
69   SIZE_COL
70 };
71
72 //
73 // Size map table widget delegate
74 //
75
76 SizeMapsTableWidgetDelegate::SizeMapsTableWidgetDelegate(QObject *parent)
77      : QItemDelegate(parent)
78 {
79 }
80
81 QWidget* SizeMapsTableWidgetDelegate::createEditor(QWidget *parent,
82                                                    const QStyleOptionViewItem &/* option */,
83                                                    const QModelIndex &/* index */) const
84 {
85   SMESHGUI_SpinBox *editor = new SMESHGUI_SpinBox(parent);
86   editor->RangeStepAndValidator(0.0, COORD_MAX, 10.0, "length_precision");
87   return editor;
88 }
89
90 void SizeMapsTableWidgetDelegate::setEditorData(QWidget *editor,
91                                                 const QModelIndex &index) const
92 {
93   double value = index.model()->data(index, Qt::EditRole).toDouble();
94   SMESHGUI_SpinBox *spinBox = static_cast<SMESHGUI_SpinBox*>(editor);
95   spinBox->setValue(value);
96 }
97
98 void SizeMapsTableWidgetDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
99                                                const QModelIndex &index) const
100 {
101   SMESHGUI_SpinBox *spinBox = static_cast<SMESHGUI_SpinBox*>(editor);
102   spinBox->interpretText();
103   double value = spinBox->value();
104   if ( value == 0 ) 
105     SUIT_MessageBox::critical( spinBox, tr( "SMESH_ERROR" ), tr( "Hexotic_NULL_LOCAL_SIZE" ) ); 
106   else
107     model->setData(index, value, Qt::EditRole);
108 }
109
110 void SizeMapsTableWidgetDelegate::updateEditorGeometry(QWidget *editor,
111                                                        const QStyleOptionViewItem &option, 
112                                                        const QModelIndex &/* index */) const
113 {
114   editor->setGeometry(option.rect);
115 }
116
117 // END Delegate
118
119
120
121 HexoticPluginGUI_HypothesisCreator::HexoticPluginGUI_HypothesisCreator( const QString& theHypType )
122   : SMESHGUI_GenericHypothesisCreator( theHypType ),
123     myIs3D( true ),
124     mySizeMapsToRemove()
125 {
126 }
127
128 HexoticPluginGUI_HypothesisCreator::~HexoticPluginGUI_HypothesisCreator()
129 {
130 }
131
132 bool HexoticPluginGUI_HypothesisCreator::checkParams(QString& msg) const
133 {
134   msg.clear();
135
136   HexoticPlugin::HexoticPlugin_Hypothesis_var h =
137     HexoticPlugin::HexoticPlugin_Hypothesis::_narrow( hypothesis() );
138
139   myAdvWidget->myOptionTable->setFocus();
140   QApplication::instance()->processEvents();
141
142   QString name, value;
143   bool isDefault, ok = true;
144   int iRow = 0, nbRows = myAdvWidget->myOptionTable->topLevelItemCount();
145   for ( ; iRow < nbRows; ++iRow )
146   {
147     QTreeWidgetItem* row = myAdvWidget->myOptionTable->topLevelItem( iRow );
148     myAdvWidget->GetOptionAndValue( row, name, value, isDefault );
149
150     if ( name.simplified().isEmpty() )
151       continue; // invalid custom option
152
153     if ( isDefault ) // not selected option
154       value.clear();
155
156     try {
157       h->SetOptionValue( name.toLatin1().constData(), value.toLatin1().constData() );
158     }
159     catch ( const SALOME::SALOME_Exception& ex )
160     {
161       msg = ex.details.text.in();
162       ok = false;
163       break;
164     }
165   }
166
167   if ( !ok )
168   {
169     h->SetOptionValues( myOptions ); // restore values
170     return false;
171   }
172
173   HexoticHypothesisData data_old, data_new;
174   readParamsFromHypo( data_old ); // new values of advanced options ( myOptions ) are read
175
176   bool res = readParamsFromWidgets( data_new );
177   if ( !res ){
178     return res;
179   }
180
181   
182   res = data_old.myMinSize <= data_old.myMaxSize;
183   if ( !res ) {
184     msg = tr(QString("Min size (%1) is higher than max size (%2)").arg(data_old.myMinSize).arg(data_old.myMaxSize).toStdString().c_str());
185     return res;
186   }
187
188   res = data_old.myHexesMinLevel == 0  || \
189       ( data_old.myHexesMinLevel != 0  && (data_old.myHexesMinLevel < data_old.myHexesMaxLevel) );
190   if ( !res ) {
191     msg = tr(QString("Min hexes level (%1) is higher than max hexes level (%2)").arg(data_old.myHexesMinLevel).arg(data_old.myHexesMaxLevel).toStdString().c_str());
192     return res;
193   }
194
195   res = storeParamsToHypo( data_new );
196   if ( !res ) {
197     storeParamsToHypo( data_old );
198     return res;
199   }
200
201   return true;
202 }
203
204 QFrame* HexoticPluginGUI_HypothesisCreator::buildFrame()
205 {
206   QFrame* fr = new QFrame( 0 );
207   QVBoxLayout* lay = new QVBoxLayout( fr );
208   lay->setMargin( 0 );
209   lay->setSpacing( 6 );
210
211   // main TabWidget of the dialog
212   QTabWidget* aTabWidget = new QTabWidget( fr );
213   aTabWidget->setTabShape( QTabWidget::Rounded );
214   aTabWidget->setTabPosition( QTabWidget::North );
215   lay->addWidget( aTabWidget );
216
217   // Standard arguments tab
218   QWidget* aStdGroup = new QWidget();
219   QGridLayout* l = new QGridLayout( aStdGroup );
220   l->setSpacing( 6 );
221   l->setMargin( 11 );
222
223   int row = 0;
224   myName = 0;
225   if( isCreation() ) {
226     l->addWidget( new QLabel( tr( "SMESH_NAME" ), aStdGroup ), row, 0, 1, 1 );
227     myName = new QLineEdit( aStdGroup );
228     l->addWidget( myName, row++, 1, 1, 2 );
229     myName->setMinimumWidth( 150 );
230   }
231
232   myStdWidget = new HexoticPluginGUI_StdWidget(aStdGroup);
233 #ifdef WIN32
234   myStdWidget->label_6->hide();
235   myStdWidget->myHexoticNbProc->hide();
236 #endif
237   l->addWidget( myStdWidget, row++, 0, 1, 3 );
238   myStdWidget->onSdModeSelected(SD_MODE_4);
239   //myStdWidget->gridLayout->setRowStretch( 1, 2 );
240
241   // Advanced TAB
242   myAdvWidget = new HexoticPluginGUI_AdvWidget( aTabWidget );
243   //myAdvWidget->gridLayout->setRowStretch( 0, 2 );
244
245   // SIZE MAPS TAB
246   mySmpWidget = new HexoticPluginGUI_SizeMapsWidget( aTabWidget );
247   mySmpWidget->doubleSpinBox->RangeStepAndValidator(0.0, COORD_MAX, 1.0, "length_precision");
248   mySmpWidget->doubleSpinBox->setValue(0.0);
249
250   // Filters of selection
251   TColStd_MapOfInteger SM_ShapeTypes;
252   SM_ShapeTypes.Add( TopAbs_VERTEX );
253   SM_ShapeTypes.Add( TopAbs_EDGE );
254   SM_ShapeTypes.Add( TopAbs_WIRE );
255   SM_ShapeTypes.Add( TopAbs_FACE );
256   SM_ShapeTypes.Add( TopAbs_SOLID );
257   SM_ShapeTypes.Add( TopAbs_COMPOUND );
258   SMESH_NumberFilter* aFilter = new SMESH_NumberFilter("GEOM", TopAbs_SHAPE, 0, SM_ShapeTypes);
259
260   // Selection widget
261   myGeomSelWdg = new StdMeshersGUI_ObjectReferenceParamWdg( aFilter, mySmpWidget, /*multiSel=*/false);
262   myGeomSelWdg->SetDefaultText(tr("Hexotic_SEL_SHAPE"), "QLineEdit { color: grey }");
263   mySmpWidget->gridLayout->addWidget(myGeomSelWdg, 0, 1);
264
265   // Configuration of the table widget
266   QStringList headerLabels;
267   headerLabels << tr("Hexotic_ENTRY")<< tr("Hexotic_NAME")<< tr("Hexotic_SIZE");
268   mySmpWidget->tableWidget->setHorizontalHeaderLabels(headerLabels);
269   mySmpWidget->tableWidget->resizeColumnsToContents();
270   mySmpWidget->tableWidget->hideColumn( 0 );
271   mySmpWidget->label->setText(tr("LOCAL_SIZE"));
272   mySmpWidget->pushButton_1->setText(tr("Hexotic_ADD"));
273   mySmpWidget->pushButton_2->setText(tr("Hexotic_REMOVE"));
274
275   // Setting a custom delegate for the size column
276   SizeMapsTableWidgetDelegate* delegate = new SizeMapsTableWidgetDelegate();
277   mySmpWidget->tableWidget->setItemDelegateForColumn(SIZE_COL, delegate);
278
279
280   // Viscous Layers tab
281
282   // Viscous layers widget creation and initialisation
283   myVLWidget = new HexoticPluginGUI_ViscousLayersWidget( aTabWidget );
284
285   QString aMainEntry = SMESHGUI_GenericHypothesisCreator::getMainShapeEntry();
286   QString aSubEntry  = SMESHGUI_GenericHypothesisCreator::getShapeEntry();
287
288   if ( !aMainEntry.isEmpty() )
289   {
290     myVLWidget->myFacesWithLayers->SetGeomShapeEntry( aSubEntry, aMainEntry );
291     myVLWidget->myImprintedFaces->SetGeomShapeEntry( aSubEntry, aMainEntry );
292   }
293   else
294   {
295     myVLWidget->labelFacesWithLayers->setVisible(false);
296     myVLWidget->myFacesWithLayers->setVisible(false);
297     myVLWidget->labelImprintedFaces->setVisible(false);
298     myVLWidget->myImprintedFaces->setVisible(false);
299   }
300
301   aTabWidget->insertTab( STD_TAB, aStdGroup,   tr( "SMESH_ARGUMENTS" ));
302   aTabWidget->insertTab( ADV_TAB, myAdvWidget, tr( "SMESH_ADVANCED" ));
303   aTabWidget->insertTab( SMP_TAB, mySmpWidget, tr( "LOCAL_SIZE" ));
304   aTabWidget->insertTab( VL_TAB,  myVLWidget,  tr( "Hexotic_VISCOUS_LAYERS"));
305
306   myIs3D = true;
307
308   // Size Maps
309   mySizeMapsToRemove.clear();
310   connect( mySmpWidget->pushButton_1, SIGNAL( clicked() ),          this, SLOT( onAddLocalSize() ) );
311   connect( mySmpWidget->pushButton_2, SIGNAL( clicked() ),          this, SLOT( onRemoveLocalSize() ) );
312   connect( aTabWidget,                SIGNAL( currentChanged(int)), this, SLOT( onTabChanged( int ) ) );
313   return fr;
314 }
315
316 void HexoticPluginGUI_HypothesisCreator::onAddLocalSize()
317 {
318   int rowCount = mySmpWidget->tableWidget->rowCount();
319   //int columnCount = mySmpWidget->tableWidget->columnCount();
320
321   // Get the selected object properties
322   GEOM::GEOM_Object_var sizeMapObject = myGeomSelWdg->GetObject< GEOM::GEOM_Object >(0);
323   if (sizeMapObject->_is_nil())
324     return;
325
326   std::string entry, shapeName;
327   entry = (std::string) sizeMapObject->GetStudyEntry();
328   shapeName = sizeMapObject->GetName();
329
330   // Check if the object is already in the widget
331   QList<QTableWidgetItem *> listFound = mySmpWidget->tableWidget
332                                         ->findItems( QString(entry.c_str()), Qt::MatchExactly );
333   if ( !listFound.isEmpty() )
334     return;
335   
336   // Get the size value
337   double size = mySmpWidget->doubleSpinBox->value();
338   if (size == 0)
339   {
340     SUIT_MessageBox::critical( mySmpWidget, tr( "SMESH_ERROR" ), tr( "Hexotic_NULL_LOCAL_SIZE" ) );
341     return;
342   }
343   
344   // Set items for the inserted row
345   insertLocalSizeInWidget( entry, shapeName, size, rowCount );
346 }
347
348 void HexoticPluginGUI_HypothesisCreator::insertLocalSizeInWidget( std::string entry, 
349                                                                   std::string shapeName, 
350                                                                   double size, 
351                                                                   int row ) const
352 {
353   MESSAGE("HexoticPluginGUI_HypothesisCreator:insertLocalSizeInWidget")
354   int columnCount = mySmpWidget->tableWidget->columnCount();
355   
356   // Add a row at the end of the table
357   mySmpWidget->tableWidget->insertRow(row);
358   
359   QVariant value;
360   for (int col = 0; col<columnCount; col++)
361   {
362     QTableWidgetItem* item = new QTableWidgetItem();
363     switch ( col )
364     {
365       case ENTRY_COL:
366         item->setFlags( 0 );
367         value = QVariant( entry.c_str() );
368         item->setData(Qt::DisplayRole, value );
369         break;  
370       case NAME_COL:
371         item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEnabled );
372         value = QVariant( shapeName.c_str() );
373         item->setData(Qt::DisplayRole, value );
374         break;
375       case SIZE_COL:
376         item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEditable | Qt::ItemIsEnabled);
377         value = QVariant( size );
378         item->setData(Qt::EditRole, value );
379         break;
380     }       
381     mySmpWidget->tableWidget->setItem(row,col,item);
382   }
383 }
384
385 void HexoticPluginGUI_HypothesisCreator::onRemoveLocalSize()
386 {
387   // Remove the selected rows in the table
388   QList<QTableWidgetSelectionRange> ranges = mySmpWidget->tableWidget->selectedRanges();
389   if ( ranges.isEmpty() ) // If none is selected remove the last one
390   {
391     int lastRow = mySmpWidget->tableWidget->rowCount() - 1;
392     std::string entry = mySmpWidget->tableWidget->item( lastRow, ENTRY_COL )->text().toStdString();
393     mySizeMapsToRemove.push_back(entry);
394     mySmpWidget->tableWidget->removeRow( lastRow ); 
395   }
396   else
397   {
398     QList<QTableWidgetSelectionRange>::iterator it;
399     for ( it = ranges.begin(); it != ranges.end(); ++it )
400     {
401       for ( int row = it->topRow(); row <= it->bottomRow(); row++ )
402       {
403         std::string entry = mySmpWidget->tableWidget->item( row, ENTRY_COL )->text().toStdString();
404         mySizeMapsToRemove.push_back(entry);
405         MESSAGE("ADDING entry : "<<entry<<"to the Size Maps to remove")
406       }
407       mySmpWidget->tableWidget->model()->removeRows(it->topRow(), it->rowCount());
408     }
409   }
410 }
411
412 //=================================================================================
413 // function : resizeEvent [REDEFINED]
414 // purpose  :
415 //=================================================================================
416 void HexoticPluginGUI_HypothesisCreator::resizeEvent(QResizeEvent */*event*/) {
417     QSize scaledSize = myStdWidget->imageSdMode.size();
418     scaledSize.scale(myStdWidget->sdModeLabel->size(), Qt::KeepAspectRatioByExpanding);
419     if (!myStdWidget->sdModeLabel->pixmap() || scaledSize != myStdWidget->sdModeLabel->pixmap()->size())
420       myStdWidget->sdModeLabel->setPixmap(myStdWidget->imageSdMode.scaled(myStdWidget->sdModeLabel->size(),
421       Qt::KeepAspectRatio,
422       Qt::SmoothTransformation));
423 }
424
425 void HexoticPluginGUI_HypothesisCreator::retrieveParams() const
426 {
427   HexoticHypothesisData data;
428   readParamsFromHypo( data );
429   printData(data);
430
431   if( myName )
432     myName->setText( data.myName );
433
434   myStdWidget->myPhySizeType->setCurrentIndex( data.myMinSize > 0 || data.myMaxSize > 0 );
435
436   myStdWidget->myMinSize->setCleared(data.myMinSize == 0);
437   if (data.myMinSize == 0)
438     myStdWidget->myMinSize->setText("");
439   else
440     myStdWidget->myMinSize->setValue( data.myMinSize );
441
442   myStdWidget->myMaxSize->setCleared(data.myMaxSize == 0);
443   if (data.myMaxSize == 0)
444     myStdWidget->myMaxSize->setText("");
445   else
446     myStdWidget->myMaxSize->setValue( data.myMaxSize );
447
448   myStdWidget->myGeomSizeType->setCurrentIndex( data.myApproxAngle > 0 );
449
450   myStdWidget->myGeomApproxAngle->setCleared( data.myApproxAngle == 0 );
451   if (data.myApproxAngle == 0)
452     myStdWidget->myGeomApproxAngle->setText("");
453   else
454     myStdWidget->myGeomApproxAngle->setValue( data.myApproxAngle );
455
456   myAdvWidget->myHexoticWorkingDir->setText( data.myHexoticWorkingDir );
457
458   myAdvWidget->myHexoticVerbosity->setValue( data.myHexoticVerbosity );
459
460   myStdWidget->myHexoticSdMode->setCurrentIndex(data.myHexoticSdMode);
461
462   //myAdvWidget->SetCustomOptions(data.myTextOptions);
463
464   if ( myOptions.operator->() ) {
465     for ( int i = 0, nb = myOptions->length(); i < nb; ++i )
466       myAdvWidget->AddOption( myOptions[i].in() );
467   }
468   if ( myCustomOptions.operator->() ) {
469     for ( int i = 0, nb = myCustomOptions->length(); i < nb; ++i )
470       myAdvWidget->AddOption( myCustomOptions[i].in() );
471   }
472   myAdvWidget->myOptionTable->resizeColumnToContents( OPTION_NAME_COLUMN );
473
474   myAdvWidget->keepWorkingFilesCheck->setChecked( data.myKeepFiles );
475   myAdvWidget->logInFileCheck->setChecked( !data.myLogInStandardOutput );
476   myAdvWidget->removeLogOnSuccessCheck->setChecked( data.myRemoveLogOnSuccess );
477
478   HexoticPlugin_Hypothesis::THexoticSizeMaps::const_iterator it = data.mySizeMaps.begin();
479   for ( int row = 0; it != data.mySizeMaps.end(); it++, row++ )
480   {
481     std::string entry = it->first;
482     double size = it->second;
483     GEOM::GEOM_Object_var anObject = entryToObject( entry );
484     std::string shapeName = anObject->GetName();
485
486     MESSAGE(" Insert local size, entry : "<<entry<<", size : "<<size<<", at row : "<<row) 
487     insertLocalSizeInWidget( entry, shapeName, size , row );
488   }
489
490   myVLWidget->myNbLayers->setCleared(data.myNbLayers == 0);
491   if (data.myNbLayers == 0)
492     myVLWidget->myNbLayers->setText("");
493   else
494     myVLWidget->myNbLayers->setValue( data.myNbLayers );
495
496   myVLWidget->myFirstLayerSize->setCleared(data.myFirstLayerSize == 0);
497   if (data.myFirstLayerSize == 0)
498     myVLWidget->myFirstLayerSize->setText("");
499   else
500     myVLWidget->myFirstLayerSize->setValue( data.myFirstLayerSize );
501
502   myVLWidget->myDirection->setCurrentIndex( data.myDirection ? 0 : 1 );
503   myVLWidget->myGrowth->setCleared(data.myGrowth == 0);
504   if (data.myGrowth == 0)
505     myVLWidget->myGrowth->setText("");
506   else
507     myVLWidget->myGrowth->setValue( data.myGrowth );
508
509   std::vector<int> vector = data.myFacesWithLayers;
510   SMESH::long_array_var aVec = new SMESH::long_array;
511   aVec->length(vector.size());
512   for (size_t i = 0; i < vector.size(); i++)
513     aVec[i]=vector.at(i);
514   myVLWidget->myFacesWithLayers->SetListOfIDs(aVec);
515   vector = data.myImprintedFaces;
516   aVec = new SMESH::long_array;
517   aVec->length(vector.size());
518   for (size_t i = 0; i < vector.size(); i++)
519     aVec[i]=vector.at(i);
520   myVLWidget->myImprintedFaces->SetListOfIDs(aVec);
521
522 }
523
524 void HexoticPluginGUI_HypothesisCreator::printData( HexoticHypothesisData& data) const
525 {
526   QString valStr;
527   valStr += tr("Hexotic_MIN_SIZE") + " = " + QString::number( data.myMinSize )   + "; ";
528   valStr += tr("Hexotic_MAX_SIZE") + " = " + QString::number( data.myMaxSize ) + "; ";
529   valStr += tr("Hexotic_HEXES_MIN_LEVEL") + " = " + QString::number( data.myHexesMinLevel )   + "; ";
530   valStr += tr("Hexotic_HEXES_MAX_LEVEL") + " = " + QString::number( data.myHexesMaxLevel ) + "; ";
531   valStr += tr("Hexotic_IGNORE_RIDGES")  + " = " + QString::number( data.myHexoticIgnoreRidges ) + "; ";
532   valStr += tr("Hexotic_INVALID_ELEMENTS")  + " = " + QString::number( data.myHexoticInvalidElements ) + "; ";
533   valStr += tr("Hexotic_SHARP_ANGLE_THRESHOLD") + " = " + QString::number( data.myHexoticSharpAngleThreshold ) + "; ";
534   valStr += tr("Hexotic_NB_PROC") + " = " + QString::number( data.myHexoticNbProc ) + "; ";
535   valStr += tr("Hexotic_WORKING_DIR") + " = " + data.myHexoticWorkingDir + "; ";
536   valStr += tr("Hexotic_VERBOSITY") + " = " + QString::number( data.myHexoticVerbosity ) + "; ";
537   valStr += tr("Hexotic_MAX_MEMORY") + " = " + QString::number( data.myHexoticMaxMemory ) + "; ";
538   valStr += tr("Hexotic_SD_MODE") + " = " + QString::number( data.myHexoticSdMode ) + "; ";
539   valStr += tr("Hexotic_TEXT_OPTIONS") + " = " + data.myTextOptions + ";";
540
541   std::cout << "Data: " << valStr.toStdString() << std::endl;
542 }
543
544 QString HexoticPluginGUI_HypothesisCreator::storeParams() const
545 {
546   HexoticHypothesisData data;
547   readParamsFromWidgets( data );
548   storeParamsToHypo( data );
549
550   QString valStr;
551   valStr += tr("Hexotic_MIN_SIZE") + " = " + QString::number( data.myMinSize )   + "; ";
552   valStr += tr("Hexotic_MAX_SIZE") + " = " + QString::number( data.myMaxSize ) + "; ";
553   valStr += tr("Hexotic_HEXES_MIN_LEVEL") + " = " + QString::number( data.myHexesMinLevel )   + "; ";
554   valStr += tr("Hexotic_HEXES_MAX_LEVEL") + " = " + QString::number( data.myHexesMaxLevel ) + "; ";
555   valStr += tr("Hexotic_IGNORE_RIDGES")  + " = " + QString::number( data.myHexoticIgnoreRidges ) + "; ";
556   valStr += tr("Hexotic_INVALID_ELEMENTS")  + " = " + QString::number( data.myHexoticInvalidElements ) + "; ";
557   valStr += tr("Hexotic_SHARP_ANGLE_THRESHOLD") + " = " + QString::number( data.myHexoticSharpAngleThreshold ) + "; ";
558   valStr += tr("Hexotic_NB_PROC") + " = " + QString::number( data.myHexoticNbProc ) + "; ";
559   valStr += tr("Hexotic_WORKING_DIR") + " = " + data.myHexoticWorkingDir + "; ";
560   valStr += tr("Hexotic_VERBOSITY") + " = " + QString::number( data.myHexoticVerbosity) + "; ";
561   valStr += tr("Hexotic_MAX_MEMORY") + " = " + QString::number( data.myHexoticMaxMemory ) + "; ";
562   valStr += tr("Hexotic_SD_MODE") + " = " + QString::number( data.myHexoticSdMode) + "; ";
563   valStr += tr("Hexotic_TEXT_OPTIONS") + " = " + data.myTextOptions + "; ";
564
565   valStr += tr("Hexotic_NB_LAYERS") + " = " + QString::number(data.myNbLayers) + ";";
566   valStr += tr("Hexotic_FIRST_LAYER_SIZE") + " = " + QString::number(data.myFirstLayerSize) + ";";
567   valStr += tr("Hexotic_DIRECTION") + " = " + QString::number(data.myDirection) + ";";
568   valStr += tr("Hexotic_GROWTH") + " = " + QString::number(data.myGrowth) + ";";
569
570 //  std::cout << "Data: " << valStr.toStdString() << std::endl;
571
572   return valStr;
573 }
574
575 bool HexoticPluginGUI_HypothesisCreator::readParamsFromHypo( HexoticHypothesisData& h_data ) const
576 {
577   HexoticPlugin::HexoticPlugin_Hypothesis_var h =
578     HexoticPlugin::HexoticPlugin_Hypothesis::_narrow( initParamsHypothesis() );
579
580   HypothesisData* data = SMESH::GetHypothesisData( hypType() );
581   h_data.myName = isCreation() && data ? data->Label : "";
582   h_data.myMinSize = h->GetMinSize();
583   h_data.myMaxSize = h->GetMaxSize();
584   h_data.myApproxAngle = h->GetGeomApproxAngle();
585   h_data.myHexesMinLevel = h->GetHexesMinLevel();
586   h_data.myHexesMaxLevel = h->GetHexesMaxLevel();
587   h_data.myHexoticIgnoreRidges = h->GetHexoticIgnoreRidges();
588   h_data.myHexoticInvalidElements = h->GetHexoticInvalidElements();
589   h_data.myHexoticSharpAngleThreshold = h->GetHexoticSharpAngleThreshold();
590   h_data.myHexoticNbProc = h->GetHexoticNbProc();
591   h_data.myHexoticWorkingDir = h->GetHexoticWorkingDirectory();
592   h_data.myHexoticVerbosity = h->GetHexoticVerbosity();
593   h_data.myHexoticMaxMemory = h->GetHexoticMaxMemory();
594   h_data.myHexoticSdMode = h->GetHexoticSdMode()-1;
595   h_data.myKeepFiles = h->GetKeepFiles();
596   h_data.myLogInStandardOutput = h->GetStandardOutputLog();
597   h_data.myRemoveLogOnSuccess = h->GetRemoveLogOnSuccess();
598   //h_data.myTextOptions = h->GetAdvancedOption();
599
600   HexoticPluginGUI_HypothesisCreator* that = (HexoticPluginGUI_HypothesisCreator*)this;
601   that->myOptions       = h->GetOptionValues();
602   that->myCustomOptions = h->GetAdvancedOptionValues();
603
604   // Size maps
605   HexoticPlugin::HexoticPluginSizeMapsList_var sizeMaps = h->GetSizeMaps();
606   for ( CORBA::ULong i = 0 ; i < sizeMaps->length() ; i++)
607   {
608     HexoticPlugin::HexoticPluginSizeMap aSizeMap = sizeMaps[i];
609     std::string entry = CORBA::string_dup(aSizeMap.entry.in());
610     double size = aSizeMap.size;
611     h_data.mySizeMaps[ entry ] = size;
612     MESSAGE("READING Size map : entry "<<entry<<" size : "<<size)
613   }
614   
615   // Viscous layers
616   h_data.myNbLayers = h->GetNbLayers();
617   h_data.myFirstLayerSize = h->GetFirstLayerSize();
618   h_data.myDirection = h->GetDirection();
619   h_data.myGrowth = h->GetGrowth();
620   SMESH::long_array_var vector = h->GetFacesWithLayers();
621   for ( CORBA::ULong i = 0; i < vector->length(); i++)
622     h_data.myFacesWithLayers.push_back(vector[i]);
623   vector = h->GetImprintedFaces();
624   for ( CORBA::ULong i = 0; i < vector->length(); i++)
625     h_data.myImprintedFaces.push_back(vector[i]);
626
627   return true;
628 }
629
630 bool HexoticPluginGUI_HypothesisCreator::storeParamsToHypo( const HexoticHypothesisData& h_data ) const
631 {
632   HexoticPlugin::HexoticPlugin_Hypothesis_var h =
633     HexoticPlugin::HexoticPlugin_Hypothesis::_narrow( hypothesis() );
634
635   bool ok = true;
636
637   try
638   {
639     if( isCreation() )
640       SMESH::SetName( SMESH::FindSObject( h ), h_data.myName.toLatin1().constData() );
641
642     h->SetMinSize( h_data.myMinSize );
643     h->SetMaxSize( h_data.myMaxSize );
644     h->SetGeomApproxAngle( h_data.myApproxAngle );
645     h->SetHexoticWorkingDirectory( h_data.myHexoticWorkingDir.toLatin1().constData() );
646     h->SetHexoticVerbosity( h_data.myHexoticVerbosity );
647     h->SetHexoticSdMode( h_data.myHexoticSdMode+1 );
648     h->SetKeepFiles( h_data.myKeepFiles );
649     h->SetStandardOutputLog( h_data.myLogInStandardOutput );
650     h->SetRemoveLogOnSuccess( h_data.myRemoveLogOnSuccess );
651     
652     HexoticPlugin_Hypothesis::THexoticSizeMaps::const_iterator it;
653     
654     for ( it =  h_data.mySizeMaps.begin(); it !=  h_data.mySizeMaps.end(); it++ )
655     {
656       h->SetSizeMapEntry( it->first.c_str(), it->second );
657       MESSAGE("STORING Size map : entry "<<it->first.c_str()<<" size : "<<it->second)
658     }
659     std::vector< std::string >::const_iterator entry_it;
660     for ( entry_it = mySizeMapsToRemove.begin(); entry_it!= mySizeMapsToRemove.end(); entry_it++ )
661     {
662       h->UnsetSizeMapEntry(entry_it->c_str());
663     }
664
665     // Viscous layers
666     h->SetNbLayers( h_data.myNbLayers );
667     h->SetFirstLayerSize( h_data.myFirstLayerSize );
668     h->SetDirection( h_data.myDirection );
669     h->SetGrowth( h_data.myGrowth );
670     
671     std::vector<int> vector = h_data.myFacesWithLayers;
672     SMESH::long_array_var aVec = new SMESH::long_array;
673     aVec->length(vector.size());
674     for ( size_t i = 0; i < vector.size(); i++)
675       aVec[i]=vector.at(i);
676     h->SetFacesWithLayers( aVec );
677     
678     vector = h_data.myImprintedFaces;
679     aVec = new SMESH::long_array;
680     aVec->length(vector.size());
681     for ( size_t i = 0; i < vector.size(); i++)
682       aVec[i]=vector.at(i);
683     h->SetImprintedFaces( aVec );
684   }
685   catch(const SALOME::SALOME_Exception& ex)
686   {
687     SalomeApp_Tools::QtCatchCorbaException(ex);
688     ok = false;
689   }
690   return ok;
691 }
692
693 bool HexoticPluginGUI_HypothesisCreator::readParamsFromWidgets( HexoticHypothesisData& h_data ) const
694 {
695   h_data.myName    = myName ? myName->text() : "";
696
697   h_data.myMinSize = myStdWidget->myMinSize->text().isEmpty() ? 0.0 : myStdWidget->myMinSize->value();
698   h_data.myMaxSize = myStdWidget->myMaxSize->text().isEmpty() ? 0.0 : myStdWidget->myMaxSize->value();
699   h_data.myApproxAngle = myStdWidget->myGeomApproxAngle->text().isEmpty() ? 0.0 : myStdWidget->myGeomApproxAngle->value();
700   h_data.myHexoticSdMode = myStdWidget->myHexoticSdMode->currentIndex();
701
702   h_data.myHexoticWorkingDir = myAdvWidget->myHexoticWorkingDir->text();
703   h_data.myHexoticVerbosity = myAdvWidget->myHexoticVerbosity->value();
704   h_data.myKeepFiles = myAdvWidget->keepWorkingFilesCheck->isChecked();
705   h_data.myLogInStandardOutput = !myAdvWidget->logInFileCheck->isChecked();
706   h_data.myRemoveLogOnSuccess = myAdvWidget->removeLogOnSuccessCheck->isChecked();
707
708   // Size maps reading
709   bool ok = readSizeMapsFromWidgets( h_data );
710   if ( !ok )
711     return false;
712   
713   h_data.myNbLayers = myVLWidget->myNbLayers->text().isEmpty() ? 0.0 : myVLWidget->myNbLayers->value();
714   h_data.myFirstLayerSize = myVLWidget->myFirstLayerSize->text().isEmpty() ? 0.0 : myVLWidget->myFirstLayerSize->value();
715   h_data.myDirection = myVLWidget->myDirection->currentIndex() == 0 ? true : false;
716   h_data.myGrowth = myVLWidget->myGrowth->text().isEmpty() ? 0.0 : myVLWidget->myGrowth->value();
717   SMESH::long_array_var ids = myVLWidget->myFacesWithLayers->GetListOfIDs();
718   for ( CORBA::ULong i = 0; i < ids->length(); i++)
719     h_data.myFacesWithLayers.push_back( ids[i] );
720   ids = myVLWidget->myImprintedFaces->GetListOfIDs();
721   for ( CORBA::ULong i = 0; i < ids->length(); i++)
722     h_data.myImprintedFaces.push_back( ids[i] );
723
724   printData(h_data);
725
726   return true;
727 }
728
729 bool HexoticPluginGUI_HypothesisCreator::readSizeMapsFromWidgets( HexoticHypothesisData& h_data ) const
730 {
731   int rowCount = mySmpWidget->tableWidget->rowCount();
732   for ( int row = 0; row <  rowCount; row++ )
733   {
734     std::string entry     = mySmpWidget->tableWidget->item( row, ENTRY_COL )->text().toStdString();
735     QVariant size_variant = mySmpWidget->tableWidget->item( row, SIZE_COL )->data(Qt::DisplayRole);
736     
737     // Convert the size to double
738     bool ok = false;
739     double size = size_variant.toDouble(&ok);
740     if (!ok)
741       return false;
742     
743     // Set the size maps
744     h_data.mySizeMaps[ entry ] = size;
745     MESSAGE("READING Size map from WIDGET: entry "<<entry<<" size : "<<size)
746   }
747   return true;
748 }
749
750 GEOM::GEOM_Object_var HexoticPluginGUI_HypothesisCreator::entryToObject( std::string entry) const
751 {
752   GEOM::GEOM_Object_var aGeomObj;
753    SALOMEDS::SObject_var aSObj = SMESH_Gen_i::getStudyServant()->FindObjectID( entry.c_str() );
754   if (!aSObj->_is_nil()) {
755     CORBA::Object_var obj = aSObj->GetObject();
756     aGeomObj = GEOM::GEOM_Object::_narrow(obj);
757     aSObj->UnRegister();
758   }
759   return aGeomObj;
760 }
761
762 QString HexoticPluginGUI_HypothesisCreator::caption() const
763 {
764   return myIs3D ? tr( "Hexotic_3D_TITLE" ) : tr( "Hexotic_3D_TITLE" ); // ??? 3D/2D ???
765 }
766
767 QPixmap HexoticPluginGUI_HypothesisCreator::icon() const
768 {
769   QString hypIconName = myIs3D ? tr( "ICON_DLG_Hexotic_PARAMETERS" ) : tr( "ICON_DLG_Hexotic_PARAMETERS" );
770   return SUIT_Session::session()->resourceMgr()->loadPixmap( "HexoticPLUGIN", hypIconName );
771 }
772
773 QString HexoticPluginGUI_HypothesisCreator::type() const
774 {
775   return myIs3D ? tr( "Hexotic_3D_HYPOTHESIS" ) : tr( "Hexotic_3D_HYPOTHESIS" ); // ??? 3D/2D ???
776 }
777
778 QString HexoticPluginGUI_HypothesisCreator::helpPage() const
779 {
780   return "hexotic_hypo_page.html";
781 }
782
783 void HexoticPluginGUI_HypothesisCreator::onTabChanged(int i)
784 {
785   myVLWidget->myFacesWithLayers->ShowPreview( i == VL_TAB );
786   myVLWidget->myImprintedFaces->ShowPreview( false );
787 }