]> SALOME platform Git repositories - plugins/blsurfplugin.git/blob - src/GUI/BLSURFPluginGUI_HypothesisCreator.cxx
Salome HOME
c55727b42316fe632425c24b1aa48b77f5c8c563
[plugins/blsurfplugin.git] / src / GUI / BLSURFPluginGUI_HypothesisCreator.cxx
1         //  Copyright (C) 2007-2008  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 // File    : BLSURFPluginGUI_HypothesisCreator.cxx
21 // Authors : Francis KLOSS (OCC) & Patrick LAUG (INRIA) & Lioka RAZAFINDRAZAKA (CEA)
22 //           & Aurelien ALLEAUME (DISTENE)
23 //           Size maps developement: Nicolas GEIMER (OCC) & Gilles DAVID (EURIWARE)
24 // ---
25 //
26 #include "BLSURFPluginGUI_HypothesisCreator.h"
27
28 #include <SMESHGUI_Utils.h>
29 #include <SMESHGUI_HypothesesUtils.h>
30 #include <SMESHGUI_Dialog.h>
31
32 #include <SUIT_Session.h>
33 #include <SUIT_MessageBox.h>
34 #include <SUIT_ResourceMgr.h>
35 #include <SalomeApp_Tools.h>
36 #include <SalomeApp_DoubleSpinBox.h>
37
38 #include <QComboBox>
39 #include <QLabel>
40 #include <QGroupBox>
41 #include <QFrame>
42 #include <QVBoxLayout>
43 #include <QHBoxLayout>
44 #include <QGridLayout>
45 #include <QLineEdit>
46 #include <QCheckBox>
47 #include <QTabWidget>
48 #include <QSpinBox>
49 #include <QPushButton>
50 #include <QMenu>
51 #include <QTableWidget>
52 #include <QHeaderView>
53 #include <QApplication>
54 #include <QRadioButton>
55
56 #include <QStandardItemModel>
57 #include <QStandardItem>
58 #include <QTreeWidget>
59 #include <QTreeWidgetItem>
60 #include <QModelIndexList>
61
62 #include <LightApp_SelectionMgr.h>
63 #include <SalomeApp_Application.h>
64 #include <SALOME_ListIO.hxx>
65 #include <SALOME_ListIteratorOfListIO.hxx>
66
67 #include <GEOM_Client.hxx>
68 #include <TopoDS_Shape.hxx>
69 #include <SMESH_Gen_i.hxx>
70 #include <boost/shared_ptr.hpp>
71 #include <structmember.h>
72
73 // #include <GeomSelectionTools.h>
74 #define WITH_SIZE_BOUNDARIES
75
76 enum Topology {
77     FromCAD,
78     Process,
79     Process2
80   } ;
81
82 enum PhysicalMesh
83   {
84     DefaultSize = 0,
85     PhysicalUserDefined,
86     SizeMap
87   };
88
89 enum GeometricMesh
90   {
91     DefaultGeom = 0,
92     UserDefined
93   };
94
95 enum {
96   STD_TAB = 0,
97   ADV_TAB,
98   SMP_TAB,
99   ENF_TAB,
100   OPTION_ID_COLUMN = 0,
101   OPTION_NAME_COLUMN,
102   OPTION_VALUE_COLUMN,
103   NB_COLUMNS,
104   SMP_ENTRY_COLUMN = 0,
105   SMP_NAME_COLUMN,
106   SMP_SIZEMAP_COLUMN,
107   SMP_NB_COLUMNS
108 };
109
110 enum {
111   SMP_BTNS = 0,
112 //   SMP_ATTRACTOR_BTN,
113 //   SMP_SEPARATOR1,
114   SMP_POINT_BTN,
115   SMP_EDGE_BTN,
116   SMP_SURFACE_BTN,
117   SMP_SEPARATOR2,
118   SMP_REMOVE_BTN,
119 };
120
121 // Enforced verteces inputs
122 enum {
123   ENF_VER_BTNS = 0,
124   ENF_VER_X_COORD = 0,
125   ENF_VER_Y_COORD,
126   ENF_VER_Z_COORD,
127   ENF_VER_VERTEX_BTN,
128   ENF_VER_SEPARATOR,
129   ENF_VER_REMOVE_BTN,
130 };
131
132 // Enforced verteces array columns
133 enum {
134   ENF_VER_NAME_COLUMN = 0,
135   ENF_VER_ENTRY_COLUMN,
136   ENF_VER_X_COLUMN,
137   ENF_VER_Y_COLUMN,
138   ENF_VER_Z_COLUMN,
139   ENF_VER_NB_COLUMNS
140 };
141
142
143 /**************************************************
144  Begin initialization Python structures and objects
145 ***************************************************/
146
147 typedef struct {
148   PyObject_HEAD
149   int softspace;
150   std::string *out;
151   } PyStdOut;
152
153 static void
154 PyStdOut_dealloc(PyStdOut *self)
155 {
156   PyObject_Del(self);
157 }
158
159 static PyObject *
160 PyStdOut_write(PyStdOut *self, PyObject *args)
161 {
162   char *c;
163   int l;
164   if (!PyArg_ParseTuple(args, "t#:write",&c, &l))
165     return NULL;
166
167   //std::cerr << c ;
168   *(self->out)=*(self->out)+c;
169
170   Py_INCREF(Py_None);
171   return Py_None;
172 }
173
174 static PyMethodDef PyStdOut_methods[] = {
175   {"write",  (PyCFunction)PyStdOut_write,  METH_VARARGS,
176     PyDoc_STR("write(string) -> None")},
177   {NULL,    NULL}   /* sentinel */
178 };
179
180 static PyMemberDef PyStdOut_memberlist[] = {
181   {"softspace", T_INT,  offsetof(PyStdOut, softspace), 0,
182    "flag indicating that a space needs to be printed; used by print"},
183   {NULL} /* Sentinel */
184 };
185
186 static PyTypeObject PyStdOut_Type = {
187   /* The ob_type field must be initialized in the module init function
188    * to be portable to Windows without using C++. */
189   PyObject_HEAD_INIT(NULL)
190   0,                            /*ob_size*/
191   "PyOut",                      /*tp_name*/
192   sizeof(PyStdOut),             /*tp_basicsize*/
193   0,                            /*tp_itemsize*/
194   /* methods */
195   (destructor)PyStdOut_dealloc, /*tp_dealloc*/
196   0,                            /*tp_print*/
197   0,                            /*tp_getattr*/
198   0,                            /*tp_setattr*/
199   0,                            /*tp_compare*/
200   0,                            /*tp_repr*/
201   0,                            /*tp_as_number*/
202   0,                            /*tp_as_sequence*/
203   0,                            /*tp_as_mapping*/
204   0,                            /*tp_hash*/
205   0,                            /*tp_call*/
206   0,                            /*tp_str*/
207   PyObject_GenericGetAttr,      /*tp_getattro*/
208   /* softspace is writable:  we must supply tp_setattro */
209   PyObject_GenericSetAttr,      /* tp_setattro */
210   0,                            /*tp_as_buffer*/
211   Py_TPFLAGS_DEFAULT,           /*tp_flags*/
212   0,                            /*tp_doc*/
213   0,                            /*tp_traverse*/
214   0,                            /*tp_clear*/
215   0,                            /*tp_richcompare*/
216   0,                            /*tp_weaklistoffset*/
217   0,                            /*tp_iter*/
218   0,                            /*tp_iternext*/
219   PyStdOut_methods,             /*tp_methods*/
220   PyStdOut_memberlist,          /*tp_members*/
221   0,                            /*tp_getset*/
222   0,                            /*tp_base*/
223   0,                            /*tp_dict*/
224   0,                            /*tp_descr_get*/
225   0,                            /*tp_descr_set*/
226   0,                            /*tp_dictoffset*/
227   0,                            /*tp_init*/
228   0,                            /*tp_alloc*/
229   0,                            /*tp_new*/
230   0,                            /*tp_free*/
231   0,                            /*tp_is_gc*/
232 };
233
234 PyObject * newPyStdOut( std::string& out )
235 {
236   PyStdOut *self;
237   self = PyObject_New(PyStdOut, &PyStdOut_Type);
238   if (self == NULL)
239     return NULL;
240   self->softspace = 0;
241   self->out=&out;
242   return (PyObject*)self;
243 }
244
245 /*************************************************
246 End initialization Python structures and objects
247 **************************************************/
248
249
250 class QDoubleValidator;
251
252 //
253 // BEGIN EnforcedTreeWidgetDelegate
254 //
255
256 EnforcedTreeWidgetDelegate::EnforcedTreeWidgetDelegate(QObject *parent)
257   : QItemDelegate(parent)
258 {
259 }
260
261 QWidget *EnforcedTreeWidgetDelegate::createEditor(QWidget *parent,
262                                               const QStyleOptionViewItem & option ,
263                                               const QModelIndex & index ) const
264 {
265   QLineEdit *editor = new QLineEdit(parent);
266   if (index.column() == ENF_VER_X_COLUMN || \
267     index.column() == ENF_VER_Y_COLUMN || \
268     index.column() == ENF_VER_Z_COLUMN)
269     editor->setValidator(new QDoubleValidator(parent));
270
271   return editor;
272 }
273
274 void EnforcedTreeWidgetDelegate::setEditorData(QWidget *editor,
275                                            const QModelIndex &index) const
276 {
277   QString value = index.model()->data(index, Qt::EditRole).toString();
278
279   QLineEdit *lineEdit = static_cast<QLineEdit*>(editor);
280   lineEdit->setText(value);
281 }
282
283 void EnforcedTreeWidgetDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
284                                           const QModelIndex &index) const
285 {
286   QLineEdit *lineEdit = static_cast<QLineEdit*>(editor);
287
288   if (index.column() == ENF_VER_X_COLUMN || \
289     index.column() == ENF_VER_Y_COLUMN || \
290     index.column() == ENF_VER_Z_COLUMN)
291   {
292     if (not vertexExists(model, index, lineEdit->text())) {
293       bool ok;
294       double value = lineEdit->text().toDouble(&ok);
295       if (ok)
296         model->setData(index, value, Qt::EditRole);
297     }
298   }
299   else if (index.column() == ENF_VER_NAME_COLUMN) {
300     QString value = lineEdit->text();
301     if (not vertexExists(model, index, value))
302       model->setData(index, value, Qt::EditRole);
303 //     MESSAGE("Value " << value.toString().toStdString() << " was set at index(" << index.row() << "," << index.column() << ")");
304   }
305 }
306
307 void EnforcedTreeWidgetDelegate::updateEditorGeometry(QWidget *editor,
308     const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
309 {
310   editor->setGeometry(option.rect);
311 }
312
313 bool EnforcedTreeWidgetDelegate::vertexExists(QAbstractItemModel *model,
314     const QModelIndex &index, QString value) const
315 {
316   bool exists = false;
317   QModelIndex parent = index.parent();
318   int row = index.row();
319   int col = index.column();
320   
321   if (parent.isValid()) {
322     if (col == ENF_VER_X_COLUMN || col == ENF_VER_Y_COLUMN || col == ENF_VER_Z_COLUMN) {
323       double x, y, z;
324       if (col == ENF_VER_X_COLUMN) {
325         x = value.toDouble();
326         y = parent.child(row, ENF_VER_Y_COLUMN).data(Qt::EditRole).toDouble();
327         z = parent.child(row, ENF_VER_Z_COLUMN).data(Qt::EditRole).toDouble();
328       }
329       if (col == ENF_VER_Y_COLUMN) {
330         y = value.toDouble();
331         x = parent.child(row, ENF_VER_X_COLUMN).data(Qt::EditRole).toDouble();
332         z = parent.child(row, ENF_VER_Z_COLUMN).data(Qt::EditRole).toDouble();
333       }
334       if (col == ENF_VER_Z_COLUMN) {
335         z = value.toDouble();
336         x = parent.child(row, ENF_VER_X_COLUMN).data(Qt::EditRole).toDouble();
337         y = parent.child(row, ENF_VER_Y_COLUMN).data(Qt::EditRole).toDouble();
338       }
339       // MESSAGE("Checking for existing vertex " << x << ", " << y << "," << z);
340       int nbChildren = model->rowCount(parent);
341       for (int i = 0 ; i < nbChildren ; i++) {
342         if (i != row) {
343           double childX = parent.child(i, ENF_VER_X_COLUMN).data(Qt::EditRole).toDouble();
344           double childY = parent.child(i, ENF_VER_Y_COLUMN).data(Qt::EditRole).toDouble();
345           double childZ = parent.child(i, ENF_VER_Z_COLUMN).data(Qt::EditRole).toDouble();
346           MESSAGE("Vertex: " << childX << ", " << childY << "," << childZ);
347           if ((childX == x) && (childY == y) && (childZ == z)) {
348             MESSAGE("Found !");
349             exists = true;
350             break;
351           }
352         }
353       }
354     }
355     else if (index.column() == ENF_VER_NAME_COLUMN) {
356       int nbChildren = model->rowCount(parent);
357       for (int i = 0 ; i < nbChildren ; i++) {
358         if (i != row) {
359           QString childName = parent.child(i, ENF_VER_NAME_COLUMN).data(Qt::EditRole).toString();
360           if (childName == value) {
361             exists = true;
362             break;
363           }
364         }
365       }
366     }
367   }
368
369   return exists;
370 }
371
372 //
373 // END EnforcedTreeWidgetDelegate
374 //
375
376
377 /**
378  * \brief {BLSURFPluginGUI_HypothesisCreator constructor}
379  * @param theHypType Name of the hypothesis type (here BLSURF_Parameters)
380  *
381  * */
382 BLSURFPluginGUI_HypothesisCreator::BLSURFPluginGUI_HypothesisCreator( const QString& theHypType )
383   : SMESHGUI_GenericHypothesisCreator( theHypType )
384 {
385   MESSAGE("BLSURFPluginGUI_HypothesisCreator::BLSURFPluginGUI_HypothesisCreator");
386   this->mySMPMap.clear();
387
388   GeomToolSelected = NULL;
389   GeomToolSelected = getGeomSelectionTool();
390
391   aSel = GeomToolSelected->selectionMgr();
392
393   /* Initialize the Python interpreter */
394   if (not Py_IsInitialized())
395     throw ("Error: Python interpreter is not initialized");
396   PyGILState_STATE gstate;
397   gstate = PyGILState_Ensure();
398
399   main_mod = NULL;
400   main_mod = PyImport_AddModule("__main__");
401
402   main_dict = NULL;
403   main_dict = PyModule_GetDict(main_mod);
404
405   PyRun_SimpleString("from math import *");
406   PyGILState_Release(gstate);
407   
408 }
409
410 BLSURFPluginGUI_HypothesisCreator::~BLSURFPluginGUI_HypothesisCreator()
411 {
412 }
413
414 /**
415  * \brief {Get or create the geom selection tool for active study}
416  * */
417 GeomSelectionTools* BLSURFPluginGUI_HypothesisCreator::getGeomSelectionTool()
418 {
419   MESSAGE("BLSURFPluginGUI_HypothesisCreator::getGeomSelectionTool");
420   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
421   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
422   MESSAGE("aStudy->StudyId(): " << aStudy->StudyId());
423   if (that->GeomToolSelected == NULL or that->GeomToolSelected->getMyStudy() != aStudy) {
424     MESSAGE("GeomToolSelected is created");
425     that->GeomToolSelected = new GeomSelectionTools(aStudy);
426   }
427   else
428     MESSAGE("GeomToolSelected already exists");
429   MESSAGE("that->GeomToolSelected->getMyStudy()->StudyId(): " << that->GeomToolSelected->getMyStudy()->StudyId());
430   return that->GeomToolSelected;
431 }
432
433 namespace {
434   inline bool isDouble( const QString& theText, const bool emptyOK=false ) {
435     QString str = theText.trimmed();
436     bool isOk = true;
437     if ( !str.isEmpty() )
438       str.toDouble(&isOk);
439     else
440       isOk = emptyOK;
441     return isOk;
442   }
443 }
444
445
446 bool BLSURFPluginGUI_HypothesisCreator::checkParams() const
447 {
448   MESSAGE("BLSURFPluginGUI_HypothesisCreator::checkParams");
449   bool ok = true;
450   if ( !isDouble( myPhySize->text(), false )) {
451     if ( myPhySize->text().isEmpty() )
452       myPhySize->setText(tr("OBLIGATORY_VALUE"));
453     myPhySize->selectAll();
454     ok = false;
455   }
456   if ( !isDouble( myPhyMin->text(), true )) {
457     myPhyMin->selectAll();
458     ok = false;
459   }
460   if ( !isDouble( myPhyMax->text(), true )) {
461     myPhyMax->selectAll();
462     ok = false;
463   }
464   if ( !isDouble( myGeoMin->text(), true )) {
465     myGeoMin->selectAll();
466     ok = false;
467   }
468   if ( !isDouble( myGeoMin->text(), true )) {
469     myGeoMin->selectAll();
470     ok = false;
471   }
472   if ( ok )
473   {
474     myOptionTable->setFocus();
475     QApplication::instance()->processEvents();
476
477     BLSURFPlugin::BLSURFPlugin_Hypothesis_var h =
478       BLSURFPlugin::BLSURFPlugin_Hypothesis::_narrow( initParamsHypothesis() );
479
480     int row = 0, nbRows = myOptionTable->rowCount();
481     for ( ; row < nbRows; ++row )
482     {
483       QString name  = myOptionTable->item( row, OPTION_NAME_COLUMN )->text();
484       QString value = myOptionTable->item( row, OPTION_VALUE_COLUMN )->text().trimmed();
485       if ( !value.isEmpty() ) {
486         try {
487           h->SetOptionValue( name.toLatin1().constData(), value.toLatin1().constData() );
488         }
489         catch ( const SALOME::SALOME_Exception& ex )
490         {
491           SUIT_MessageBox::critical( dlg(),
492                                      tr("SMESH_ERROR"),
493                                      ex.details.text.in() );
494           ok = false;
495         }
496       }
497     }
498     h->SetOptionValues( myOptions ); // restore values
499   }
500
501   // SizeMap and attractors
502   if ( ok )
503   {
504     mySizeMapTable->setFocus();
505     QApplication::instance()->processEvents();
506
507     BLSURFPlugin::BLSURFPlugin_Hypothesis_var h = BLSURFPlugin::BLSURFPlugin_Hypothesis::_narrow( initParamsHypothesis() );
508     BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
509
510     int row = 0, nbRows = mySizeMapTable->rowCount();
511     for ( ; row < nbRows; ++row )
512     {
513       QString entry   = mySizeMapTable->item( row, SMP_ENTRY_COLUMN )->text();
514       QString sizeMap = mySizeMapTable->item( row, SMP_SIZEMAP_COLUMN )->text().trimmed();
515       if ( !sizeMap.isEmpty() ) {
516         if (that->sizeMapValidationFromRow(row))
517         {
518           try {
519             const char* e = entry.toLatin1().constData();
520             const char* s = that->mySMPMap[entry].toLatin1().constData();
521             h->SetSizeMapEntry( e, s );
522           }
523           catch ( const SALOME::SALOME_Exception& ex )
524           {
525             SUIT_MessageBox::critical( dlg(),
526                                        tr("SMESH_ERROR"),
527                                        ex.details.text.in() );
528             ok = false;
529           }
530         }
531         else {
532           ok = false;
533         }
534       }
535     }
536   }
537
538   // Enforced verteces
539   // TODO
540   
541   return ok;
542 }
543
544 QFrame* BLSURFPluginGUI_HypothesisCreator::buildFrame()
545 {
546   MESSAGE("BLSURFPluginGUI_HypothesisCreator::buildFrame");
547   QFrame* fr = new QFrame( 0 );
548   QVBoxLayout* lay = new QVBoxLayout( fr );
549   lay->setMargin( 5 );
550   lay->setSpacing( 0 );
551
552   // tab
553   QTabWidget* tab = new QTabWidget( fr );
554   tab->setTabShape( QTabWidget::Rounded );
555   tab->setTabPosition( QTabWidget::North );
556   lay->addWidget( tab );
557
558   // basic parameters
559   myStdGroup = new QWidget();
560   QGridLayout* aStdLayout = new QGridLayout( myStdGroup );
561   aStdLayout->setSpacing( 6 );
562   aStdLayout->setMargin( 11 );
563
564   int row = 0;
565   myName = 0;
566   if( isCreation() ) {
567     aStdLayout->addWidget( new QLabel( tr( "SMESH_NAME" ), myStdGroup ), row, 0, 1, 1 );
568     myName = new QLineEdit( myStdGroup );
569     aStdLayout->addWidget( myName, row++, 1, 1, 1 );
570   }
571
572   aStdLayout->addWidget( new QLabel( tr( "BLSURF_GRADATION" ), myStdGroup ), row, 0, 1, 1 );
573   myGradation = new SalomeApp_DoubleSpinBox( myStdGroup );
574   aStdLayout->addWidget( myGradation, row++, 1, 1, 1 );
575   myGradation->setMinimum( 1.1 );
576   myGradation->setMaximum( 2.5 );
577   myGradation->setSingleStep( 0.1 );
578
579   aStdLayout->addWidget( new QLabel( tr( "BLSURF_PHY_MESH" ), myStdGroup ), row, 0, 1, 1 );
580   myPhysicalMesh = new QComboBox( myStdGroup );
581   aStdLayout->addWidget( myPhysicalMesh, row++, 1, 1, 1 );
582   QStringList physicalTypes;
583   physicalTypes << tr( "BLSURF_DEFAULT_USER" ) << tr( "BLSURF_CUSTOM_USER" ) << tr( "BLSURF_SIZE_MAP");
584   myPhysicalMesh->addItems( physicalTypes );
585
586   aStdLayout->addWidget( new QLabel( tr( "BLSURF_HPHYDEF" ), myStdGroup), row, 0, 1, 1 );
587   myPhySize = new QLineEdit( myStdGroup );
588   aStdLayout->addWidget( myPhySize, row++, 1, 1, 1 );
589
590 #ifdef WITH_SIZE_BOUNDARIES
591   aStdLayout->addWidget( new QLabel( tr( "BLSURF_HPHYMIN" ), myStdGroup ), row, 0, 1, 1 );
592   myPhyMin = new QLineEdit( myStdGroup );
593   aStdLayout->addWidget( myPhyMin, row++, 1, 1, 1 );
594
595   aStdLayout->addWidget( new QLabel( tr( "BLSURF_HPHYMAX" ), myStdGroup ), row, 0, 1, 1 );
596   myPhyMax = new QLineEdit( myStdGroup );
597   aStdLayout->addWidget( myPhyMax, row++, 1, 1, 1 );
598 #endif
599
600   aStdLayout->addWidget( new QLabel( tr( "BLSURF_GEOM_MESH" ), myStdGroup ), row, 0, 1, 1 );
601   myGeometricMesh = new QComboBox( myStdGroup );
602   aStdLayout->addWidget( myGeometricMesh, row++, 1, 1, 1 );
603   QStringList types;
604   types << tr( "BLSURF_DEFAULT_GEOM" ) << tr( "BLSURF_CUSTOM_GEOM" );
605   myGeometricMesh->addItems( types );
606
607   aStdLayout->addWidget( new QLabel( tr( "BLSURF_ANGLE_MESH_S" ), myStdGroup ), row, 0, 1, 1 );
608   myAngleMeshS = new SalomeApp_DoubleSpinBox( myStdGroup );
609   aStdLayout->addWidget( myAngleMeshS, row++, 1, 1, 1 );
610   myAngleMeshS->setMinimum( 0 );
611   myAngleMeshS->setMaximum( 16 );
612   myAngleMeshS->setSingleStep( 0.5 );
613
614   aStdLayout->addWidget( new QLabel( tr( "BLSURF_ANGLE_MESH_C" ), myStdGroup ), row, 0, 1, 1 );
615   myAngleMeshC = new SalomeApp_DoubleSpinBox( myStdGroup );
616   aStdLayout->addWidget( myAngleMeshC, row++, 1, 1, 1 );
617   myAngleMeshC->setMinimum( 0 );
618   myAngleMeshC->setMaximum( 16 );
619   myAngleMeshC->setSingleStep( 0.5 );
620
621 #ifdef WITH_SIZE_BOUNDARIES
622   aStdLayout->addWidget( new QLabel( tr( "BLSURF_HGEOMIN" ), myStdGroup ), row, 0, 1, 1 );
623   myGeoMin = new QLineEdit( myStdGroup );
624   aStdLayout->addWidget( myGeoMin, row++, 1, 1, 1 );
625
626   aStdLayout->addWidget( new QLabel( tr( "BLSURF_HGEOMAX" ), myStdGroup ), row, 0, 1, 1 );
627   myGeoMax = new QLineEdit( myStdGroup );
628   aStdLayout->addWidget( myGeoMax, row++, 1, 1, 1 );
629 #endif
630
631   myAllowQuadrangles = new QCheckBox( tr( "BLSURF_ALLOW_QUADRANGLES" ), myStdGroup );
632   aStdLayout->addWidget( myAllowQuadrangles, row++, 0, 1, 2 );
633
634   myDecimesh = new QCheckBox( tr( "BLSURF_DECIMESH" ), myStdGroup );
635   aStdLayout->addWidget( myDecimesh, row++, 0, 1, 2 );
636
637   // advanced parameters
638   myAdvGroup = new QWidget();
639   QGridLayout* anAdvLayout = new QGridLayout( myAdvGroup );
640   anAdvLayout->setSpacing( 6 );
641   anAdvLayout->setMargin( 11 );
642
643   anAdvLayout->addWidget( new QLabel( tr( "BLSURF_TOPOLOGY" ), myAdvGroup ), 0, 0, 1, 1 );
644   myTopology = new QComboBox( myAdvGroup );
645   anAdvLayout->addWidget( myTopology, 0, 1, 1, 1 );
646   QStringList topologyTypes;
647   topologyTypes << tr( "BLSURF_TOPOLOGY_CAD" ) << tr( "BLSURF_TOPOLOGY_PROCESS" ) << tr( "BLSURF_TOPOLOGY_PROCESS2" );
648   myTopology->addItems( topologyTypes );
649
650   anAdvLayout->addWidget( new QLabel( tr( "BLSURF_VERBOSITY" ), myAdvGroup ), 1, 0, 1, 1 );
651   myVerbosity = new QSpinBox( myAdvGroup );
652   anAdvLayout->addWidget( myVerbosity, 1, 1, 1, 1 );
653   myVerbosity->setMinimum( 0 );
654   myVerbosity->setMaximum( 100 );
655   myVerbosity->setSingleStep( 5 );
656
657   myOptionTable = new QTableWidget( 0, NB_COLUMNS, myAdvGroup );
658   anAdvLayout->addWidget( myOptionTable, 2, 0, 3, 2 );
659   QStringList headers;
660   headers << tr( "OPTION_ID_COLUMN" ) << tr( "OPTION_NAME_COLUMN" ) << tr( "OPTION_VALUE_COLUMN" );
661   myOptionTable->setHorizontalHeaderLabels( headers );
662   myOptionTable->horizontalHeader()->hideSection( OPTION_ID_COLUMN );
663   //myOptionTable->setColumnReadOnly( OPTION_NAME_COLUMN, TRUE );//////
664   //myOptionTable->setColumnReadOnly( OPTION_VALUE_COLUMN, FALSE );/////
665   myOptionTable->verticalHeader()->hide();
666   //myOptionTable->setSelectionBehavior( QAbstractItemView::SelectRows );
667
668   QPushButton* addBtn = new QPushButton( tr( "ADD_OPTION"),  myAdvGroup );
669   anAdvLayout->addWidget( addBtn, 2, 2, 1, 1 );
670   addBtn->setMenu( new QMenu() );
671
672   QPushButton* rmBtn = new QPushButton( tr( "REMOVE_OPTION"), myAdvGroup );
673   anAdvLayout->addWidget( rmBtn, 3, 2, 1, 1 );
674
675   anAdvLayout->setRowStretch( 4, 5 );
676   anAdvLayout->setColumnStretch( 1, 5 );
677
678   // Size Maps parameters
679
680   mySmpGroup = new QWidget();
681   QGridLayout* anSmpLayout = new QGridLayout(mySmpGroup);
682
683   mySizeMapTable = new QTableWidget( 0, SMP_NB_COLUMNS, mySmpGroup );
684   anSmpLayout->addWidget(mySizeMapTable, 1, 0, 8, 1);
685   QStringList sizeMapHeaders;
686   sizeMapHeaders << tr( "SMP_ENTRY_COLUMN" )<< tr( "SMP_NAME_COLUMN" ) << tr( "SMP_SIZEMAP_COLUMN" );
687   mySizeMapTable->setHorizontalHeaderLabels(sizeMapHeaders);
688   mySizeMapTable->horizontalHeader()->hideSection( SMP_ENTRY_COLUMN );
689 //   mySizeMapTable->horizontalHeader()->setResizeMode(QHeaderView::Stretch);
690   mySizeMapTable->resizeColumnToContents(SMP_NAME_COLUMN);
691   mySizeMapTable->resizeColumnToContents(SMP_SIZEMAP_COLUMN);
692   mySizeMapTable->setAlternatingRowColors(true);
693   mySizeMapTable->verticalHeader()->hide();
694
695 /*
696   addAttractorButton = new QPushButton(tr("BLSURF_SM_ATTRACTOR"),mySmpGroup);
697   anSmpLayout->addWidget(addAttractorButton, SMP_ATTRACTOR_BTN, 1, 1, 1);
698
699   QFrame *line = new QFrame(mySmpGroup);
700   line->setFrameShape(QFrame::HLine);
701   line->setFrameShadow(QFrame::Sunken);
702   anSmpLayout->addWidget(line, SMP_SEPARATOR1, 1, 1, 1);
703 */
704   addSurfaceButton = new QPushButton(tr("BLSURF_SM_SURFACE"),mySmpGroup);
705   anSmpLayout->addWidget(addSurfaceButton, SMP_SURFACE_BTN, 1, 1, 1);
706
707   addEdgeButton = new QPushButton(tr("BLSURF_SM_EDGE"),mySmpGroup);
708   anSmpLayout->addWidget(addEdgeButton, SMP_EDGE_BTN, 1, 1, 1);
709
710   addPointButton = new QPushButton(tr("BLSURF_SM_POINT"),mySmpGroup);
711   anSmpLayout->addWidget(addPointButton, SMP_POINT_BTN, 1, 1, 1);
712
713   QFrame *line2 = new QFrame(mySmpGroup);
714   line2->setFrameShape(QFrame::HLine);
715   line2->setFrameShadow(QFrame::Sunken);
716   anSmpLayout->addWidget(line2, SMP_SEPARATOR2, 1, 1, 1);
717
718   removeButton = new QPushButton(tr("BLSURF_SM_REMOVE"),mySmpGroup);
719   anSmpLayout->addWidget(removeButton, SMP_REMOVE_BTN, 1, 1, 1);
720
721   // Enforced verteces parameters
722
723   myEnfGroup = new QWidget();
724   QGridLayout* anEnfLayout = new QGridLayout(myEnfGroup);
725
726   myEnforcedTreeWidget = new QTreeWidget(myEnfGroup);
727   myEnforcedTreeWidget->setColumnCount( ENF_VER_NB_COLUMNS );
728   myEnforcedTreeWidget->setSortingEnabled(true);
729   QStringList enforcedHeaders;
730   enforcedHeaders << tr("BLSURF_ENF_VER_NAME_COLUMN") << tr("BLSURF_ENF_VER_ENTRY_COLUMN") << tr( "BLSURF_ENF_VER_X_COLUMN" )<< tr( "BLSURF_ENF_VER_Y_COLUMN" ) << tr( "BLSURF_ENF_VER_Z_COLUMN" ) ;
731   myEnforcedTreeWidget->setHeaderLabels(enforcedHeaders);
732   myEnforcedTreeWidget->setAlternatingRowColors(true);
733   myEnforcedTreeWidget->setUniformRowHeights(true);
734   myEnforcedTreeWidget->setAnimated(true);
735   myEnforcedTreeWidget->setSelectionMode(QAbstractItemView::ExtendedSelection);
736   myEnforcedTreeWidget->setSelectionBehavior(QAbstractItemView::SelectItems);
737   for (int column = 0; column < ENF_VER_NB_COLUMNS; ++column) {
738     myEnforcedTreeWidget->header()->setResizeMode(column,QHeaderView::Interactive);
739     myEnforcedTreeWidget->resizeColumnToContents(column);
740   }
741   myEnforcedTreeWidget->hideColumn(ENF_VER_ENTRY_COLUMN);
742   myEnforcedTreeWidget->setItemDelegate(new EnforcedTreeWidgetDelegate());
743   anEnfLayout->addWidget(myEnforcedTreeWidget, 0, 0, 8, 1);
744
745   QLabel* myXCoordLabel = new QLabel( tr( "BLSURF_ENF_VER_X_LABEL" ), myEnfGroup );
746   anEnfLayout->addWidget(myXCoordLabel, ENF_VER_X_COORD, 1, 1, 1);
747   myXCoord = new QLineEdit(myEnfGroup);
748   myXCoord->setValidator(new QDoubleValidator(myEnfGroup));
749   anEnfLayout->addWidget(myXCoord, ENF_VER_X_COORD, 2, 1, 1);
750   
751   QLabel* myYCoordLabel = new QLabel( tr( "BLSURF_ENF_VER_Y_LABEL" ), myEnfGroup );
752   anEnfLayout->addWidget(myYCoordLabel, ENF_VER_Y_COORD, 1, 1, 1);
753   myYCoord = new QLineEdit(myEnfGroup);
754   myYCoord->setValidator(new QDoubleValidator(myEnfGroup));
755   anEnfLayout->addWidget(myYCoord, ENF_VER_Y_COORD, 2, 1, 1);
756   
757   QLabel* myZCoordLabel = new QLabel( tr( "BLSURF_ENF_VER_Z_LABEL" ), myEnfGroup );
758   anEnfLayout->addWidget(myZCoordLabel, ENF_VER_Z_COORD, 1, 1, 1);
759   myZCoord = new QLineEdit(myEnfGroup);
760   myZCoord->setValidator(new QDoubleValidator(myEnfGroup));
761   anEnfLayout->addWidget(myZCoord, ENF_VER_Z_COORD, 2, 1, 1);
762
763   addVertexButton = new QPushButton(tr("BLSURF_ENF_VER_VERTEX"),myEnfGroup);
764   anEnfLayout->addWidget(addVertexButton, ENF_VER_VERTEX_BTN, 1, 1, 2);
765
766   QFrame *line = new QFrame(myEnfGroup);
767   line->setFrameShape(QFrame::HLine);
768   line->setFrameShadow(QFrame::Sunken);
769   anEnfLayout->addWidget(line, ENF_VER_SEPARATOR, 1, 1, 2);
770
771   removeVertexButton = new QPushButton(tr("BLSURF_ENF_VER_REMOVE"),myEnfGroup);
772   anEnfLayout->addWidget(removeVertexButton, ENF_VER_REMOVE_BTN, 1, 1, 2);
773
774   // ---
775   tab->insertTab( STD_TAB, myStdGroup, tr( "SMESH_ARGUMENTS" ) );
776   tab->insertTab( ADV_TAB, myAdvGroup, tr( "BLSURF_ADV_ARGS" ) );
777   tab->insertTab( SMP_TAB, mySmpGroup, tr( "BLSURF_SIZE_MAP" ) );
778   tab->insertTab( ENF_TAB, myEnfGroup, tr( "BLSURF_ENF_VER" ) );
779
780   tab->setCurrentIndex( STD_TAB );
781
782   // ---
783   connect( myGeometricMesh,    SIGNAL( activated( int ) ),            this,         SLOT( onGeometricMeshChanged() ) );
784   connect( myPhysicalMesh,     SIGNAL( activated( int ) ),            this,         SLOT( onPhysicalMeshChanged() ) );
785   connect( addBtn->menu(),     SIGNAL( aboutToShow() ),               this,         SLOT( onAddOption() ) );
786   connect( addBtn->menu(),     SIGNAL( triggered( QAction* ) ),       this,         SLOT( onOptionChosenInPopup( QAction* ) ) );
787   connect( rmBtn,              SIGNAL( clicked()),                    this,         SLOT( onDeleteOption() ) );
788
789   connect( addSurfaceButton,   SIGNAL( clicked()),                    this,         SLOT( onAddMapOnSurface() ) );
790   connect( addEdgeButton,      SIGNAL( clicked()),                    this,         SLOT( onAddMapOnEdge() ) );
791   connect( addPointButton,     SIGNAL( clicked()),                    this,         SLOT( onAddMapOnPoint() ) );
792   connect( removeButton,       SIGNAL( clicked()),                    this,         SLOT( onRemoveMap() ) );
793   connect( mySizeMapTable,     SIGNAL( cellChanged ( int, int  )),    this,         SLOT( onSetSizeMap(int,int ) ) );
794
795   connect( myEnforcedTreeWidget,SIGNAL( itemClicked(QTreeWidgetItem *, int)), this, SLOT( synchronizeCoords() ) );
796   connect( myEnforcedTreeWidget,SIGNAL( itemChanged(QTreeWidgetItem *, int)), this, SLOT( update(QTreeWidgetItem *, int) ) );
797   connect( myEnforcedTreeWidget,SIGNAL( itemSelectionChanged() ),     this,         SLOT( synchronizeCoords() ) );
798   connect( myEnforcedTreeWidget,SIGNAL( activated(QModelIndex&)),     this,         SLOT( onEnforcedVertexActivated() ) );
799   connect( addVertexButton,    SIGNAL( clicked()),                    this,         SLOT( onAddEnforcedVerteces() ) );
800   connect( removeVertexButton, SIGNAL( clicked()),                    this,         SLOT( onRemoveEnforcedVertex() ) );
801
802   return fr;
803 }
804
805 /** BLSURFPluginGUI_HypothesisCreator::update(item, column)
806 This method updates the tooltip of a modified item. The QLineEdit widgets content
807 is synchronized with the coordinates of the enforced vertex clicked in the tree widget.
808 */
809 void BLSURFPluginGUI_HypothesisCreator::update(QTreeWidgetItem* item, int column) {
810 //   MESSAGE("BLSURFPluginGUI_HypothesisCreator::updateVertexList");
811   QVariant x = item->data(ENF_VER_X_COLUMN, Qt::EditRole);
812   if (not x.isNull()) {
813     QVariant y = item->data(ENF_VER_Y_COLUMN, Qt::EditRole);
814     QVariant z = item->data(ENF_VER_Z_COLUMN, Qt::EditRole);
815     QVariant vertexName = item->data(ENF_VER_NAME_COLUMN, Qt::EditRole);
816     
817     QTreeWidgetItem* parent = item->parent();
818     if (parent) {
819       QString shapeName = parent->data(ENF_VER_NAME_COLUMN, Qt::EditRole).toString();
820       QString toolTip = shapeName + QString(": ") + vertexName.toString();
821       toolTip += QString("(") + x.toString();
822       toolTip += QString(", ") + y.toString();
823       toolTip += QString(", ") + z.toString();
824       toolTip += QString(")");
825       item->setToolTip(ENF_VER_NAME_COLUMN,toolTip);
826     }
827     
828     myXCoord->setText(x.toString());
829     myYCoord->setText(y.toString());
830     myZCoord->setText(z.toString());
831   }
832 }
833
834 /** BLSURFPluginGUI_HypothesisCreator::synchronizeCoords()
835 This method synchronizes the QLineEdit widgets content with the coordinates
836 of the enforced vertex clicked in the tree widget.
837 */
838 void BLSURFPluginGUI_HypothesisCreator::synchronizeCoords() {
839 //   MESSAGE("BLSURFPluginGUI_HypothesisCreator::synchronizeCoords");
840   QList<QTreeWidgetItem *> items = myEnforcedTreeWidget->selectedItems();
841   if (not items.isEmpty()) {
842     QTreeWidgetItem *item;
843     for (int i=0 ; i < items.size() ; i++) {
844       item = items[i];
845       QVariant x = item->data(ENF_VER_X_COLUMN, Qt::EditRole);
846       if (not x.isNull()) {
847         QVariant y = item->data(ENF_VER_Y_COLUMN, Qt::EditRole);
848         QVariant z = item->data(ENF_VER_Z_COLUMN, Qt::EditRole);
849         myXCoord->setText(x.toString());
850         myYCoord->setText(y.toString());
851         myZCoord->setText(z.toString());
852         break;
853       }
854     }
855   }
856 }
857
858 /** BLSURFPluginGUI_HypothesisCreator::addEnforcedVertex(entry, shapeName, x, y, z)
859 This method adds an enforced vertex (x,y,z) to shapeName in the tree widget.
860 */
861 void BLSURFPluginGUI_HypothesisCreator::addEnforcedVertex(std::string entry, std::string shapeName, double x, double y, double z) {
862   // Find entry item
863   QList<QTreeWidgetItem* > theItemList = myEnforcedTreeWidget->findItems(QString(entry.c_str()),Qt::MatchExactly,ENF_VER_ENTRY_COLUMN);
864   QTreeWidgetItem* theItem;
865   if (theItemList.empty()) {
866     theItem = new QTreeWidgetItem();
867     theItem->setData(ENF_VER_ENTRY_COLUMN, Qt::EditRole, QVariant(entry.c_str()));
868     theItem->setData(ENF_VER_NAME_COLUMN, Qt::EditRole, QVariant(shapeName.c_str()));
869     theItem->setToolTip(ENF_VER_NAME_COLUMN,QString(entry.c_str()));
870     myEnforcedTreeWidget->addTopLevelItem(theItem);
871   }
872   else {
873     theItem = theItemList[0];
874   }
875
876 //   MESSAGE("theItemName is " << theItem->text(ENF_VER_NAME_COLUMN).toStdString());
877   bool okToCreate = true;
878
879   const int nbVert = theItem->childCount();
880 //   MESSAGE("Number of child rows: " << nbVert);
881   if (nbVert >0) {
882     double childValueX,childValueY,childValueZ;
883     QTreeWidgetItem* child;
884     for (int row = 0;row<nbVert;row++) {
885       child = theItem->child(row);
886       childValueX = child->data(ENF_VER_X_COLUMN,Qt::EditRole).toDouble();
887       childValueY = child->data(ENF_VER_Y_COLUMN,Qt::EditRole).toDouble();
888       childValueZ = child->data(ENF_VER_Z_COLUMN,Qt::EditRole).toDouble();
889       if ((childValueX == x) and (childValueY == y) and (childValueZ == z)) {
890         okToCreate = false;
891         break;
892       }
893     }
894   }
895   if (okToCreate) {
896     MESSAGE("In " << shapeName << " vertex with coords " << x << ", " << y << ", " << z<< " is created");
897     
898     QTreeWidgetItem *vertexItem = new QTreeWidgetItem( theItem);
899     vertexItem->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEditable | Qt::ItemIsEnabled);
900     int vertexIndex=1;
901     QString vertexName;
902     int indexRef = 0;
903     while(indexRef != vertexIndex) {
904       indexRef = vertexIndex;
905       vertexName = QString("Vertex #%1").arg(vertexIndex);
906       for (int row = 0;row<nbVert;row++) {
907         QString name = theItem->child(row)->data(ENF_VER_NAME_COLUMN,Qt::EditRole).toString();
908         if (vertexName == name) {
909           vertexIndex++;
910           break;
911         }
912       }
913     }
914     vertexItem->setData( ENF_VER_NAME_COLUMN, Qt::EditRole, vertexName );
915     vertexItem->setData( ENF_VER_X_COLUMN, Qt::EditRole, QVariant(x) );
916     vertexItem->setData( ENF_VER_Y_COLUMN, Qt::EditRole, QVariant(y) );
917     vertexItem->setData( ENF_VER_Z_COLUMN, Qt::EditRole, QVariant(z) );
918     QString toolTip = QString(shapeName.c_str())+QString(": ")+vertexName;
919     toolTip += QString(" (%1, ").arg(x);
920     toolTip += QString("%1, ").arg(y);
921     toolTip += QString("%1)").arg(z);
922     vertexItem->setToolTip(ENF_VER_NAME_COLUMN,toolTip);
923     theItem->setExpanded(true);
924     myEnforcedTreeWidget->setCurrentItem(vertexItem,ENF_VER_NAME_COLUMN);
925   }
926   else
927     MESSAGE("In " << shapeName << " vertex with coords " << x << ", " << y << ", " << z<< " already exist: dont create again");
928 }
929
930 /** BLSURFPluginGUI_HypothesisCreator::onAddEnforcedVerteces()
931 This method is called when a item is added into the enforced verteces tree widget
932 */
933 void BLSURFPluginGUI_HypothesisCreator::onAddEnforcedVerteces() {
934   MESSAGE("BLSURFPluginGUI_HypothesisCreator::onAddEnforcedVerteces");
935
936   for (int column = 0; column < myEnforcedTreeWidget->columnCount(); ++column)
937     myEnforcedTreeWidget->resizeColumnToContents(column);
938   
939   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
940   
941   if ((myXCoord->text().isEmpty()) or (myYCoord->text().isEmpty()) or (myZCoord->text().isEmpty())) return;
942   
943   double x = myXCoord->text().toDouble();
944   double y = myYCoord->text().toDouble();
945   double z = myZCoord->text().toDouble();
946   
947   TopAbs_ShapeEnum shapeType;
948   string entry, shapeName;
949   GeomSelectionTools* myGeomToolSelected = that->getGeomSelectionTool();
950   LightApp_SelectionMgr* mySel = myGeomToolSelected->selectionMgr();
951   SALOME_ListIO ListSelectedObjects;
952   mySel->selectedObjects(ListSelectedObjects, NULL, false );
953   if (!ListSelectedObjects.IsEmpty()) {
954     SALOME_ListIteratorOfListIO Object_It(ListSelectedObjects);
955     for (; Object_It.More(); Object_It.Next()) {
956       Handle(SALOME_InteractiveObject) anObject = Object_It.Value();
957       entry     = myGeomToolSelected->getEntryOfObject(anObject);
958       shapeName = anObject->getName();
959       shapeType = myGeomToolSelected->entryToShapeType(entry);
960 //       MESSAGE("Object Name = " << shapeName << "& Type is " << anObject->getComponentDataType() << " & ShapeType is " << shapeType);
961       if (shapeType == TopAbs_FACE) {
962         addEnforcedVertex(entry, shapeName, x, y, z);
963       }
964     }
965   }
966   for (int column = 0; column < myEnforcedTreeWidget->columnCount(); ++column)
967     myEnforcedTreeWidget->resizeColumnToContents(column);
968   
969   if ( myPhysicalMesh->currentIndex() != SizeMap ) {
970     myPhysicalMesh->setCurrentIndex( SizeMap );
971     onPhysicalMeshChanged();
972   }
973 }
974
975 /** BLSURFPluginGUI_HypothesisCreator::onRemoveEnforcedVertex()
976 This method is called when a item is removed from the enforced verteces tree widget
977 */
978 void BLSURFPluginGUI_HypothesisCreator::onRemoveEnforcedVertex() {
979   MESSAGE("BLSURFPluginGUI_HypothesisCreator::onRemoveEnforcedVertex");
980   QList<QTreeWidgetItem *> selectedItems = myEnforcedTreeWidget->selectedItems();
981   QList<QTreeWidgetItem *> selectedVerteces;
982   QSet<QTreeWidgetItem *> selectedEntries;
983   QTreeWidgetItem* item;
984
985   foreach( item, selectedItems ) {
986     QVariant value = item->data(ENF_VER_X_COLUMN, Qt::EditRole);
987     if (not value.isNull())
988       selectedVerteces.append(item);
989
990     else
991       selectedEntries.insert(item);
992   }
993
994   foreach(item,selectedVerteces) {
995     QTreeWidgetItem* parent = item->parent();
996     MESSAGE("From geometry "<< parent->text(ENF_VER_NAME_COLUMN).toStdString()<<" remove " << item->text(ENF_VER_NAME_COLUMN).toStdString());
997     parent->removeChild(item);
998     delete item;
999     if (parent->childCount() == 0) {
1000       if (selectedEntries.contains(parent))
1001         selectedEntries.remove(parent);
1002       delete parent;
1003     }
1004   }
1005
1006   foreach(item,selectedEntries) {
1007     MESSAGE("Remove " << item->text(ENF_VER_NAME_COLUMN).toStdString());
1008     delete item;
1009   }
1010
1011   myEnforcedTreeWidget->selectionModel()->clearSelection();
1012 }
1013
1014 /** BLSURFPluginGUI_HypothesisCreator::retrieveParams()
1015 This method updates the GUI widgets with the hypothesis data
1016 */
1017 void BLSURFPluginGUI_HypothesisCreator::retrieveParams() const
1018 {
1019   MESSAGE("BLSURFPluginGUI_HypothesisCreator::retrieveParams");
1020   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1021
1022   BlsurfHypothesisData data;
1023   that->readParamsFromHypo( data );
1024
1025   if ( myName ) {
1026     myName->setText( data.myName );
1027     QFontMetrics metrics( myName->font() );
1028     myName->setMinimumWidth( metrics.width( data.myName )+5 );
1029   }
1030   myTopology->setCurrentIndex( data.myTopology );
1031   myPhysicalMesh->setCurrentIndex( data.myPhysicalMesh );
1032   myPhySize->setText( data.myPhySize );
1033 #ifdef WITH_SIZE_BOUNDARIES
1034   myPhyMin->setText( data.myPhyMin );
1035   myPhyMax->setText( data.myPhyMax );
1036   myGeoMin->setText( data.myGeoMin );
1037   myGeoMax->setText( data.myGeoMax );
1038 #endif
1039   myGeometricMesh->setCurrentIndex( data.myGeometricMesh );
1040   myAngleMeshS->setValue( data.myAngleMeshS );
1041   myAngleMeshC->setValue( data.myAngleMeshC );
1042   myGradation->setValue( data.myGradation );
1043   myAllowQuadrangles->setChecked( data.myAllowQuadrangles );
1044   myDecimesh->setChecked( data.myDecimesh );
1045   myVerbosity->setValue( data.myVerbosity );
1046
1047   if ( myOptions.operator->() ) {
1048     MESSAGE("retrieveParams():myOptions->length() = " << myOptions->length());
1049     for ( int i = 0, nb = myOptions->length(); i < nb; ++i ) {
1050       QString option = that->myOptions[i].in();
1051       QStringList name_value = option.split( ":", QString::KeepEmptyParts );
1052       if ( name_value.count() > 1 ) {
1053         QString idStr = QString("%1").arg( i );
1054         int row = myOptionTable->rowCount();
1055         myOptionTable->setRowCount( row+1 );
1056         myOptionTable->setItem( row, OPTION_ID_COLUMN, new QTableWidgetItem( idStr ) );
1057         myOptionTable->item( row, OPTION_ID_COLUMN )->setFlags( 0 );
1058         myOptionTable->setItem( row, OPTION_NAME_COLUMN, new QTableWidgetItem( name_value[0] ) );
1059         myOptionTable->item( row, OPTION_NAME_COLUMN )->setFlags( 0 );
1060         myOptionTable->setItem( row, OPTION_VALUE_COLUMN, new QTableWidgetItem( name_value[1] ) );
1061         myOptionTable->item( row, OPTION_VALUE_COLUMN )->setFlags( Qt::ItemIsSelectable |
1062                                                                   Qt::ItemIsEditable   |
1063                                                                   Qt::ItemIsEnabled );
1064       }
1065     }
1066   }
1067   myOptionTable->resizeColumnToContents( OPTION_NAME_COLUMN );
1068
1069   // Sizemaps
1070   MESSAGE("retrieveParams():that->mySMPMap.size() = " << that->mySMPMap.size());
1071   QMapIterator<QString, QString> i(that->mySMPMap);
1072   GeomSelectionTools* myGeomToolSelected = that->getGeomSelectionTool();
1073   while (i.hasNext()) {
1074     i.next();
1075     const QString entry = i.key();
1076     string shapeName = myGeomToolSelected->getNameFromEntry(entry.toStdString());
1077     const QString sizeMap = i.value();
1078     int row = mySizeMapTable->rowCount();
1079     mySizeMapTable->setRowCount( row+1 );
1080     mySizeMapTable->setItem( row, SMP_ENTRY_COLUMN, new QTableWidgetItem( entry ) );
1081     mySizeMapTable->item( row, SMP_ENTRY_COLUMN )->setFlags( 0 );
1082     mySizeMapTable->setItem( row, SMP_NAME_COLUMN, new QTableWidgetItem( QString::fromStdString(shapeName) ) );
1083     mySizeMapTable->item( row, SMP_NAME_COLUMN )->setFlags( 0 );
1084     mySizeMapTable->setItem( row, SMP_SIZEMAP_COLUMN, new QTableWidgetItem( sizeMap ) );
1085     mySizeMapTable->item( row, SMP_SIZEMAP_COLUMN )->setFlags( Qt::ItemIsSelectable |
1086                                                                Qt::ItemIsEditable   |
1087                                                                Qt::ItemIsEnabled );
1088     }
1089
1090   mySizeMapTable->resizeColumnToContents( SMP_NAME_COLUMN );
1091   mySizeMapTable->resizeColumnToContents(SMP_SIZEMAP_COLUMN);
1092
1093   // Enforced verteces
1094   MESSAGE("retrieveParams(): data.enfVertMap.size() = " << data.enfVertMap.size());
1095   std::map<std::string, std::set<std::vector<double> > >::const_iterator evmIt = data.enfVertMap.begin();
1096   for ( ; evmIt != data.enfVertMap.end() ; ++evmIt) {
1097     std::string entry = (*evmIt).first;
1098     std::string shapeName = myGeomToolSelected->getNameFromEntry(entry);
1099
1100     std::set<std::vector<double> > evs;
1101     std::set<std::vector<double> >::const_iterator evsIt;
1102     try  {
1103       evs = (*evmIt).second;
1104     }
1105     catch(...) {
1106       MESSAGE("evs = (*evmIt)[entry]: FAIL");
1107       break;
1108     }
1109
1110     evsIt = evs.begin();
1111     for ( ; evsIt != evs.end() ; ++evsIt) {
1112       double x, y, z;
1113       x = (*evsIt)[0];
1114       y = (*evsIt)[1];
1115       z = (*evsIt)[2];
1116       that->addEnforcedVertex(entry, shapeName, x, y, z);
1117     }
1118   }
1119   for (int column = 0; column < myEnforcedTreeWidget->columnCount(); ++column)
1120     myEnforcedTreeWidget->resizeColumnToContents(column);
1121   
1122   // update widgets
1123   that->onPhysicalMeshChanged();
1124   that->onGeometricMeshChanged();
1125 }
1126
1127 /** BLSURFPluginGUI_HypothesisCreator::storeParams()
1128 This method updates the hypothesis data with the GUI widgets content.
1129 */
1130 QString BLSURFPluginGUI_HypothesisCreator::storeParams() const
1131 {
1132   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1133
1134   BlsurfHypothesisData data;
1135   QString guiHyp = that->readParamsFromWidgets( data );
1136   that->storeParamsToHypo( data );
1137
1138   return guiHyp;
1139 }
1140
1141 /** BLSURFPluginGUI_HypothesisCreator::readParamsFromHypo(h_data)
1142 Updates the hypothesis data from hypothesis values.
1143 */
1144 bool BLSURFPluginGUI_HypothesisCreator::readParamsFromHypo( BlsurfHypothesisData& h_data ) const
1145 {
1146   MESSAGE("BLSURFPluginGUI_HypothesisCreator::readParamsFromHypo");
1147   BLSURFPlugin::BLSURFPlugin_Hypothesis_var h =
1148     BLSURFPlugin::BLSURFPlugin_Hypothesis::_narrow( initParamsHypothesis() );
1149
1150   HypothesisData* data = SMESH::GetHypothesisData( hypType() );
1151   h_data.myName = isCreation() && data ? hypName() : "";
1152
1153   h_data.myTopology         = (int) h->GetTopology();
1154   h_data.myPhysicalMesh     = (int) h->GetPhysicalMesh();
1155   h_data.myPhySize          = QString::number( h->GetPhySize() );
1156   h_data.myGeometricMesh    = (int) h->GetGeometricMesh();
1157   h_data.myAngleMeshS       = h->GetAngleMeshS();
1158   h_data.myAngleMeshC       = h->GetAngleMeshC();
1159   h_data.myGradation        = h->GetGradation();
1160   h_data.myAllowQuadrangles = h->GetQuadAllowed();
1161   h_data.myDecimesh         = h->GetDecimesh();
1162   h_data.myVerbosity        = h->GetVerbosity();
1163
1164 #ifdef WITH_SIZE_BOUNDARIES
1165   double PhyMin = h->GetPhyMin();
1166   double PhyMax = h->GetPhyMax();
1167   double GeoMin = h->GetGeoMin();
1168   double GeoMax = h->GetGeoMax();
1169   if ( PhyMin > 0 )
1170   h_data.myPhyMin = PhyMin > 0 ? QString::number( h->GetPhyMin() ) : QString("");
1171   h_data.myPhyMax = PhyMax > 0 ? QString::number( h->GetPhyMax() ) : QString("");
1172   h_data.myGeoMin = GeoMin > 0 ? QString::number( h->GetGeoMin() ) : QString("");
1173   h_data.myGeoMax = GeoMax > 0 ? QString::number( h->GetGeoMax() ) : QString("");
1174 #endif
1175
1176   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1177   that->myOptions = h->GetOptionValues();
1178
1179   that->mySMPMap.clear();
1180
1181   // classic size maps
1182   BLSURFPlugin::string_array_var mySizeMaps = h->GetSizeMapEntries();
1183   MESSAGE("mySizeMaps->length() = " << mySizeMaps->length());
1184   QString fullSizeMaps;
1185   QStringList fullSizeMapList;
1186   GeomSelectionTools* myGeomToolSelected = that->getGeomSelectionTool();
1187   for ( int i = 0;i<mySizeMaps->length(); ++i ) {
1188     fullSizeMaps =  mySizeMaps[i].in();
1189     MESSAGE("fullSizeMaps: " << fullSizeMaps.toStdString());
1190     fullSizeMapList = fullSizeMaps.split( "|", QString::KeepEmptyParts );
1191     if ( fullSizeMapList.count() > 1 ) {
1192       string fullSizeMap = fullSizeMapList[1].toStdString();
1193       int pos = fullSizeMap.find("return")+7;
1194       MESSAGE("pos:" << pos);
1195       QString sizeMap;
1196       try {
1197         sizeMap = QString::fromStdString(fullSizeMap.substr(pos, fullSizeMap.size()-pos));
1198       }
1199       catch (...) {
1200         continue;
1201       }
1202       that->mySMPMap[fullSizeMapList[0]] = sizeMap;
1203       MESSAGE("mySMPMap[" << fullSizeMapList[0].toStdString() << "] = " << sizeMap.toStdString());
1204       that->mySMPShapeTypeMap[fullSizeMapList[0]] = myGeomToolSelected->entryToShapeType(fullSizeMapList[0].toStdString());
1205       MESSAGE("mySMPShapeTypeMap[" << fullSizeMapList[0].toStdString() << "] = " << that->mySMPShapeTypeMap[fullSizeMapList[0]]);
1206     }
1207   }
1208
1209   // custom size maps
1210 /*
1211   BLSURFPlugin::string_array_var myCustomSizeMaps = h->GetCustomSizeMapEntries();
1212   MESSAGE("myCustomSizeMaps->length() = " << myCustomSizeMaps->length());
1213
1214   for ( int i = 0;i<myCustomSizeMaps->length(); ++i ) {
1215     QString fullCustomSizeMaps =  myCustomSizeMaps[i].in();
1216     QStringList fullCustomSizeMapList = fullCustomSizeMaps.split( "|", QString::KeepEmptyParts );
1217     if ( fullCustomSizeMapList.count() > 1 ) {
1218       that->mySMPMap[fullCustomSizeMapList[0]] = fullCustomSizeMapList[1];
1219       that->mySMPShapeTypeMap[fullCustomSizeMapList[0]] = GeomToolSelected->entryToShapeType(fullCustomSizeMapList[0].toStdString());
1220       MESSAGE("mySMPMap[" << fullCustomSizeMapList[0].toStdString() << "] = " << fullCustomSizeMapList[1].toStdString());
1221       MESSAGE("mySMPShapeTypeMap[" << fullCustomSizeMapList[0].toStdString() << "] = " << that->mySMPShapeTypeMap[fullCustomSizeMapList[0]]);
1222     }
1223   }
1224 */
1225   // attractor
1226   BLSURFPlugin::string_array_var allMyAttractors = h->GetAttractorEntries();
1227   MESSAGE("myAttractors->length() = " << allMyAttractors->length());
1228
1229   for ( int i = 0;i<allMyAttractors->length(); ++i ) {
1230     QString myAttractors =  allMyAttractors[i].in();
1231     QStringList myAttractorList = myAttractors.split( "|", QString::KeepEmptyParts );
1232     if ( myAttractorList.count() > 1 ) {
1233       that->mySMPMap[myAttractorList[0]] = myAttractorList[1];
1234       that->mySMPShapeTypeMap[myAttractorList[0]] = myGeomToolSelected->entryToShapeType(myAttractorList[0].toStdString());
1235       MESSAGE("mySMPMap[" << myAttractorList[0].toStdString() << "] = " << myAttractorList[1].toStdString());
1236       MESSAGE("mySMPShapeTypeMap[" << myAttractorList[0].toStdString() << "] = " << that->mySMPShapeTypeMap[myAttractorList[0]]);
1237     }
1238   }
1239   
1240   // Enforced verteces
1241   BLSURFPlugin::TEnforcedVertexMap_var enforcedVertexMap = h->GetAllEnforcedVerteces();
1242   MESSAGE("enforcedVertexMap->length() = " << enforcedVertexMap->length());
1243   
1244   for ( int i = 0;i<enforcedVertexMap->length(); ++i ) {
1245     std::string entry =  enforcedVertexMap[i].entry.in();
1246 //     BLSURFPlugin::TEnforcedVertexList_var vertexList = enforcedVertexMap[i].vertexList;
1247     BLSURFPlugin::TEnforcedVertexList vertexList = enforcedVertexMap[i].vertexList;
1248     std::set<std::vector<double> > evs;
1249     for (int j=0 ; j<vertexList.length(); ++j) {
1250       double x = vertexList[j][0];
1251       double y = vertexList[j][1];
1252       double z = vertexList[j][2];
1253       std::vector<double> ev;
1254       ev.push_back(x);
1255       ev.push_back(y);
1256       ev.push_back(z);
1257       evs.insert(ev);
1258       MESSAGE("New enf vertex for entry " << entry << ": " << x << ", " << y << ", " << z);
1259     }
1260     h_data.enfVertMap[entry] = evs;
1261     if (evs.size() == 0) {
1262       MESSAGE("No enf vertex for entry " << entry << ": key is erased");
1263       h_data.enfVertMap.erase(entry);
1264     }
1265   }
1266   
1267   return true;
1268 }
1269
1270 /** BLSURFPluginGUI_HypothesisCreator::storeParamsToHypo(h_data)
1271 Saves the hypothesis data to hypothesis values.
1272 */
1273 bool BLSURFPluginGUI_HypothesisCreator::storeParamsToHypo( const BlsurfHypothesisData& h_data ) const
1274 {
1275   MESSAGE("BLSURFPluginGUI_HypothesisCreator::storeParamsToHypo");
1276   BLSURFPlugin::BLSURFPlugin_Hypothesis_var h =
1277     BLSURFPlugin::BLSURFPlugin_Hypothesis::_narrow( hypothesis() );
1278
1279   bool ok = true;
1280   try
1281   {
1282     if( isCreation() )
1283       SMESH::SetName( SMESH::FindSObject( h ), h_data.myName.toLatin1().constData() );
1284
1285     if ( h->GetTopology() != h_data.myTopology ) // avoid duplication of DumpPython commands
1286       h->SetTopology( (int) h_data.myTopology );
1287     if ( h->GetPhysicalMesh() != h_data.myPhysicalMesh )
1288       h->SetPhysicalMesh( (int) h_data.myPhysicalMesh );
1289     if ( h->GetGeometricMesh() != (int) h_data.myGeometricMesh )
1290       h->SetGeometricMesh( (int) h_data.myGeometricMesh );
1291     if ( h->GetGradation() !=  h_data.myGradation )
1292       h->SetGradation( h_data.myGradation );
1293     if ( h->GetQuadAllowed() != h_data.myAllowQuadrangles )
1294       h->SetQuadAllowed( h_data.myAllowQuadrangles );
1295     if ( h->GetDecimesh() != h_data.myDecimesh )
1296       h->SetDecimesh( h_data.myDecimesh );
1297     if ( h->GetVerbosity() != h_data.myVerbosity )
1298       h->SetVerbosity( h_data.myVerbosity );
1299
1300     if( ((int) h_data.myPhysicalMesh == PhysicalUserDefined)||((int) h_data.myPhysicalMesh == SizeMap) ) {
1301       if ( h->GetPhySize() != h_data.myPhySize.toDouble() )
1302         h->SetPhySize( h_data.myPhySize.toDouble() );
1303     }
1304     if( (int) h_data.myGeometricMesh == UserDefined ) {
1305       if ( h->GetAngleMeshS() != h_data.myAngleMeshS )
1306         h->SetAngleMeshS( h_data.myAngleMeshS );
1307       if ( h->GetAngleMeshC() != h_data.myAngleMeshC )
1308         h->SetAngleMeshC( h_data.myAngleMeshC );
1309     }
1310 #ifdef WITH_SIZE_BOUNDARIES
1311     if ( !isDouble( h_data.myPhyMin ))
1312       h->SetPhyMin( -1 );
1313     else if ( h->GetPhyMin() != h_data.myPhyMin.toDouble() )
1314       h->SetPhyMin( h_data.myPhyMin.toDouble() );
1315     if ( !isDouble( h_data.myPhyMax ))
1316       h->SetPhyMax( -1 );
1317     else if ( h->GetPhyMax() != h_data.myPhyMax.toDouble() )
1318       h->SetPhyMax( h_data.myPhyMax.toDouble() );
1319     if ( !isDouble( h_data.myGeoMin ))
1320       h->SetGeoMin( -1 );
1321     else if ( h->GetGeoMin() != h_data.myGeoMin.toDouble() )
1322       h->SetGeoMin( h_data.myGeoMin.toDouble() );
1323     if ( !isDouble( h_data.myGeoMax ))
1324       h->SetGeoMax( -1 );
1325     else if ( h->GetGeoMax() != h_data.myGeoMax.toDouble() )
1326       h->SetGeoMax( h_data.myGeoMax.toDouble() );
1327 #endif
1328
1329     //printf("storeParamsToHypo():myOptions->length()=%d\n",myOptions->length());
1330     h->SetOptionValues( myOptions ); // is set in checkParams()
1331
1332     BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1333     QMapIterator<QString,QString> i(that->mySMPMap);
1334     // Iterate over each size map
1335     while (i.hasNext()) {
1336       i.next();
1337       const QString entry = i.key();
1338       const QString sizeMap = i.value();
1339
1340       if (sizeMap == "__TO_DELETE__") {
1341         MESSAGE("Delete entry " << entry.toStdString() << " from engine");
1342         h->UnsetEntry(entry.toLatin1().constData());
1343       }
1344       else if (sizeMap.startsWith("ATTRACTOR")) {
1345         MESSAGE("SetAttractorEntry(" << entry.toStdString() << ")= " << sizeMap.toStdString());
1346         h->SetAttractorEntry( entry.toLatin1().constData(), sizeMap.toLatin1().constData() );
1347       }
1348       else if (sizeMap.startsWith("def")) {
1349         MESSAGE("SetCustomSizeMapEntry(" << entry.toStdString() << ")= " << sizeMap.toStdString());
1350 //        h->SetCustomSizeMapEntry( entry.toLatin1().constData(), sizeMap.toLatin1().constData() );
1351       }
1352       else {
1353         QString fullSizeMap;
1354         fullSizeMap = QString("");
1355         if (that->mySMPShapeTypeMap[entry]  == TopAbs_FACE)
1356           fullSizeMap = QString("def f(u,v): return ") + sizeMap;
1357         else if (that->mySMPShapeTypeMap[entry]  == TopAbs_EDGE)
1358           fullSizeMap = QString("def f(t): return ") + sizeMap;
1359         else if (that->mySMPShapeTypeMap[entry] == TopAbs_VERTEX)
1360           fullSizeMap = QString("def f(): return ") + sizeMap;
1361
1362         MESSAGE("SetSizeMapEntry("<<entry.toStdString()<<") = " <<fullSizeMap.toStdString());
1363         h->SetSizeMapEntry( entry.toLatin1().constData(), fullSizeMap.toLatin1().constData() );
1364       }
1365     }
1366     
1367     // Enforced verteces
1368     std::map<std::string, std::set<std::vector<double> > >::const_iterator evmIt = h_data.enfVertMap.begin();
1369     for ( ; evmIt != h_data.enfVertMap.end() ; ++evmIt) {
1370       std::string entry = evmIt->first;
1371       std::set<std::vector<double> > evs;
1372       std::set<std::vector<double> >::const_iterator evsIt;
1373       double x, y, z;
1374       BLSURFPlugin::TEnforcedVertexList_var hypVertexList;
1375       int hypNbVertex = 0;
1376       try {
1377         hypVertexList = h->GetEnforcedVertecesEntry(entry.c_str());
1378         hypNbVertex = hypVertexList->length();
1379       }
1380       catch(...) {
1381       }
1382       evs = evmIt->second;
1383       evsIt = evs.begin();
1384       for ( ; evsIt != evs.end() ; ++evsIt) {
1385         x = (*evsIt)[0];
1386         y = (*evsIt)[1];
1387         z = (*evsIt)[2];
1388         MESSAGE("SetEnforcedVertexEntry("<<entry<<", "<<x<<", "<<y<<", "<<z<<")");
1389         h->SetEnforcedVertexEntry( entry.c_str(), x, y, z );
1390       }
1391       // Remove old verteces
1392       if (hypNbVertex >0) {
1393         for (int i =0 ; i<hypNbVertex ; i++) {
1394           x = hypVertexList[i][0];
1395           y = hypVertexList[i][1];
1396           z = hypVertexList[i][2];
1397           std::vector<double> vertex;
1398           vertex.push_back(x);
1399           vertex.push_back(y);
1400           vertex.push_back(z);
1401           if (evs.find(vertex) == evs.end()) {
1402             MESSAGE("UnsetEnforcedVertexEntry("<<entry<<", "<<x<<", "<<y<<", "<<z<<")");
1403             h->UnsetEnforcedVertexEntry( entry.c_str(), x, y, z );
1404           }
1405         }
1406       }
1407     }
1408   }
1409   catch(const SALOME::SALOME_Exception& ex)
1410   {
1411     SalomeApp_Tools::QtCatchCorbaException(ex);
1412     ok = false;
1413   }
1414   return ok;
1415 }
1416
1417 /** BLSURFPluginGUI_HypothesisCreator::readParamsFromWidgets(h_data)
1418 Stores the widgets content to the hypothesis data.
1419 */
1420 QString BLSURFPluginGUI_HypothesisCreator::readParamsFromWidgets( BlsurfHypothesisData& h_data ) const
1421 {
1422   MESSAGE("BLSURFPluginGUI_HypothesisCreator::readParamsFromWidgets");
1423   h_data.myName             = myName ? myName->text() : "";
1424   h_data.myTopology         = myTopology->currentIndex();
1425   h_data.myPhysicalMesh     = myPhysicalMesh->currentIndex();
1426   h_data.myPhySize          = myPhySize->text();
1427 #ifdef WITH_SIZE_BOUNDARIES
1428   h_data.myPhyMin           = myPhyMin->text();
1429   h_data.myPhyMax           = myPhyMax->text();
1430   h_data.myGeoMin           = myGeoMin->text();
1431   h_data.myGeoMax           = myGeoMax->text();
1432 #endif
1433   h_data.myGeometricMesh    = myGeometricMesh->currentIndex();
1434   h_data.myAngleMeshS       = myAngleMeshS->value();
1435   h_data.myAngleMeshC       = myAngleMeshC->value();
1436   h_data.myGradation        = myGradation->value();
1437   h_data.myAllowQuadrangles = myAllowQuadrangles->isChecked();
1438   h_data.myDecimesh         = myDecimesh->isChecked();
1439   h_data.myVerbosity        = myVerbosity->value();
1440
1441   QString guiHyp;
1442   guiHyp += tr("BLSURF_TOPOLOGY") + " = " + QString::number( h_data.myTopology ) + "; ";
1443   guiHyp += tr("BLSURF_PHY_MESH") + " = " + QString::number( h_data.myPhysicalMesh ) + "; ";
1444   guiHyp += tr("BLSURF_HPHYDEF") + " = " + h_data.myPhySize + "; ";
1445   guiHyp += tr("BLSURF_GEOM_MESH") + " = " + QString::number( h_data.myGeometricMesh ) + "; ";
1446   guiHyp += tr("BLSURF_ANGLE_MESH_S") + " = " + QString::number( h_data.myAngleMeshS ) + "; ";
1447   guiHyp += tr("BLSURF_GRADATION") + " = " + QString::number( h_data.myGradation ) + "; ";
1448   guiHyp += tr("BLSURF_ALLOW_QUADRANGLES") + " = " + QString(h_data.myAllowQuadrangles ? "yes" : "no") + "; ";
1449   guiHyp += tr("BLSURF_DECIMESH") + " = " + QString(h_data.myDecimesh ? "yes" : "no") + "; ";
1450 #ifdef WITH_SIZE_BOUNDARIES
1451   if ( isDouble( h_data.myPhyMin )) guiHyp += "hphymin = " + h_data.myPhyMin + "; ";
1452   if ( isDouble( h_data.myPhyMax )) guiHyp += "hphymax = " + h_data.myPhyMax + "; ";
1453   if ( isDouble( h_data.myGeoMin )) guiHyp += "hgeomin = " + h_data.myGeoMin + "; ";
1454   if ( isDouble( h_data.myGeoMax )) guiHyp += "hgeomax = " + h_data.myGeoMax + "; ";
1455 #endif
1456
1457   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1458   int row = 0, nbRows = myOptionTable->rowCount();
1459   for ( ; row < nbRows; ++row )
1460   {
1461     int id = myOptionTable->item( row, OPTION_ID_COLUMN )->text().toInt();
1462     if ( id >= 0 && id < myOptions->length() )
1463     {
1464       QString name  = myOptionTable->item( row, OPTION_NAME_COLUMN )->text();
1465       QString value = myOptionTable->item( row, OPTION_VALUE_COLUMN )->text().trimmed();
1466       if ( value.isNull() )
1467         value = "";
1468       that->myOptions[ id ] = ( name + ":" + value).toLatin1().constData();
1469       if ( value != "" )
1470         guiHyp += name + " = " + value + "; ";
1471     }
1472   }
1473
1474   // SizeMap
1475   row = 0, nbRows = mySizeMapTable->rowCount();
1476   for ( ; row < nbRows; ++row )
1477   {
1478       QString entry   = mySizeMapTable->item( row, SMP_ENTRY_COLUMN )->text();
1479       if ( that->mySMPMap.contains(entry) )
1480         guiHyp += "SetSizeMapEntry(" + entry + ", " + that->mySMPMap[entry] + "); ";
1481   }
1482
1483   // Enforced verteces
1484   // h_data.enfVertMap
1485
1486   int nbEnforcedShapes = myEnforcedTreeWidget->topLevelItemCount();
1487   int nbEnforcedVerteces = 0;
1488   MESSAGE("Nb of enforced shapes: " << nbEnforcedShapes);
1489   for (int i=0 ; i<nbEnforcedShapes ; i++) {
1490     QTreeWidgetItem* shapeItem = myEnforcedTreeWidget->topLevelItem(i);
1491     if (shapeItem) {
1492       std::string entry = shapeItem->data(ENF_VER_ENTRY_COLUMN,Qt::EditRole).toString().toStdString();
1493       nbEnforcedVerteces = shapeItem->childCount();
1494       if (nbEnforcedVerteces >0) {
1495         double childValueX,childValueY,childValueZ;
1496         QTreeWidgetItem* child;
1497         std::set<std::vector<double> > evs;
1498         for (row = 0;row<nbEnforcedVerteces;row++) {
1499           child = shapeItem->child(row);
1500           childValueX = child->data(ENF_VER_X_COLUMN,Qt::EditRole).toDouble();
1501           childValueY = child->data(ENF_VER_Y_COLUMN,Qt::EditRole).toDouble();
1502           childValueZ = child->data(ENF_VER_Z_COLUMN,Qt::EditRole).toDouble();
1503           std::vector<double> vertex;
1504           vertex.push_back(childValueX);
1505           vertex.push_back(childValueY);
1506           vertex.push_back(childValueZ);
1507           evs.insert(vertex);
1508         }
1509         h_data.enfVertMap[entry] = evs;
1510       }
1511     }
1512   }
1513
1514   MESSAGE("guiHyp : " << guiHyp.toLatin1().data());
1515   return guiHyp;
1516 }
1517
1518 void BLSURFPluginGUI_HypothesisCreator::onPhysicalMeshChanged() {
1519   MESSAGE("BLSURFPluginGUI_HypothesisCreator::onPhysicalMeshChanged");
1520   bool isPhysicalUserDefined = (myPhysicalMesh->currentIndex() == PhysicalUserDefined);
1521   bool isSizeMap = (myPhysicalMesh->currentIndex() == SizeMap);
1522   bool isCustom = (isPhysicalUserDefined || isSizeMap) ;
1523   bool geomIsCustom = (myGeometricMesh->currentIndex() == UserDefined);
1524   
1525   myGradation->setEnabled(not isPhysicalUserDefined || geomIsCustom);
1526   myPhySize->setEnabled(isCustom);
1527   myPhyMax->setEnabled(isCustom);
1528   myPhyMin->setEnabled(isCustom);
1529
1530   if ( !isSizeMap) {
1531     double gradation;
1532     switch( myPhysicalMesh->currentIndex() ) {
1533       case DefaultSize:
1534       default:
1535         gradation = 1.1;
1536         break;
1537     }
1538     myGradation->setValue( gradation );
1539   }
1540       
1541   if ( !isCustom ) {
1542     QString aPhySize = "";
1543     switch( myPhysicalMesh->currentIndex() ) {
1544       case DefaultSize:
1545       default:
1546         aPhySize = "10";
1547         break;
1548       }
1549     myPhySize->setText( aPhySize );
1550     if ( !isDouble( myPhyMin->text(), true ))
1551       myPhyMin->setText("");
1552     if ( !isDouble( myPhyMax->text(), true ))
1553       myPhyMax->setText("");
1554     if ( myGeometricMesh->currentIndex() == DefaultGeom ) {
1555       myGeometricMesh->setCurrentIndex( UserDefined );
1556       onGeometricMeshChanged();
1557     }
1558   }
1559 }
1560
1561 void BLSURFPluginGUI_HypothesisCreator::onGeometricMeshChanged() {
1562   MESSAGE("BLSURFPluginGUI_HypothesisCreator::onGeometricMeshChanged");
1563   bool isCustom = (myGeometricMesh->currentIndex() == UserDefined);
1564   bool phyIsSizemap = (myPhysicalMesh->currentIndex() == SizeMap);
1565   
1566   myAngleMeshS->setEnabled(isCustom);
1567   myAngleMeshC->setEnabled(isCustom);
1568   myGradation->setEnabled(isCustom || phyIsSizemap);
1569   myGeoMax->setEnabled(isCustom);
1570   myGeoMin->setEnabled(isCustom);
1571
1572   if ( ! isCustom ) {
1573     double aAngleMeshS;
1574     switch( myGeometricMesh->currentIndex() ) {
1575       case DefaultGeom:
1576       default:
1577         aAngleMeshS = 8;
1578         break;
1579       }
1580     myAngleMeshS->setValue( aAngleMeshS );
1581     myAngleMeshC->setValue( aAngleMeshS );
1582     if ( !isDouble( myGeoMin->text(), true ))
1583       myGeoMin->setText("");
1584     if ( !isDouble( myGeoMax->text(), true ))
1585       myGeoMax->setText("");
1586     //  hphy_flag = 0 and hgeo_flag = 0 is not allowed (spec)
1587     if ( myPhysicalMesh->currentIndex() == DefaultSize ) {
1588       myPhysicalMesh->setCurrentIndex( PhysicalUserDefined );
1589       onPhysicalMeshChanged();
1590     }
1591   }
1592 }
1593
1594 void BLSURFPluginGUI_HypothesisCreator::onAddOption()
1595 {
1596   QMenu* menu = (QMenu*)sender();
1597   // fill popup with option names
1598   menu->clear();
1599   if ( myOptions.operator->() ) {
1600     for ( int i = 0, nb = myOptions->length(); i < nb; ++i ) {
1601       QString name_value = myOptions[i].in();
1602       QString name = name_value.split( ":", QString::KeepEmptyParts )[0];
1603       menu->addAction( name );
1604     }
1605   }
1606 }
1607
1608 void BLSURFPluginGUI_HypothesisCreator::onOptionChosenInPopup( QAction* a )
1609 {
1610   myOptionTable->setFocus();
1611   QMenu* menu = (QMenu*)( a->parent() );
1612
1613   int idx = menu->actions().indexOf( a );
1614   QString idStr = QString("%1").arg( idx );
1615   QString option = myOptions[idx].in();
1616   QString optionName = option.split( ":", QString::KeepEmptyParts )[0];
1617
1618   // look for a row with optionName
1619   int row = 0, nbRows = myOptionTable->rowCount();
1620   for ( ; row < nbRows; ++row )
1621     if ( myOptionTable->item( row, OPTION_ID_COLUMN )->text() == idStr )
1622       break;
1623   // add a row if not found
1624   if ( row == nbRows ) {
1625     myOptionTable->setRowCount( row+1 );
1626     myOptionTable->setItem( row, OPTION_ID_COLUMN, new QTableWidgetItem( idStr ) );
1627     myOptionTable->item( row, OPTION_ID_COLUMN )->setFlags( 0 );
1628     myOptionTable->setItem( row, OPTION_NAME_COLUMN, new QTableWidgetItem( optionName ) );
1629     myOptionTable->item( row, OPTION_NAME_COLUMN )->setFlags( 0 );
1630     myOptionTable->setItem( row, OPTION_VALUE_COLUMN, new QTableWidgetItem( "" ) );
1631     myOptionTable->item( row, OPTION_VALUE_COLUMN )->setFlags( Qt::ItemIsSelectable |
1632                                                                Qt::ItemIsEditable   |
1633                                                                Qt::ItemIsEnabled );
1634     myOptionTable->resizeColumnToContents( OPTION_NAME_COLUMN );
1635   }
1636   myOptionTable->clearSelection();
1637   myOptionTable->scrollToItem( myOptionTable->item( row, OPTION_VALUE_COLUMN ) );
1638   //myOptionTable->item( row, OPTION_VALUE_COLUMN )->setSelected( true );
1639   myOptionTable->setCurrentCell( row, OPTION_VALUE_COLUMN );
1640   //myOptionTable->openPersistentEditor( myOptionTable->item( row, OPTION_VALUE_COLUMN ) );
1641 }
1642
1643 void BLSURFPluginGUI_HypothesisCreator::onDeleteOption()
1644 {
1645   // clear option values and remember selected row
1646   QList<int> selectedRows;
1647   QList<QTableWidgetItem*> selected = myOptionTable->selectedItems();
1648   QTableWidgetItem* item;
1649   foreach( item, selected ) {
1650     int row = item->row();
1651     if ( !selectedRows.contains( row ) ) {
1652       selectedRows.append( row );
1653       int id = myOptionTable->item( row, OPTION_ID_COLUMN )->text().toInt();
1654       if ( id >= 0 && id < myOptions->length() )
1655         myOptions[ id ] = myOptionTable->item( row, OPTION_NAME_COLUMN )->text().toLatin1().constData();
1656     }
1657   }
1658   qSort( selectedRows );
1659   QListIterator<int> it( selectedRows );
1660   it.toBack();
1661   while ( it.hasPrevious() )
1662     myOptionTable->removeRow( it.previous() );
1663 }
1664
1665 // **********************
1666 // *** BEGIN SIZE MAP ***
1667 // **********************
1668
1669
1670 void BLSURFPluginGUI_HypothesisCreator::onRemoveMap()
1671 {
1672   MESSAGE("BLSURFPluginGUI_HypothesisCreator::onRemoveMap()");
1673   QList<int> selectedRows;
1674   QList<QTableWidgetItem*> selected = mySizeMapTable->selectedItems();
1675   QTableWidgetItem* item;
1676   int row;
1677   foreach( item, selected ) {
1678     row = item->row();
1679     if ( !selectedRows.contains( row ) )
1680       selectedRows.append( row );
1681   }
1682
1683   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1684
1685   qSort( selectedRows );
1686   QListIterator<int> it( selectedRows );
1687   it.toBack();
1688   while ( it.hasPrevious() ) {
1689       row = it.previous();
1690       QString entry = mySizeMapTable->item(row,SMP_ENTRY_COLUMN)->text();
1691       if (that->mySMPMap.contains(entry))
1692         that->mySMPMap[entry] = "__TO_DELETE__";
1693       if (that->mySMPShapeTypeMap.contains(entry))
1694         that->mySMPShapeTypeMap.remove(entry);
1695       mySizeMapTable->removeRow(row );
1696   }
1697   mySizeMapTable->resizeColumnToContents(SMP_NAME_COLUMN);
1698   mySizeMapTable->resizeColumnToContents(SMP_SIZEMAP_COLUMN);
1699 }
1700
1701 void BLSURFPluginGUI_HypothesisCreator::onSetSizeMap(int row,int col)
1702 {
1703   MESSAGE("BLSURFPluginGUI_HypothesisCreator::onSetSizeMap("<< row << "," << col << ")");
1704   if (col == SMP_SIZEMAP_COLUMN) {
1705     BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1706     QString entry   = that->mySizeMapTable->item(row, SMP_ENTRY_COLUMN)->text();
1707     QString sizeMap = that->mySizeMapTable->item(row, SMP_SIZEMAP_COLUMN)->text().trimmed();
1708     MESSAGE("entry: " << entry.toStdString() << ", sizeMap: " << sizeMap.toStdString());
1709     if (not that->mySMPShapeTypeMap.contains(entry))
1710       return;
1711     if (that->mySMPMap.contains(entry))
1712       if (that->mySMPMap[entry] == sizeMap)
1713         return;
1714     QColor* bgColor = new QColor("white");
1715     QColor* fgColor = new QColor("black");
1716     if (not sizeMap.isEmpty()) {
1717       that->mySMPMap[entry] = sizeMap;
1718       if (not sizeMapValidationFromRow(row)) {
1719         bgColor->setRgb(255,0,0);
1720         fgColor->setRgb(255,255,255);
1721       }
1722     }
1723     else {
1724       MESSAGE("Size map empty: reverse to precedent value" );
1725       that->mySizeMapTable->item(row, SMP_SIZEMAP_COLUMN)->setText(that->mySMPMap[entry]);
1726     }
1727     that->mySizeMapTable->item(row, SMP_NAME_COLUMN)->setBackground(QBrush(*bgColor));
1728     that->mySizeMapTable->item(row, SMP_SIZEMAP_COLUMN)->setBackground(QBrush(*bgColor));
1729     that->mySizeMapTable->item(row, SMP_NAME_COLUMN)->setForeground(QBrush(*fgColor));
1730     that->mySizeMapTable->item(row, SMP_SIZEMAP_COLUMN)->setForeground(QBrush(*fgColor));
1731     mySizeMapTable->resizeColumnToContents(SMP_SIZEMAP_COLUMN);
1732   }
1733 }
1734
1735 void BLSURFPluginGUI_HypothesisCreator::onAddMapOnSurface()
1736 {
1737  insertElementType(TopAbs_FACE);
1738 }
1739
1740 void BLSURFPluginGUI_HypothesisCreator::onAddMapOnEdge()
1741 {
1742  insertElementType(TopAbs_EDGE);
1743 }
1744
1745 void BLSURFPluginGUI_HypothesisCreator::onAddMapOnPoint()
1746 {
1747  insertElementType(TopAbs_VERTEX);
1748 }
1749
1750 void BLSURFPluginGUI_HypothesisCreator::insertElementType(TopAbs_ShapeEnum typeShapeAsked)
1751 {
1752   MESSAGE("BLSURFPluginGUI_HypothesisCreator::insertElementType()");
1753
1754   BLSURFPlugin::BLSURFPlugin_Hypothesis_var h =
1755     BLSURFPlugin::BLSURFPlugin_Hypothesis::_narrow( initParamsHypothesis());
1756
1757   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1758
1759   TopAbs_ShapeEnum shapeType;
1760   string entry, shapeName;
1761   GeomSelectionTools* myGeomToolSelected = that->getGeomSelectionTool();
1762
1763   LightApp_SelectionMgr* mySel = myGeomToolSelected->selectionMgr();
1764
1765   SALOME_ListIO ListSelectedObjects;
1766   mySel->selectedObjects(ListSelectedObjects, NULL, false );
1767   if (!ListSelectedObjects.IsEmpty())
1768   {
1769     SALOME_ListIteratorOfListIO Object_It(ListSelectedObjects);
1770     for (; Object_It.More(); Object_It.Next())
1771     {
1772       Handle(SALOME_InteractiveObject) anObject = Object_It.Value();
1773       entry     = myGeomToolSelected->getEntryOfObject(anObject);
1774       shapeName = anObject->getName();
1775       shapeType         = myGeomToolSelected->entryToShapeType(entry);
1776       MESSAGE("Object Name = " << shapeName << "& Type is " << anObject->getComponentDataType() << " & ShapeType is " << shapeType);
1777       if (shapeType == typeShapeAsked)
1778       {
1779         mySizeMapTable->setFocus();
1780         QString shapeEntry;
1781         shapeEntry = QString::fromStdString(entry);
1782         double phySize = h->GetPhySize();
1783         std::ostringstream oss;
1784         oss << phySize;
1785         QString sizeMap;
1786         sizeMap  = QString::fromStdString(oss.str());
1787         if (that->mySMPMap.contains(shapeEntry)) {
1788           if (that->mySMPMap[shapeEntry] != "__TO_DELETE__") {
1789             MESSAGE("Size map for shape with name(entry): "<< shapeName << "(" << entry << ")");
1790             break;
1791           }
1792         }
1793         that->mySMPMap[shapeEntry] = sizeMap;
1794         that->mySMPShapeTypeMap[shapeEntry] = typeShapeAsked;
1795         int row = mySizeMapTable->rowCount() ;
1796         mySizeMapTable->setRowCount( row+1 );
1797         mySizeMapTable->setItem( row, SMP_ENTRY_COLUMN, new QTableWidgetItem( shapeEntry ) );
1798         mySizeMapTable->item( row, SMP_ENTRY_COLUMN )->setFlags( 0 );
1799         mySizeMapTable->setItem( row, SMP_NAME_COLUMN, new QTableWidgetItem( QString::fromStdString(shapeName) ) );
1800         mySizeMapTable->item( row, SMP_NAME_COLUMN )->setFlags( 0 );
1801         mySizeMapTable->setItem( row, SMP_SIZEMAP_COLUMN, new QTableWidgetItem( sizeMap ) );
1802         mySizeMapTable->item( row, SMP_SIZEMAP_COLUMN )->setFlags( Qt::ItemIsSelectable |Qt::ItemIsEditable   |Qt::ItemIsEnabled );
1803         mySizeMapTable->resizeColumnToContents( SMP_NAME_COLUMN );
1804         mySizeMapTable->resizeColumnToContents(SMP_SIZEMAP_COLUMN);
1805         mySizeMapTable->clearSelection();
1806         mySizeMapTable->scrollToItem( mySizeMapTable->item( row, SMP_SIZEMAP_COLUMN ) );
1807
1808         if ( myPhysicalMesh->currentIndex() != SizeMap ) {
1809           myPhysicalMesh->setCurrentIndex( SizeMap );
1810           onPhysicalMeshChanged();
1811         }
1812       }
1813     }
1814   }
1815 }
1816
1817 bool BLSURFPluginGUI_HypothesisCreator::sizeMapsValidation()
1818 {
1819   MESSAGE("BLSURFPluginGUI_HypothesisCreator::sizeMapsValidation()");
1820   int row = 0, nbRows = mySizeMapTable->rowCount();
1821   for ( ; row < nbRows; ++row )
1822     if (not sizeMapValidationFromRow(row))
1823       return false;
1824   return true;
1825 }
1826
1827 bool BLSURFPluginGUI_HypothesisCreator::sizeMapValidationFromRow(int myRow, bool displayError)
1828 {
1829   MESSAGE("BLSURFPluginGUI_HypothesisCreator::sizeMapValidationFromRow()");
1830   QString myEntry   = mySizeMapTable->item( myRow, SMP_ENTRY_COLUMN )->text();
1831   bool res = sizeMapValidationFromEntry(myEntry,displayError);
1832   mySizeMapTable->setFocus();
1833   return res;
1834 }
1835
1836 bool BLSURFPluginGUI_HypothesisCreator::sizeMapValidationFromEntry(QString myEntry, bool displayError)
1837 {
1838   MESSAGE("BLSURFPluginGUI_HypothesisCreator::sizeMapValidationFromEntry()");
1839
1840   BLSURFPluginGUI_HypothesisCreator* that = (BLSURFPluginGUI_HypothesisCreator*)this;
1841
1842   if (not that->mySMPMap.contains(myEntry)) {
1843     MESSAGE("Geometry with entry "<<myEntry.toStdString()<<" was not found.");
1844     return false;
1845   }
1846   if (not that->mySMPShapeTypeMap.contains(myEntry)) {
1847     MESSAGE("Shape type with entry "<<myEntry.toStdString()<<" was not found.");
1848     return false;
1849   }
1850
1851   string expr;
1852
1853   if (that->mySMPMap[myEntry].startsWith("def")) {
1854     MESSAGE("custom function" );
1855     expr = that->mySMPMap[myEntry].toStdString();
1856   }
1857   else if (that->mySMPMap[myEntry].startsWith("ATTRACTOR")) {
1858     MESSAGE("Attractor" );
1859     if ((that->mySMPMap[myEntry].count(QRegExp("^ATTRACTOR\\((?:(-?0(\\.\\d*)*|-?[1-9]+\\d*(\\.\\d*)*|-?\\.(\\d)+);){5}(True|False)\\)$")) != 1)) {
1860 //     if ((that->mySMPMap[myEntry].count('(') != 1) or
1861 //         (that->mySMPMap[myEntry].count(')') != 1) or
1862 //         (that->mySMPMap[myEntry].count(';') != 4) or
1863 //         (that->mySMPMap[myEntry].size() == 15)){
1864       if (displayError)
1865         SUIT_MessageBox::warning( dlg(),"Definition of attractor : Error" ,"An attractor is defined with the following pattern: ATTRACTOR(xa;ya;za;a;b;True|False)" );
1866       return false;
1867     }
1868     return true;
1869   }
1870   else {
1871     // case size map is empty
1872     if (that->mySMPMap[myEntry].isEmpty()) {
1873       if (displayError)
1874         SUIT_MessageBox::warning( dlg(),"Definition of size map : Error" , "Size map can't be empty");
1875       return false;
1876     }
1877     else {
1878       if ( that->mySMPShapeTypeMap[myEntry] == TopAbs_FACE)
1879         expr = "def f(u,v) : return " + that->mySMPMap[myEntry].toStdString();
1880       else if ( that->mySMPShapeTypeMap[myEntry] == TopAbs_EDGE)
1881         expr = "def f(t) : return " + that->mySMPMap[myEntry].toStdString();
1882       else if ( that->mySMPShapeTypeMap[myEntry] == TopAbs_VERTEX)
1883         expr = "def f() : return " + that->mySMPMap[myEntry].toStdString();
1884     }
1885   }
1886   //assert(Py_IsInitialized());
1887   if (not Py_IsInitialized())
1888     throw ("Erreur: Python interpreter is not initialized");
1889   PyGILState_STATE gstate;
1890   gstate = PyGILState_Ensure();
1891
1892   PyObject * obj = NULL;
1893   PyObject* new_stderr = NULL;
1894   string  err_description="";
1895   obj= PyRun_String(expr.c_str(), Py_file_input, main_dict, NULL);
1896   if (obj == NULL){
1897     fflush(stderr);
1898     err_description="";
1899     new_stderr=newPyStdOut(err_description);
1900     PySys_SetObject("stderr", new_stderr);
1901     PyErr_Print();
1902     PySys_SetObject("stderr", PySys_GetObject("__stderr__"));
1903     Py_DECREF(new_stderr);
1904     if (displayError)
1905       SUIT_MessageBox::warning( dlg(),"Definition of Python Function : Error" ,err_description.c_str() );
1906     PyGILState_Release(gstate);
1907     return false;
1908   }
1909   Py_DECREF(obj);
1910
1911   PyObject * func = NULL;
1912   func = PyObject_GetAttrString(main_mod, "f");
1913   if ( func == NULL){
1914     fflush(stderr);
1915     err_description="";
1916     new_stderr=newPyStdOut(err_description);
1917     PySys_SetObject("stderr", new_stderr);
1918     PyErr_Print();
1919     PySys_SetObject("stderr", PySys_GetObject("__stderr__"));
1920     Py_DECREF(new_stderr);
1921     if (displayError)
1922       SUIT_MessageBox::warning( dlg(),"Python Error" ,err_description.c_str() );
1923     PyGILState_Release(gstate);
1924     return false;
1925   }
1926
1927   PyGILState_Release(gstate);
1928
1929   MESSAGE("SizeMap expression "<<expr<<" is valid");
1930
1931   return true;
1932 }
1933
1934 /*
1935 void BLSURFPluginGUI_HypothesisCreator::OnEditMapFunction(QModelIndex* index) {
1936   int myRow = index->row();
1937   int myColumn = index->column();
1938
1939   if (myColumn == 2){
1940      if (!myEditor) {
1941          myEditor = new BLSURFPluginGUI_MapFunctionEditor(sizeMapModel->item(myRow,0)->text());
1942          connect(myEditor, SIGNAL(FunctionEntered(QString)), this, SLOT(FunctionLightValidation(QString)));
1943      }
1944      myEditor->exec();
1945 //      myEditor->show();
1946 //      myEditor->raise();
1947 //      myEditor->activateWindow();
1948
1949
1950 //     BLSURFPluginGUI_MapFunctionEditor* myEditor = new BLSURFPluginGUI_MapFunctionEditor(sizeMapModel->item(myRow,0)->text());
1951 //     myEditor->exec();
1952      QString myFunction = myEditor->GetFunctionText();
1953      // FIN RECUPERATION FONCTION
1954
1955      if (! myFunction.isEmpty()) {
1956
1957      // MAJ DE LA MAP
1958
1959      BLSURFPlugin::BLSURFPlugin_Hypothesis_var h =
1960        BLSURFPlugin::BLSURFPlugin_Hypothesis::_narrow( initParamsHypothesis());
1961
1962 //     h->SetSizeMapEntry(sizeMapModel->item(myRow,1)->text().toLatin1().constData(),
1963 //                        item->text().toLatin1().constData());
1964      h->SetSizeMapEntry(sizeMapModel->item(myRow,1)->text().toLatin1().constData(),
1965                         myFunction.toLatin1().constData());
1966      // FIN MAJ DE LA MAP
1967      }
1968   }
1969 }*/
1970
1971 QString BLSURFPluginGUI_HypothesisCreator::caption() const
1972 {
1973   return tr( "BLSURF_TITLE" );
1974 }
1975
1976 QPixmap BLSURFPluginGUI_HypothesisCreator::icon() const
1977 {
1978   return SUIT_Session::session()->resourceMgr()->loadPixmap( "BLSURFPlugin", tr( "ICON_DLG_BLSURF_PARAMETERS") );
1979 }
1980
1981 QString BLSURFPluginGUI_HypothesisCreator::type() const
1982 {
1983   return tr( "BLSURF_HYPOTHESIS" );
1984 }
1985
1986 QString BLSURFPluginGUI_HypothesisCreator::helpPage() const
1987 {
1988   return "blsurf_hypo_page.html";
1989 }
1990
1991 LightApp_SelectionMgr* BLSURFPluginGUI_HypothesisCreator::selectionMgr()
1992 {
1993
1994   SalomeApp_Application* anApp = dynamic_cast<SalomeApp_Application*>( SUIT_Session::session()->activeApplication() );
1995   if( anApp )
1996     return dynamic_cast<LightApp_SelectionMgr*>( anApp->selectionMgr() );
1997   else
1998     return 0;
1999 }
2000