Salome HOME
42bedce708ee1987face763d6f76a5d5ddc3584a
[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   l->addWidget( myStdWidget, row++, 0, 1, 3 );
234   myStdWidget->onSdModeSelected(SD_MODE_4);
235   //myStdWidget->gridLayout->setRowStretch( 1, 2 );
236
237   // Advanced TAB
238   myAdvWidget = new HexoticPluginGUI_AdvWidget( aTabWidget );
239   //myAdvWidget->gridLayout->setRowStretch( 0, 2 );
240
241   // SIZE MAPS TAB
242   mySmpWidget = new HexoticPluginGUI_SizeMapsWidget( aTabWidget );
243   mySmpWidget->doubleSpinBox->RangeStepAndValidator(0.0, COORD_MAX, 1.0, "length_precision");
244   mySmpWidget->doubleSpinBox->setValue(0.0);
245
246   // Filters of selection
247   TColStd_MapOfInteger SM_ShapeTypes;
248   SM_ShapeTypes.Add( TopAbs_VERTEX );
249   SM_ShapeTypes.Add( TopAbs_EDGE );
250   SM_ShapeTypes.Add( TopAbs_WIRE );
251   SM_ShapeTypes.Add( TopAbs_FACE );
252   SM_ShapeTypes.Add( TopAbs_SOLID );
253   SM_ShapeTypes.Add( TopAbs_COMPOUND );
254   SMESH_NumberFilter* aFilter = new SMESH_NumberFilter("GEOM", TopAbs_SHAPE, 0, SM_ShapeTypes);
255
256   // Selection widget
257   myGeomSelWdg = new StdMeshersGUI_ObjectReferenceParamWdg( aFilter, mySmpWidget, /*multiSel=*/false);
258   myGeomSelWdg->SetDefaultText(tr("Hexotic_SEL_SHAPE"), "QLineEdit { color: grey }");
259   mySmpWidget->gridLayout->addWidget(myGeomSelWdg, 0, 1);
260
261   // Configuration of the table widget
262   QStringList headerLabels;
263   headerLabels << tr("Hexotic_ENTRY")<< tr("Hexotic_NAME")<< tr("Hexotic_SIZE");
264   mySmpWidget->tableWidget->setHorizontalHeaderLabels(headerLabels);
265   mySmpWidget->tableWidget->resizeColumnsToContents();
266   mySmpWidget->tableWidget->hideColumn( 0 );
267   mySmpWidget->label->setText(tr("LOCAL_SIZE"));
268   mySmpWidget->pushButton_1->setText(tr("Hexotic_ADD"));
269   mySmpWidget->pushButton_2->setText(tr("Hexotic_REMOVE"));
270
271   // Setting a custom delegate for the size column
272   SizeMapsTableWidgetDelegate* delegate = new SizeMapsTableWidgetDelegate();
273   mySmpWidget->tableWidget->setItemDelegateForColumn(SIZE_COL, delegate);
274
275
276   // Viscous Layers tab
277
278   // Viscous layers widget creation and initialisation
279   myVLWidget = new HexoticPluginGUI_ViscousLayersWidget( aTabWidget );
280
281   QString aMainEntry = SMESHGUI_GenericHypothesisCreator::getMainShapeEntry();
282   QString aSubEntry  = SMESHGUI_GenericHypothesisCreator::getShapeEntry();
283
284   if ( !aMainEntry.isEmpty() )
285   {
286     myVLWidget->myFacesWithLayers->SetGeomShapeEntry( aSubEntry, aMainEntry );
287     myVLWidget->myImprintedFaces->SetGeomShapeEntry( aSubEntry, aMainEntry );
288   }
289   else
290   {
291     myVLWidget->labelFacesWithLayers->setVisible(false);
292     myVLWidget->myFacesWithLayers->setVisible(false);
293     myVLWidget->labelImprintedFaces->setVisible(false);
294     myVLWidget->myImprintedFaces->setVisible(false);
295   }
296
297   aTabWidget->insertTab( STD_TAB, aStdGroup,   tr( "SMESH_ARGUMENTS" ));
298   aTabWidget->insertTab( ADV_TAB, myAdvWidget, tr( "SMESH_ADVANCED" ));
299   aTabWidget->insertTab( SMP_TAB, mySmpWidget, tr( "LOCAL_SIZE" ));
300   aTabWidget->insertTab( VL_TAB,  myVLWidget,  tr( "Hexotic_VISCOUS_LAYERS"));
301
302   myIs3D = true;
303
304   // Size Maps
305   mySizeMapsToRemove.clear();
306   connect( mySmpWidget->pushButton_1, SIGNAL( clicked() ),          this, SLOT( onAddLocalSize() ) );
307   connect( mySmpWidget->pushButton_2, SIGNAL( clicked() ),          this, SLOT( onRemoveLocalSize() ) );
308   connect( aTabWidget,                SIGNAL( currentChanged(int)), this, SLOT( onTabChanged( int ) ) );
309   return fr;
310 }
311
312 void HexoticPluginGUI_HypothesisCreator::onAddLocalSize()
313 {
314   int rowCount = mySmpWidget->tableWidget->rowCount();
315   //int columnCount = mySmpWidget->tableWidget->columnCount();
316
317   // Get the selected object properties
318   GEOM::GEOM_Object_var sizeMapObject = myGeomSelWdg->GetObject< GEOM::GEOM_Object >(0);
319   if (sizeMapObject->_is_nil())
320     return;
321
322   std::string entry, shapeName;
323   entry = (std::string) sizeMapObject->GetStudyEntry();
324   shapeName = sizeMapObject->GetName();
325
326   // Check if the object is already in the widget
327   QList<QTableWidgetItem *> listFound = mySmpWidget->tableWidget
328                                         ->findItems( QString(entry.c_str()), Qt::MatchExactly );
329   if ( !listFound.isEmpty() )
330     return;
331   
332   // Get the size value
333   double size = mySmpWidget->doubleSpinBox->value();
334   if (size == 0)
335   {
336     SUIT_MessageBox::critical( mySmpWidget, tr( "SMESH_ERROR" ), tr( "Hexotic_NULL_LOCAL_SIZE" ) );
337     return;
338   }
339   
340   // Set items for the inserted row
341   insertLocalSizeInWidget( entry, shapeName, size, rowCount );
342 }
343
344 void HexoticPluginGUI_HypothesisCreator::insertLocalSizeInWidget( std::string entry, 
345                                                                   std::string shapeName, 
346                                                                   double size, 
347                                                                   int row ) const
348 {
349   MESSAGE("HexoticPluginGUI_HypothesisCreator:insertLocalSizeInWidget")
350   int columnCount = mySmpWidget->tableWidget->columnCount();
351   
352   // Add a row at the end of the table
353   mySmpWidget->tableWidget->insertRow(row);
354   
355   QVariant value;
356   for (int col = 0; col<columnCount; col++)
357   {
358     QTableWidgetItem* item = new QTableWidgetItem();
359     switch ( col )
360     {
361       case ENTRY_COL:
362         item->setFlags( 0 );
363         value = QVariant( entry.c_str() );
364         item->setData(Qt::DisplayRole, value );
365         break;  
366       case NAME_COL:
367         item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEnabled );
368         value = QVariant( shapeName.c_str() );
369         item->setData(Qt::DisplayRole, value );
370         break;
371       case SIZE_COL:
372         item->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEditable | Qt::ItemIsEnabled);
373         value = QVariant( size );
374         item->setData(Qt::EditRole, value );
375         break;
376     }       
377     mySmpWidget->tableWidget->setItem(row,col,item);
378   }
379 }
380
381 void HexoticPluginGUI_HypothesisCreator::onRemoveLocalSize()
382 {
383   // Remove the selected rows in the table
384   QList<QTableWidgetSelectionRange> ranges = mySmpWidget->tableWidget->selectedRanges();
385   if ( ranges.isEmpty() ) // If none is selected remove the last one
386   {
387     int lastRow = mySmpWidget->tableWidget->rowCount() - 1;
388     std::string entry = mySmpWidget->tableWidget->item( lastRow, ENTRY_COL )->text().toStdString();
389     mySizeMapsToRemove.push_back(entry);
390     mySmpWidget->tableWidget->removeRow( lastRow ); 
391   }
392   else
393   {
394     QList<QTableWidgetSelectionRange>::iterator it;
395     for ( it = ranges.begin(); it != ranges.end(); ++it )
396     {
397       for ( int row = it->topRow(); row <= it->bottomRow(); row++ )
398       {
399         std::string entry = mySmpWidget->tableWidget->item( row, ENTRY_COL )->text().toStdString();
400         mySizeMapsToRemove.push_back(entry);
401         MESSAGE("ADDING entry : "<<entry<<"to the Size Maps to remove")
402       }
403       mySmpWidget->tableWidget->model()->removeRows(it->topRow(), it->rowCount());
404     }
405   }
406 }
407
408 //=================================================================================
409 // function : resizeEvent [REDEFINED]
410 // purpose  :
411 //=================================================================================
412 void HexoticPluginGUI_HypothesisCreator::resizeEvent(QResizeEvent */*event*/) {
413     QSize scaledSize = myStdWidget->imageSdMode.size();
414     scaledSize.scale(myStdWidget->sdModeLabel->size(), Qt::KeepAspectRatioByExpanding);
415     if (!myStdWidget->sdModeLabel->pixmap() || scaledSize != myStdWidget->sdModeLabel->pixmap()->size())
416       myStdWidget->sdModeLabel->setPixmap(myStdWidget->imageSdMode.scaled(myStdWidget->sdModeLabel->size(),
417       Qt::KeepAspectRatio,
418       Qt::SmoothTransformation));
419 }
420
421 void HexoticPluginGUI_HypothesisCreator::retrieveParams() const
422 {
423   HexoticHypothesisData data;
424   readParamsFromHypo( data );
425   printData(data);
426
427   if( myName )
428     myName->setText( data.myName );
429
430   myStdWidget->myPhySizeType->setCurrentIndex( data.myMinSize > 0 || data.myMaxSize > 0 );
431
432   myStdWidget->myMinSize->setCleared(data.myMinSize == 0);
433   if (data.myMinSize == 0)
434     myStdWidget->myMinSize->setText("");
435   else
436     myStdWidget->myMinSize->setValue( data.myMinSize );
437
438   myStdWidget->myMaxSize->setCleared(data.myMaxSize == 0);
439   if (data.myMaxSize == 0)
440     myStdWidget->myMaxSize->setText("");
441   else
442     myStdWidget->myMaxSize->setValue( data.myMaxSize );
443
444   myStdWidget->myGeomSizeType->setCurrentIndex( data.myApproxAngle > 0 );
445
446   myStdWidget->myGeomApproxAngle->setCleared( data.myApproxAngle == 0 );
447   if (data.myApproxAngle == 0)
448     myStdWidget->myGeomApproxAngle->setText("");
449   else
450     myStdWidget->myGeomApproxAngle->setValue( data.myApproxAngle );
451
452   myAdvWidget->myHexoticWorkingDir->setText( data.myHexoticWorkingDir );
453
454   myAdvWidget->myHexoticVerbosity->setValue( data.myHexoticVerbosity );
455
456   myStdWidget->myHexoticSdMode->setCurrentIndex(data.myHexoticSdMode);
457
458   //myAdvWidget->SetCustomOptions(data.myTextOptions);
459
460   if ( myOptions.operator->() ) {
461     for ( int i = 0, nb = myOptions->length(); i < nb; ++i )
462       myAdvWidget->AddOption( myOptions[i].in() );
463   }
464   if ( myCustomOptions.operator->() ) {
465     for ( int i = 0, nb = myCustomOptions->length(); i < nb; ++i )
466       myAdvWidget->AddOption( myCustomOptions[i].in() );
467   }
468   myAdvWidget->myOptionTable->resizeColumnToContents( OPTION_NAME_COLUMN );
469
470   myAdvWidget->keepWorkingFilesCheck->setChecked( data.myKeepFiles );
471   myAdvWidget->logInFileCheck->setChecked( !data.myLogInStandardOutput );
472   myAdvWidget->removeLogOnSuccessCheck->setChecked( data.myRemoveLogOnSuccess );
473
474   HexoticPlugin_Hypothesis::THexoticSizeMaps::const_iterator it = data.mySizeMaps.begin();
475   for ( int row = 0; it != data.mySizeMaps.end(); it++, row++ )
476   {
477     std::string entry = it->first;
478     double size = it->second;
479     GEOM::GEOM_Object_var anObject = entryToObject( entry );
480     std::string shapeName = anObject->GetName();
481
482     MESSAGE(" Insert local size, entry : "<<entry<<", size : "<<size<<", at row : "<<row) 
483     insertLocalSizeInWidget( entry, shapeName, size , row );
484   }
485
486   myVLWidget->myNbLayers->setCleared(data.myNbLayers == 0);
487   if (data.myNbLayers == 0)
488     myVLWidget->myNbLayers->setText("");
489   else
490     myVLWidget->myNbLayers->setValue( data.myNbLayers );
491
492   myVLWidget->myFirstLayerSize->setCleared(data.myFirstLayerSize == 0);
493   if (data.myFirstLayerSize == 0)
494     myVLWidget->myFirstLayerSize->setText("");
495   else
496     myVLWidget->myFirstLayerSize->setValue( data.myFirstLayerSize );
497
498   myVLWidget->myDirection->setCurrentIndex( data.myDirection ? 0 : 1 );
499   myVLWidget->myGrowth->setCleared(data.myGrowth == 0);
500   if (data.myGrowth == 0)
501     myVLWidget->myGrowth->setText("");
502   else
503     myVLWidget->myGrowth->setValue( data.myGrowth );
504
505   std::vector<int> vector = data.myFacesWithLayers;
506   SMESH::long_array_var aVec = new SMESH::long_array;
507   aVec->length(vector.size());
508   for (size_t i = 0; i < vector.size(); i++)
509     aVec[i]=vector.at(i);
510   myVLWidget->myFacesWithLayers->SetListOfIDs(aVec);
511   vector = data.myImprintedFaces;
512   aVec = new SMESH::long_array;
513   aVec->length(vector.size());
514   for (size_t i = 0; i < vector.size(); i++)
515     aVec[i]=vector.at(i);
516   myVLWidget->myImprintedFaces->SetListOfIDs(aVec);
517
518 }
519
520 void HexoticPluginGUI_HypothesisCreator::printData( HexoticHypothesisData& data) const
521 {
522   QString valStr;
523   valStr += tr("Hexotic_MIN_SIZE") + " = " + QString::number( data.myMinSize )   + "; ";
524   valStr += tr("Hexotic_MAX_SIZE") + " = " + QString::number( data.myMaxSize ) + "; ";
525   valStr += tr("Hexotic_HEXES_MIN_LEVEL") + " = " + QString::number( data.myHexesMinLevel )   + "; ";
526   valStr += tr("Hexotic_HEXES_MAX_LEVEL") + " = " + QString::number( data.myHexesMaxLevel ) + "; ";
527   valStr += tr("Hexotic_IGNORE_RIDGES")  + " = " + QString::number( data.myHexoticIgnoreRidges ) + "; ";
528   valStr += tr("Hexotic_INVALID_ELEMENTS")  + " = " + QString::number( data.myHexoticInvalidElements ) + "; ";
529   valStr += tr("Hexotic_SHARP_ANGLE_THRESHOLD") + " = " + QString::number( data.myHexoticSharpAngleThreshold ) + "; ";
530   valStr += tr("Hexotic_NB_PROC") + " = " + QString::number( data.myHexoticNbProc ) + "; ";
531   valStr += tr("Hexotic_WORKING_DIR") + " = " + data.myHexoticWorkingDir + "; ";
532   valStr += tr("Hexotic_VERBOSITY") + " = " + QString::number( data.myHexoticVerbosity ) + "; ";
533   valStr += tr("Hexotic_MAX_MEMORY") + " = " + QString::number( data.myHexoticMaxMemory ) + "; ";
534   valStr += tr("Hexotic_SD_MODE") + " = " + QString::number( data.myHexoticSdMode ) + "; ";
535   valStr += tr("Hexotic_TEXT_OPTIONS") + " = " + data.myTextOptions + ";";
536
537   std::cout << "Data: " << valStr.toStdString() << std::endl;
538 }
539
540 QString HexoticPluginGUI_HypothesisCreator::storeParams() const
541 {
542   HexoticHypothesisData data;
543   readParamsFromWidgets( data );
544   storeParamsToHypo( data );
545
546   QString valStr;
547   valStr += tr("Hexotic_MIN_SIZE") + " = " + QString::number( data.myMinSize )   + "; ";
548   valStr += tr("Hexotic_MAX_SIZE") + " = " + QString::number( data.myMaxSize ) + "; ";
549   valStr += tr("Hexotic_HEXES_MIN_LEVEL") + " = " + QString::number( data.myHexesMinLevel )   + "; ";
550   valStr += tr("Hexotic_HEXES_MAX_LEVEL") + " = " + QString::number( data.myHexesMaxLevel ) + "; ";
551   valStr += tr("Hexotic_IGNORE_RIDGES")  + " = " + QString::number( data.myHexoticIgnoreRidges ) + "; ";
552   valStr += tr("Hexotic_INVALID_ELEMENTS")  + " = " + QString::number( data.myHexoticInvalidElements ) + "; ";
553   valStr += tr("Hexotic_SHARP_ANGLE_THRESHOLD") + " = " + QString::number( data.myHexoticSharpAngleThreshold ) + "; ";
554   valStr += tr("Hexotic_NB_PROC") + " = " + QString::number( data.myHexoticNbProc ) + "; ";
555   valStr += tr("Hexotic_WORKING_DIR") + " = " + data.myHexoticWorkingDir + "; ";
556   valStr += tr("Hexotic_VERBOSITY") + " = " + QString::number( data.myHexoticVerbosity) + "; ";
557   valStr += tr("Hexotic_MAX_MEMORY") + " = " + QString::number( data.myHexoticMaxMemory ) + "; ";
558   valStr += tr("Hexotic_SD_MODE") + " = " + QString::number( data.myHexoticSdMode) + "; ";
559   valStr += tr("Hexotic_TEXT_OPTIONS") + " = " + data.myTextOptions + "; ";
560
561   valStr += tr("Hexotic_NB_LAYERS") + " = " + QString::number(data.myNbLayers) + ";";
562   valStr += tr("Hexotic_FIRST_LAYER_SIZE") + " = " + QString::number(data.myFirstLayerSize) + ";";
563   valStr += tr("Hexotic_DIRECTION") + " = " + QString::number(data.myDirection) + ";";
564   valStr += tr("Hexotic_GROWTH") + " = " + QString::number(data.myGrowth) + ";";
565
566 //  std::cout << "Data: " << valStr.toStdString() << std::endl;
567
568   return valStr;
569 }
570
571 bool HexoticPluginGUI_HypothesisCreator::readParamsFromHypo( HexoticHypothesisData& h_data ) const
572 {
573   HexoticPlugin::HexoticPlugin_Hypothesis_var h =
574     HexoticPlugin::HexoticPlugin_Hypothesis::_narrow( initParamsHypothesis() );
575
576   HypothesisData* data = SMESH::GetHypothesisData( hypType() );
577   h_data.myName = isCreation() && data ? data->Label : "";
578   h_data.myMinSize = h->GetMinSize();
579   h_data.myMaxSize = h->GetMaxSize();
580   h_data.myApproxAngle = h->GetGeomApproxAngle();
581   h_data.myHexesMinLevel = h->GetHexesMinLevel();
582   h_data.myHexesMaxLevel = h->GetHexesMaxLevel();
583   h_data.myHexoticIgnoreRidges = h->GetHexoticIgnoreRidges();
584   h_data.myHexoticInvalidElements = h->GetHexoticInvalidElements();
585   h_data.myHexoticSharpAngleThreshold = h->GetHexoticSharpAngleThreshold();
586   h_data.myHexoticNbProc = h->GetHexoticNbProc();
587   h_data.myHexoticWorkingDir = h->GetHexoticWorkingDirectory();
588   h_data.myHexoticVerbosity = h->GetHexoticVerbosity();
589   h_data.myHexoticMaxMemory = h->GetHexoticMaxMemory();
590   h_data.myHexoticSdMode = h->GetHexoticSdMode()-1;
591   h_data.myKeepFiles = h->GetKeepFiles();
592   h_data.myLogInStandardOutput = h->GetStandardOutputLog();
593   h_data.myRemoveLogOnSuccess = h->GetRemoveLogOnSuccess();
594   //h_data.myTextOptions = h->GetAdvancedOption();
595
596   HexoticPluginGUI_HypothesisCreator* that = (HexoticPluginGUI_HypothesisCreator*)this;
597   that->myOptions       = h->GetOptionValues();
598   that->myCustomOptions = h->GetAdvancedOptionValues();
599
600   // Size maps
601   HexoticPlugin::HexoticPluginSizeMapsList_var sizeMaps = h->GetSizeMaps();
602   for ( CORBA::ULong i = 0 ; i < sizeMaps->length() ; i++)
603   {
604     HexoticPlugin::HexoticPluginSizeMap aSizeMap = sizeMaps[i];
605     std::string entry = CORBA::string_dup(aSizeMap.entry.in());
606     double size = aSizeMap.size;
607     h_data.mySizeMaps[ entry ] = size;
608     MESSAGE("READING Size map : entry "<<entry<<" size : "<<size)
609   }
610   
611   // Viscous layers
612   h_data.myNbLayers = h->GetNbLayers();
613   h_data.myFirstLayerSize = h->GetFirstLayerSize();
614   h_data.myDirection = h->GetDirection();
615   h_data.myGrowth = h->GetGrowth();
616   SMESH::long_array_var vector = h->GetFacesWithLayers();
617   for ( CORBA::ULong i = 0; i < vector->length(); i++)
618     h_data.myFacesWithLayers.push_back(vector[i]);
619   vector = h->GetImprintedFaces();
620   for ( CORBA::ULong i = 0; i < vector->length(); i++)
621     h_data.myImprintedFaces.push_back(vector[i]);
622
623   return true;
624 }
625
626 bool HexoticPluginGUI_HypothesisCreator::storeParamsToHypo( const HexoticHypothesisData& h_data ) const
627 {
628   HexoticPlugin::HexoticPlugin_Hypothesis_var h =
629     HexoticPlugin::HexoticPlugin_Hypothesis::_narrow( hypothesis() );
630
631   bool ok = true;
632
633   try
634   {
635     if( isCreation() )
636       SMESH::SetName( SMESH::FindSObject( h ), h_data.myName.toLatin1().constData() );
637
638     h->SetMinSize( h_data.myMinSize );
639     h->SetMaxSize( h_data.myMaxSize );
640     h->SetGeomApproxAngle( h_data.myApproxAngle );
641     h->SetHexoticWorkingDirectory( h_data.myHexoticWorkingDir.toLatin1().constData() );
642     h->SetHexoticVerbosity( h_data.myHexoticVerbosity );
643     h->SetHexoticSdMode( h_data.myHexoticSdMode+1 );
644     h->SetKeepFiles( h_data.myKeepFiles );
645     h->SetStandardOutputLog( h_data.myLogInStandardOutput );
646     h->SetRemoveLogOnSuccess( h_data.myRemoveLogOnSuccess );
647     
648     HexoticPlugin_Hypothesis::THexoticSizeMaps::const_iterator it;
649     
650     for ( it =  h_data.mySizeMaps.begin(); it !=  h_data.mySizeMaps.end(); it++ )
651     {
652       h->SetSizeMapEntry( it->first.c_str(), it->second );
653       MESSAGE("STORING Size map : entry "<<it->first.c_str()<<" size : "<<it->second)
654     }
655     std::vector< std::string >::const_iterator entry_it;
656     for ( entry_it = mySizeMapsToRemove.begin(); entry_it!= mySizeMapsToRemove.end(); entry_it++ )
657     {
658       h->UnsetSizeMapEntry(entry_it->c_str());
659     }
660
661     // Viscous layers
662     h->SetNbLayers( h_data.myNbLayers );
663     h->SetFirstLayerSize( h_data.myFirstLayerSize );
664     h->SetDirection( h_data.myDirection );
665     h->SetGrowth( h_data.myGrowth );
666     
667     std::vector<int> vector = h_data.myFacesWithLayers;
668     SMESH::long_array_var aVec = new SMESH::long_array;
669     aVec->length(vector.size());
670     for ( size_t i = 0; i < vector.size(); i++)
671       aVec[i]=vector.at(i);
672     h->SetFacesWithLayers( aVec );
673     
674     vector = h_data.myImprintedFaces;
675     aVec = new SMESH::long_array;
676     aVec->length(vector.size());
677     for ( size_t i = 0; i < vector.size(); i++)
678       aVec[i]=vector.at(i);
679     h->SetImprintedFaces( aVec );
680   }
681   catch(const SALOME::SALOME_Exception& ex)
682   {
683     SalomeApp_Tools::QtCatchCorbaException(ex);
684     ok = false;
685   }
686   return ok;
687 }
688
689 bool HexoticPluginGUI_HypothesisCreator::readParamsFromWidgets( HexoticHypothesisData& h_data ) const
690 {
691   h_data.myName    = myName ? myName->text() : "";
692
693   h_data.myMinSize = myStdWidget->myMinSize->text().isEmpty() ? 0.0 : myStdWidget->myMinSize->value();
694   h_data.myMaxSize = myStdWidget->myMaxSize->text().isEmpty() ? 0.0 : myStdWidget->myMaxSize->value();
695   h_data.myApproxAngle = myStdWidget->myGeomApproxAngle->text().isEmpty() ? 0.0 : myStdWidget->myGeomApproxAngle->value();
696   h_data.myHexoticSdMode = myStdWidget->myHexoticSdMode->currentIndex();
697
698   h_data.myHexoticWorkingDir = myAdvWidget->myHexoticWorkingDir->text();
699   h_data.myHexoticVerbosity = myAdvWidget->myHexoticVerbosity->value();
700   h_data.myKeepFiles = myAdvWidget->keepWorkingFilesCheck->isChecked();
701   h_data.myLogInStandardOutput = !myAdvWidget->logInFileCheck->isChecked();
702   h_data.myRemoveLogOnSuccess = myAdvWidget->removeLogOnSuccessCheck->isChecked();
703
704   // Size maps reading
705   bool ok = readSizeMapsFromWidgets( h_data );
706   if ( !ok )
707     return false;
708   
709   h_data.myNbLayers = myVLWidget->myNbLayers->text().isEmpty() ? 0.0 : myVLWidget->myNbLayers->value();
710   h_data.myFirstLayerSize = myVLWidget->myFirstLayerSize->text().isEmpty() ? 0.0 : myVLWidget->myFirstLayerSize->value();
711   h_data.myDirection = myVLWidget->myDirection->currentIndex() == 0 ? true : false;
712   h_data.myGrowth = myVLWidget->myGrowth->text().isEmpty() ? 0.0 : myVLWidget->myGrowth->value();
713   SMESH::long_array_var ids = myVLWidget->myFacesWithLayers->GetListOfIDs();
714   for ( CORBA::ULong i = 0; i < ids->length(); i++)
715     h_data.myFacesWithLayers.push_back( ids[i] );
716   ids = myVLWidget->myImprintedFaces->GetListOfIDs();
717   for ( CORBA::ULong i = 0; i < ids->length(); i++)
718     h_data.myImprintedFaces.push_back( ids[i] );
719
720   printData(h_data);
721
722   return true;
723 }
724
725 bool HexoticPluginGUI_HypothesisCreator::readSizeMapsFromWidgets( HexoticHypothesisData& h_data ) const
726 {
727   int rowCount = mySmpWidget->tableWidget->rowCount();
728   for ( int row = 0; row <  rowCount; row++ )
729   {
730     std::string entry     = mySmpWidget->tableWidget->item( row, ENTRY_COL )->text().toStdString();
731     QVariant size_variant = mySmpWidget->tableWidget->item( row, SIZE_COL )->data(Qt::DisplayRole);
732     
733     // Convert the size to double
734     bool ok = false;
735     double size = size_variant.toDouble(&ok);
736     if (!ok)
737       return false;
738     
739     // Set the size maps
740     h_data.mySizeMaps[ entry ] = size;
741     MESSAGE("READING Size map from WIDGET: entry "<<entry<<" size : "<<size)
742   }
743   return true;
744 }
745
746 GEOM::GEOM_Object_var HexoticPluginGUI_HypothesisCreator::entryToObject( std::string entry) const
747 {
748   GEOM::GEOM_Object_var aGeomObj;
749    SALOMEDS::SObject_var aSObj = SMESH_Gen_i::getStudyServant()->FindObjectID( entry.c_str() );
750   if (!aSObj->_is_nil()) {
751     CORBA::Object_var obj = aSObj->GetObject();
752     aGeomObj = GEOM::GEOM_Object::_narrow(obj);
753     aSObj->UnRegister();
754   }
755   return aGeomObj;
756 }
757
758 QString HexoticPluginGUI_HypothesisCreator::caption() const
759 {
760   return myIs3D ? tr( "Hexotic_3D_TITLE" ) : tr( "Hexotic_3D_TITLE" ); // ??? 3D/2D ???
761 }
762
763 QPixmap HexoticPluginGUI_HypothesisCreator::icon() const
764 {
765   QString hypIconName = myIs3D ? tr( "ICON_DLG_Hexotic_PARAMETERS" ) : tr( "ICON_DLG_Hexotic_PARAMETERS" );
766   return SUIT_Session::session()->resourceMgr()->loadPixmap( "HexoticPLUGIN", hypIconName );
767 }
768
769 QString HexoticPluginGUI_HypothesisCreator::type() const
770 {
771   return myIs3D ? tr( "Hexotic_3D_HYPOTHESIS" ) : tr( "Hexotic_3D_HYPOTHESIS" ); // ??? 3D/2D ???
772 }
773
774 QString HexoticPluginGUI_HypothesisCreator::helpPage() const
775 {
776   return "hexotic_hypo_page.html";
777 }
778
779 void HexoticPluginGUI_HypothesisCreator::onTabChanged(int i)
780 {
781   myVLWidget->myFacesWithLayers->ShowPreview( i == VL_TAB );
782   myVLWidget->myImprintedFaces->ShowPreview( false );
783 }