Salome HOME
0021339: EDF 1928 SMESH: Create group of 0D elements
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_FilterDlg.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_FilterDlg.cxx
25 // Author : Sergey LITONIN, Open CASCADE S.A.S.
26 //
27
28 // SMESH includes
29 #include "SMESHGUI_FilterDlg.h"
30
31 #include "SMESHGUI.h"
32 #include "SMESHGUI_Utils.h"
33 #include "SMESHGUI_VTKUtils.h"
34 #include "SMESHGUI_Filter.h"
35 #include "SMESHGUI_FilterUtils.h"
36 #include "SMESHGUI_FilterLibraryDlg.h"
37 #include "SMESHGUI_SpinBox.h"
38
39 #include <SMESH_Actor.h>
40 #include <SMESH_NumberFilter.hxx>
41 #include <SMESH_TypeFilter.hxx>
42
43 // SALOME GEOM includes
44 #include <GEOMBase.h>
45 #include <GEOM_FaceFilter.h>
46 #include <GEOM_TypeFilter.h>
47
48 // SALOME GUI includes
49 #include <SUIT_Desktop.h>
50 #include <SUIT_ResourceMgr.h>
51 #include <SUIT_Session.h>
52 #include <SUIT_MessageBox.h>
53 #include <QtxColorButton.h>
54
55 #include <LightApp_Application.h>
56 #include <LightApp_SelectionMgr.h>
57 #include <SalomeApp_Tools.h>
58 #include <SalomeApp_Study.h>
59 #include <SalomeApp_IntSpinBox.h>
60 #include <SalomeApp_DoubleSpinBox.h>
61
62 #include <SALOME_ListIO.hxx>
63 #include <SALOME_ListIteratorOfListIO.hxx>
64 #include <SALOME_DataMapIteratorOfDataMapOfIOMapOfInteger.hxx>
65
66 #include <SVTK_ViewWindow.h>
67
68 // SALOME KERNEL includes
69 #include <SALOMEDSClient_Study.hxx>
70
71 // OCCT includes
72 #include <StdSelect_TypeOfFace.hxx>
73 #include <BRep_Tool.hxx>
74 #include <TopoDS.hxx>
75 #include <TopoDS_Shape.hxx>
76 #include <Geom_Plane.hxx>
77 #include <Geom_CylindricalSurface.hxx>
78 #include <Precision.hxx>
79 #include <TColStd_MapOfInteger.hxx>
80 #include <TColStd_IndexedMapOfInteger.hxx>
81 #include <TColStd_MapIteratorOfMapOfInteger.hxx>
82
83 // Qt includes
84 #include <QFrame>
85 #include <QLineEdit>
86 #include <QPushButton>
87 #include <QGroupBox>
88 #include <QTableWidget>
89 #include <QStringList>
90 #include <QHBoxLayout>
91 #include <QVBoxLayout>
92 #include <QGridLayout>
93 #include <QStackedWidget>
94 #include <QApplication>
95 #include <QComboBox>
96 #include <QFontMetrics>
97 #include <QLabel>
98 #include <QButtonGroup>
99 #include <QRadioButton>
100 #include <QRegExp>
101 #include <QListWidget>
102 #include <QCheckBox>
103 #include <QItemDelegate>
104 #include <QDoubleValidator>
105 #include <QKeyEvent>
106 #include <QHeaderView>
107
108 // IDL includes
109 #include <SALOMEconfig.h>
110 #include CORBA_SERVER_HEADER(SMESH_Group)
111
112 #define SPACING 6
113 #define MARGIN  11
114
115 //---------------------------------------
116 // maxLength
117 //---------------------------------------
118 static int maxLength (const QMap<int, QString> theMap, const QFontMetrics& theMetrics)
119 {
120   int aRes = 0;
121   QMap<int, QString>::const_iterator anIter;
122   for (anIter = theMap.begin(); anIter != theMap.end(); ++anIter)
123     aRes = qMax(aRes, theMetrics.width(anIter.value()));
124   return aRes;
125 }
126
127 //---------------------------------------
128 // getFilterId
129 //---------------------------------------
130 static int getFilterId (SMESH::ElementType theType)
131 {
132   switch (theType)
133   {
134     case SMESH::NODE   : return SMESH::NodeFilter;
135     case SMESH::EDGE   : return SMESH::EdgeFilter;
136     case SMESH::FACE   : return SMESH::FaceFilter;
137     case SMESH::VOLUME : return SMESH::VolumeFilter;
138     case SMESH::ALL    : return SMESH::AllElementsFilter;
139     default            : return SMESH::UnknownFilter;
140   }
141 }
142
143 /*
144   Class       : SMESHGUI_FilterTable::AdditionalWidget
145   Description : Class for storing additional parameters of criterion
146 */
147
148 class SMESHGUI_FilterTable::AdditionalWidget : public QWidget
149 {
150 public:
151   enum { Tolerance };
152
153 public:
154   AdditionalWidget(QWidget* theParent);
155   virtual ~AdditionalWidget();
156
157   virtual QList<int>      GetParameters() const;
158   virtual bool            IsValid(const bool = true) const;
159   virtual double          GetDouble(const int) const;
160   virtual int             GetInteger(const int) const;
161   virtual QString         GetString(const int) const;
162   virtual void            SetDouble(const int, const double);
163   virtual void            SetInteger(const int, const int);
164   virtual void            SetString(const int, const QString&);
165   void                    SetEditable(const int, const bool);
166   void                    SetEditable(const bool);
167   void                    SetPrecision(const int, const char* = 0);
168
169 private:
170   QMap< int, QWidget* > myWidgets;
171 };
172
173 SMESHGUI_FilterTable::AdditionalWidget::AdditionalWidget (QWidget* theParent)
174   : QWidget(theParent)
175 {
176   QLabel* aLabel = new QLabel(tr("SMESH_TOLERANCE"), this);
177
178   SMESHGUI_SpinBox* sb = new SMESHGUI_SpinBox(this);
179   sb->setAcceptNames( false ); // No Notebook variables allowed
180   sb->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
181   sb->RangeStepAndValidator( 0., 1.e20, 0.1, "len_tol_precision" );
182   myWidgets[ Tolerance ] = sb;
183
184   QHBoxLayout* aLay = new QHBoxLayout(this);
185   aLay->setSpacing(SPACING);
186   aLay->setMargin(0);
187
188   aLay->addWidget(aLabel);
189   aLay->addWidget(myWidgets[ Tolerance ]);
190   aLay->addStretch();
191
192   SetDouble( Tolerance, Precision::Confusion() );
193 }
194
195 SMESHGUI_FilterTable::AdditionalWidget::~AdditionalWidget()
196 {
197 }
198
199 QList<int> SMESHGUI_FilterTable::AdditionalWidget::GetParameters() const
200 {
201   QList<int> theList;
202   theList.append(Tolerance);
203   return theList;
204 }
205
206 bool SMESHGUI_FilterTable::AdditionalWidget::IsValid (const bool theMsg) const
207 {
208   if (!isEnabled())
209     return true;
210
211   QList<int> aParams = GetParameters();
212   QList<int>::const_iterator anIter;
213   for (anIter = aParams.begin(); anIter != aParams.end(); ++anIter) {
214     if ( !myWidgets.contains( *anIter ) ) continue;
215     bool valid = true;
216     if ( qobject_cast<QLineEdit*>( myWidgets[ *anIter ] ) ) {
217       valid = qobject_cast<QLineEdit*>( myWidgets[ *anIter ] )->hasAcceptableInput();
218     }
219     else if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ *anIter ] ) ) {
220       QString foo;
221       valid = qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ *anIter ] )->isValid( foo, false );
222     }
223     if (!valid && theMsg) {
224       SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
225                                    tr("SMESHGUI_INVALID_PARAMETERS"));
226       return false;
227     }
228   }
229
230   return true;
231 }
232
233 double SMESHGUI_FilterTable::AdditionalWidget::GetDouble (const int theId) const
234 {
235   double retval = 0;
236   if ( myWidgets.contains( theId ) ) {
237     if ( qobject_cast<QLineEdit*>( myWidgets[ theId ] ) )
238       retval = qobject_cast<QLineEdit*>( myWidgets[ theId ] )->text().toDouble();
239     if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] ) )
240       retval = qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] )->GetValue();
241   }
242   return retval;
243 }
244
245 int SMESHGUI_FilterTable::AdditionalWidget::GetInteger (const int theId) const
246 {
247   int retval = 0;
248   if ( myWidgets.contains( theId ) ) {
249     if ( qobject_cast<QLineEdit*>( myWidgets[ theId ] ) )
250       retval = qobject_cast<QLineEdit*>( myWidgets[ theId ] )->text().toInt();
251     if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] ) )
252       retval = (int)( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] )->GetValue() );
253   }
254   return retval;
255 }
256
257 QString SMESHGUI_FilterTable::AdditionalWidget::GetString (const int theId) const
258 {
259   QString retval = "";
260   if ( myWidgets.contains( theId ) ) {
261     if ( qobject_cast<QLineEdit*>( myWidgets[ theId ] ) )
262       retval = qobject_cast<QLineEdit*>( myWidgets[ theId ] )->text();
263     if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] ) )
264       retval = QString::number( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] )->GetValue() );
265   }
266   return retval;
267 }
268
269 void SMESHGUI_FilterTable::AdditionalWidget::SetDouble (const int theId, const double theVal)
270 {
271   if ( myWidgets.contains( theId ) ) {
272     if ( qobject_cast<QLineEdit*>( myWidgets[ theId ] ) )
273       qobject_cast<QLineEdit*>( myWidgets[ theId ] )->setText( QString::number( theVal ) );
274     if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] ) )
275       qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] )->SetValue( theVal );
276   }
277 }
278
279 void SMESHGUI_FilterTable::AdditionalWidget::SetInteger (const int theId, const int theVal)
280 {
281   if ( myWidgets.contains( theId ) ) {
282     if ( qobject_cast<QLineEdit*>( myWidgets[ theId ] ) )
283       qobject_cast<QLineEdit*>( myWidgets[ theId ] )->setText( QString::number( theVal ) );
284     if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] ) )
285       qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] )->SetValue( (double)theVal );
286   }
287 }
288
289 void SMESHGUI_FilterTable::AdditionalWidget::SetString (const int theId, const QString& theVal)
290 {
291   if ( myWidgets.contains( theId ) ) {
292     if ( qobject_cast<QLineEdit*>( myWidgets[ theId ] ) )
293       qobject_cast<QLineEdit*>( myWidgets[ theId ] )->setText( theVal );
294     if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] ) )
295       qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] )->SetValue( theVal.toDouble() );
296   }
297 }
298
299 void SMESHGUI_FilterTable::AdditionalWidget::SetEditable (const int theId, const bool isEditable)
300 {
301   if ( myWidgets.contains( theId ) ) {
302     if ( qobject_cast<QLineEdit*>( myWidgets[ theId ] ) )
303       qobject_cast<QLineEdit*>( myWidgets[ theId ] )->setReadOnly( !isEditable );
304     if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] ) )
305       qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] )->setReadOnly( !isEditable );
306   }
307 }
308
309 void SMESHGUI_FilterTable::AdditionalWidget::SetEditable (const bool isEditable)
310 {
311   QList<int> aParams = GetParameters();
312   QList<int>::const_iterator anIter;
313   for (anIter = aParams.begin(); anIter != aParams.end(); ++anIter)
314     SetEditable( *anIter,  isEditable );
315 }
316
317 void SMESHGUI_FilterTable::AdditionalWidget::SetPrecision(const int theId, const char* precision)
318 {
319   if ( myWidgets.contains( theId ) ) {
320     if ( qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] ) ) {
321       SMESHGUI_SpinBox* sb = qobject_cast<SMESHGUI_SpinBox*>( myWidgets[ theId ] );
322       double val = sb->GetValue();
323       double min = pow(10.0, -(sb->decimals()));
324       sb->RangeStepAndValidator( 0., 1.e20, 0.1, precision ? precision : "len_tol_precision" );
325       sb->SetValue( qMax( val, min ) );
326     }
327   }
328 }
329
330 /*
331   Class       : SMESHGUI_FilterTable::ComboItem
332   Description : Combo table item. Identificator corresponding to string may be assigned
333 */
334
335 class SMESHGUI_FilterTable::ComboItem : public QTableWidgetItem
336 {
337 public:
338   static int     Type();
339
340   ComboItem( const QMap<int, QString>& );
341
342   void           setItems( const QMap<int, QString>& );
343   void           clear();
344   int            count() const;
345
346   int            value() const;
347   void           setValue( const int );
348
349 private:
350   int            id( int ) const;
351   int            index( int ) const;
352
353 private:
354   QMap<int, int> myIdToIdx;
355 };
356
357 int SMESHGUI_FilterTable::ComboItem::Type()
358 {
359   return QTableWidgetItem::UserType + 1;
360 }
361
362 SMESHGUI_FilterTable::ComboItem::ComboItem( const QMap<int, QString>& theIds )
363  : QTableWidgetItem( Type() )
364 {
365   setItems( theIds );
366 }
367
368 void SMESHGUI_FilterTable::ComboItem::setItems( const QMap<int, QString>& theIds )
369 {
370   myIdToIdx.clear();
371   QMap<int, QString>::const_iterator it;
372   QStringList items;
373   for ( it = theIds.begin(); it != theIds.end(); ++it ) {
374     myIdToIdx[it.key()] = items.count();
375     items.append( it.value() );
376   }
377   setData( Qt::UserRole, items );
378   setValue( id( 0 ) ); 
379 }
380
381 void SMESHGUI_FilterTable::ComboItem::clear()
382 {
383   QMap<int, QString> empty;
384   setItems( empty );
385 }
386
387 int SMESHGUI_FilterTable::ComboItem::count() const
388 {
389   return myIdToIdx.count();
390 }
391
392 int SMESHGUI_FilterTable::ComboItem::value() const
393 {
394   return( id( data( Qt::UserRole ).toStringList().indexOf( text() ) ) ); 
395 }
396
397 void SMESHGUI_FilterTable::ComboItem::setValue( const int theId )
398 {
399   int idx = index( theId );
400   QStringList items = data( Qt::UserRole ).toStringList();
401   setText( idx >= 0 && idx < items.count() ? items[idx] : "" );
402 }
403
404 int SMESHGUI_FilterTable::ComboItem::id( int idx ) const
405 {
406   QMap<int,int>::const_iterator it;
407   for ( it = myIdToIdx.begin(); it != myIdToIdx.end(); ++it )
408     if ( it.value() == idx ) return it.key();
409   return -1;
410 }
411
412 int SMESHGUI_FilterTable::ComboItem::index( int i ) const
413 {
414   return myIdToIdx.contains( i ) ? myIdToIdx[i] : -1;
415 }
416 /*
417   Class       : SMESHGUI_FilterTable::CheckItem
418   Description : Check table item.
419 */
420
421 class SMESHGUI_FilterTable::CheckItem : public QTableWidgetItem
422 {
423 public:
424   static int     Type();
425
426   CheckItem( bool = false );
427   CheckItem( const QString&, bool = false );
428   ~CheckItem();
429
430   void  setChecked( bool );
431   bool  checked() const;
432 };
433
434 int SMESHGUI_FilterTable::CheckItem::Type()
435 {
436   return QTableWidgetItem::UserType + 2;
437 }
438
439 SMESHGUI_FilterTable::CheckItem::CheckItem( bool value )
440  : QTableWidgetItem( Type() )
441 {
442   Qt::ItemFlags f = flags();
443   f = f | Qt::ItemIsUserCheckable;
444   f = f & ~Qt::ItemIsTristate;
445   f = f & ~Qt::ItemIsEditable;
446   setFlags( f );
447   setChecked(value);
448 }
449
450 SMESHGUI_FilterTable::CheckItem::CheckItem( const QString& text, bool value )
451  : QTableWidgetItem( Type() )
452 {
453   Qt::ItemFlags f = flags();
454   f = f | Qt::ItemIsUserCheckable;
455   f = f & ~Qt::ItemIsTristate;
456   f = f & ~Qt::ItemIsEditable;
457   setFlags( f );
458   setChecked( value );
459   setText( text );
460 }
461
462 SMESHGUI_FilterTable::CheckItem::~CheckItem()
463 {
464 }
465
466 void SMESHGUI_FilterTable::CheckItem::setChecked( bool value )
467 {
468   setCheckState( value ? Qt::Checked : Qt::Unchecked );
469 }
470
471 bool SMESHGUI_FilterTable::CheckItem::checked() const
472 {
473   return checkState() == Qt::Checked;
474 }
475
476 /*
477   Class       : SMESHGUI_FilterTable::IntSpinItem
478   Description : Integer spin table item.
479 */
480
481 class SMESHGUI_FilterTable::IntSpinItem : public QTableWidgetItem
482 {
483 public:
484   static int     Type();
485
486   IntSpinItem( const int theValue );
487
488   int            value() const;
489   void           setValue( const int theValue );
490
491   void           clear();
492 };
493
494 int SMESHGUI_FilterTable::IntSpinItem::Type()
495 {
496   return QTableWidgetItem::UserType + 3;
497 }
498
499 SMESHGUI_FilterTable::IntSpinItem::IntSpinItem( const int theValue )
500  : QTableWidgetItem( Type() )
501 {
502   setValue( theValue );
503 }
504
505 int SMESHGUI_FilterTable::IntSpinItem::value() const
506 {
507   bool ok = false;
508   int value = data( Qt::UserRole ).toInt( &ok );
509   return ok ? value : 0; 
510 }
511
512 void SMESHGUI_FilterTable::IntSpinItem::setValue( const int theValue )
513 {
514   setData( Qt::UserRole, theValue );
515   setText( QString::number( theValue ) ); 
516 }
517
518 void SMESHGUI_FilterTable::IntSpinItem::clear()
519 {
520   setText( "" );
521 }
522
523 /*
524   Class       : SMESHGUI_FilterTable::DoubleSpinItem
525   Description : Double spin table item.
526 */
527
528 class SMESHGUI_FilterTable::DoubleSpinItem : public QTableWidgetItem
529 {
530 public:
531   static int     Type();
532
533   DoubleSpinItem( const double theValue );
534
535   double         value() const;
536   void           setValue( const double theValue );
537
538   int            precision() const;
539   void           setPrecision( const int thePrecision );
540
541   void           clear();
542 };
543
544 int SMESHGUI_FilterTable::DoubleSpinItem::Type()
545 {
546   return QTableWidgetItem::UserType + 4;
547 }
548
549 SMESHGUI_FilterTable::DoubleSpinItem::DoubleSpinItem( const double theValue )
550  : QTableWidgetItem( Type() )
551 {
552   setValue( theValue );
553 }
554
555 double SMESHGUI_FilterTable::DoubleSpinItem::value() const
556 {
557   bool ok = false;
558   double value = data( Qt::UserRole ).toDouble( &ok );
559   return ok ? value : 0; 
560 }
561
562 void SMESHGUI_FilterTable::DoubleSpinItem::setValue( const double theValue )
563 {
564   setData( Qt::UserRole, theValue );
565   setText( QString::number( theValue ) ); 
566 }
567
568 int SMESHGUI_FilterTable::DoubleSpinItem::precision() const
569 {
570   bool ok = false;
571   int precision = data( Qt::UserRole + 1 ).toInt( &ok );
572   return ok ? precision : 0; 
573 }
574
575 void SMESHGUI_FilterTable::DoubleSpinItem::setPrecision( const int thePrecision )
576 {
577   setData( Qt::UserRole + 1, thePrecision );
578 }
579
580 void SMESHGUI_FilterTable::DoubleSpinItem::clear()
581 {
582   setText( "" );
583 }
584
585 /*
586   Class       : SMESHGUI_FilterTable::ComboDelegate
587   Description : Table used by this widget
588 */
589
590 class SMESHGUI_FilterTable::ComboDelegate : public QItemDelegate
591 {
592 public:
593   ComboDelegate( QObject* = 0 );
594   ~ComboDelegate();
595   
596   QWidget*      createEditor( QWidget*, const QStyleOptionViewItem&,
597                               const QModelIndex& ) const;
598   
599   void          setEditorData( QWidget*, const QModelIndex& ) const;
600   void          setModelData( QWidget*, QAbstractItemModel*, const QModelIndex& ) const;
601   
602   void          updateEditorGeometry( QWidget*, const QStyleOptionViewItem&, 
603                                       const QModelIndex& ) const;
604 private:
605   QTableWidget* myTable;
606 };
607
608 SMESHGUI_FilterTable::ComboDelegate::ComboDelegate( QObject* parent )
609   : QItemDelegate( parent ), 
610     myTable( qobject_cast<QTableWidget*>( parent ) )
611 {
612 }
613   
614 SMESHGUI_FilterTable::ComboDelegate::~ComboDelegate()
615 {
616 }
617
618 QWidget* SMESHGUI_FilterTable::ComboDelegate::createEditor( QWidget* parent,
619                                                             const QStyleOptionViewItem& option,
620                                                             const QModelIndex& index ) const
621 {
622   QVariant aData = index.data( Qt::UserRole );
623   QVariant::Type aDataType = aData.type();
624   if( aDataType == QVariant::StringList ) {
625     QStringList l = aData.toStringList();
626     if ( !l.isEmpty() ) {
627       QComboBox* cb = new QComboBox( parent );
628       cb->setFrame( false );
629       cb->addItems( l );
630       return cb;
631     }
632   }
633   else if( aDataType == QVariant::Int ) {
634     bool ok = false;
635     int aValue = aData.toInt( &ok );
636     if ( ok ) {
637       SalomeApp_IntSpinBox* intSpin = new SalomeApp_IntSpinBox( 0, 1000, 1, parent, false, true );
638       intSpin->setFrame( false );
639       intSpin->setValue( aValue );
640       return intSpin;
641     }
642   }
643   else if( aDataType == QVariant::Double ) {
644     bool ok = false;
645     double aValue = aData.toDouble( &ok );
646     if ( ok ) {
647       int aPrecision = index.data( Qt::UserRole + 1 ).toInt( &ok );
648       if ( !ok )
649         aPrecision = 0;
650
651       SalomeApp_DoubleSpinBox* dblSpin = new SalomeApp_DoubleSpinBox( -1.e20, 1.e20, 1, aPrecision, 20, parent, false, true );
652       dblSpin->setFrame( false );
653       dblSpin->setValue( aValue );
654       return dblSpin;
655     }
656   }
657   return QItemDelegate::createEditor( parent, option, index );
658 }
659
660 void SMESHGUI_FilterTable::ComboDelegate::setEditorData( QWidget* editor, 
661                                                          const QModelIndex& index ) const
662 {
663   QVariant data = index.model()->data( index, Qt::DisplayRole );
664   QString value = data.toString();
665   bool bOk = false;
666   if ( QComboBox* cb = dynamic_cast<QComboBox*>( editor ) ) {
667     int i = cb->findText( value );
668     if ( i >= 0 ) {
669       cb->setCurrentIndex( i );
670       bOk = true;
671     }
672   }
673   else if ( SalomeApp_DoubleSpinBox* dblSpin = dynamic_cast<SalomeApp_DoubleSpinBox*>( editor ) ) {
674     if( data.type() == QVariant::Double ) {
675       double valueDouble = data.toDouble( &bOk );
676       if( bOk )
677         dblSpin->setValue( valueDouble );
678     }
679   }
680   if ( !bOk ) QItemDelegate::setEditorData( editor, index );
681 }
682
683 void SMESHGUI_FilterTable::ComboDelegate::setModelData( QWidget* editor,
684                                                         QAbstractItemModel* model,
685                                                         const QModelIndex& index) const
686 {
687   if( QComboBox* cb = dynamic_cast<QComboBox*>( editor ) )
688     model->setData( index, cb->currentText(), Qt::DisplayRole );
689   else if( SalomeApp_IntSpinBox* intSpin = dynamic_cast<SalomeApp_IntSpinBox*>( editor ) )
690     model->setData( index, intSpin->value(), Qt::DisplayRole );
691   else if( SalomeApp_DoubleSpinBox* dblSpin = dynamic_cast<SalomeApp_DoubleSpinBox*>( editor ) )
692     model->setData( index, dblSpin->value(), Qt::DisplayRole );
693   else QItemDelegate::setModelData( editor, model, index );
694 }
695
696 void SMESHGUI_FilterTable::ComboDelegate::updateEditorGeometry( QWidget* editor,
697                                                                 const QStyleOptionViewItem& option, 
698                                                                 const QModelIndex& index ) const
699 {
700   editor->setGeometry( option.rect );
701 }
702
703 /*
704   Class       : SMESHGUI_FilterTable::Table
705   Description : Table used by this widget
706 */
707
708 class SMESHGUI_FilterTable::Table : public QTableWidget
709 {
710 public:
711   Table( QWidget* = 0 );
712   Table( int, int, QWidget* = 0 );
713   virtual ~Table();
714
715   QSize                   minimumSizeHint() const;
716
717   void                    setEditable( bool, int, int );
718   bool                    isEditable( int, int ) const;
719
720   void                    setReadOnly( bool );
721   bool                    isReadOnly() const;
722
723   void                    insertRows( int, int = 1 );
724   QString                 text( int, int );
725
726   QList<int>              selectedRows();
727 };
728
729 //=======================================================================
730 // name    : SMESHGUI_FilterTable::Table::Table
731 // Purpose : Constructor
732 //=======================================================================
733 SMESHGUI_FilterTable::Table::Table (QWidget* parent)
734 : QTableWidget(parent)
735 {
736   // set custom item delegate
737   setItemDelegate( new ComboDelegate(this) );
738   // set edit triggers by default
739   setReadOnly( false );
740 }
741
742 //=======================================================================
743 // name    : SMESHGUI_FilterTable::Table::Table
744 // Purpose : Constructor
745 //=======================================================================
746 SMESHGUI_FilterTable::Table::Table (int numRows, int numCols, QWidget* parent)
747 : QTableWidget(numRows, numCols, parent)
748 {
749   // set custom item delegate
750   setItemDelegate( new ComboDelegate(this) );
751   // set edit triggers by default
752   setReadOnly( false );
753 }
754
755 //=======================================================================
756 // name    : SMESHGUI_FilterTable::Table::~Table
757 // Purpose : Destructor
758 //=======================================================================
759 SMESHGUI_FilterTable::Table::~Table()
760 {
761 }
762
763 //=======================================================================
764 // name    : SMESHGUI_FilterTable::Table::minimumSizeHint
765 // Purpose : Get minimum size for the table
766 //=======================================================================
767 QSize SMESHGUI_FilterTable::Table::minimumSizeHint() const
768 {
769   QSize s = QTableWidget::minimumSizeHint();
770   QHeaderView* hv = horizontalHeader();
771   if ( hv )
772     s.setWidth( qMax( s.width(), hv->length() ) );
773   return s;
774 }
775
776 //=======================================================================
777 // name    : SMESHGUI_FilterTable::Table::setEditable
778 // Purpose : Set editable of specified cell
779 //=======================================================================
780 void SMESHGUI_FilterTable::Table::setEditable (bool isEditable,
781                                                int row, int col)
782 {
783   QTableWidgetItem* anItem = item( row, col );
784   if ( anItem ) {
785     bool isSignalsBlocked = signalsBlocked();
786     blockSignals( true );
787
788     Qt::ItemFlags f = anItem->flags();
789     if ( !isEditable ) f = f & ~Qt::ItemIsEditable;
790     else f = f | Qt::ItemIsEditable;
791     anItem->setFlags( f );
792     
793     blockSignals( isSignalsBlocked );
794   }
795 }
796
797 //=======================================================================
798 // name    : SMESHGUI_FilterTable::Table::isEditable
799 // Purpose : Verify wheter cell is editable
800 //=======================================================================
801 bool SMESHGUI_FilterTable::Table::isEditable (int row, int col) const
802 {
803   QTableWidgetItem* anItem = item( row, col );
804   return anItem == 0 || anItem->flags() & Qt::ItemIsEditable;
805 }
806
807 void SMESHGUI_FilterTable::Table::setReadOnly( bool on )
808 {
809   setEditTriggers( on ? 
810                    QAbstractItemView::NoEditTriggers  :
811                    QAbstractItemView::AllEditTriggers );
812 }
813
814 bool SMESHGUI_FilterTable::Table::isReadOnly() const
815 {
816   return editTriggers() == QAbstractItemView::NoEditTriggers;
817 }
818
819 //=======================================================================
820 // name    : SMESHGUI_FilterTable::Table::insertRows
821 // Purpose : Insert rows (virtual redefined)
822 //=======================================================================
823 void SMESHGUI_FilterTable::Table::insertRows (int row, int count)
824 {
825   closePersistentEditor( currentItem() );
826   while ( count-- ) insertRow( row );
827 }
828
829 //=======================================================================
830 // name    : SMESHGUI_FilterTable::Table::text
831 // Purpose : Get text from cell (virtual redefined)
832 //=======================================================================
833 QString SMESHGUI_FilterTable::Table::text (int row, int col)
834 {
835   closePersistentEditor( currentItem() );
836   QTableWidgetItem* anItem = item( row, col );
837   return anItem ? anItem->text() : QString();
838 }
839
840 QList<int> SMESHGUI_FilterTable::Table::selectedRows()
841 {
842   QList<QTableWidgetItem*> selItems = selectedItems();
843   QTableWidgetItem* anItem;
844   QList<int> rows;
845
846   foreach( anItem, selItems ) {
847     int r = row( anItem );
848     if ( !rows.contains( r ) ) rows.append( r );
849   }
850
851   qSort( rows );
852   return rows;
853 }
854
855 /*
856   Class       : SMESHGUI_FilterTable
857   Description : Frame containig
858                   - Button group for switching entity type
859                   - Table for displaying filter criterions
860                   - Buttons for editing table and filter libraries
861 */
862
863 //=======================================================================
864 // name    : SMESHGUI_FilterTable::SMESHGUI_FilterTable
865 // Purpose : Constructor
866 //=======================================================================
867 SMESHGUI_FilterTable::SMESHGUI_FilterTable( SMESHGUI* theModule,
868                                             QWidget* parent,
869                                             const int type )
870 : QWidget( parent ),
871   myIsLocked( false ),
872   mySMESHGUI( theModule )
873 {
874   myEntityType = -1;
875
876   QList<int> aTypes;
877   aTypes.append(type);
878   Init(aTypes);
879 }
880
881 //=======================================================================
882 // name    : SMESHGUI_FilterTable::SMESHGUI_FilterTable
883 // Purpose : Constructor
884 //=======================================================================
885 SMESHGUI_FilterTable::SMESHGUI_FilterTable( SMESHGUI* theModule,
886                                             QWidget* parent,
887                                             const QList<int>& types )
888 : QWidget( parent ),
889   myIsLocked( false ),
890   mySMESHGUI( theModule )
891 {
892   myEntityType = -1;
893   Init(types);
894 }
895
896 SMESHGUI_FilterTable::~SMESHGUI_FilterTable()
897 {
898 }
899
900 //=======================================================================
901 // name    : SMESHGUI_FilterTable::Init
902 // Purpose : Create table corresponding to the specified type
903 //=======================================================================
904 void SMESHGUI_FilterTable::Init (const QList<int>& theTypes)
905 {
906   if (theTypes.isEmpty())
907     return;
908
909   // Create buttons if necessary
910
911   if (myTables.isEmpty())
912   {
913     // create main layout
914     QVBoxLayout* aMainLay = new QVBoxLayout(this);
915     aMainLay->setMargin( 0 );
916     aMainLay->setSpacing( SPACING );
917
918     // create switch of entity types
919     myEntityTypeBox = new QGroupBox(tr("ENTITY_TYPE"), this);
920     QHBoxLayout* myEntityTypeBoxLayout = new QHBoxLayout(myEntityTypeBox);
921     myEntityTypeBoxLayout->setMargin( MARGIN );
922     myEntityTypeBoxLayout->setSpacing( SPACING );
923     myEntityTypeGrp = new QButtonGroup(this);
924
925     const QMap<int, QString>& aSupportedTypes = getSupportedTypes();
926     QMap<int, QString>::const_iterator anIter;
927     for (anIter = aSupportedTypes.begin(); anIter != aSupportedTypes.end(); ++anIter)
928     {
929       QRadioButton* aBtn = new QRadioButton(anIter.value(), myEntityTypeBox);
930       myEntityTypeGrp->addButton(aBtn, anIter.key());
931       myEntityTypeBoxLayout->addWidget(aBtn);
932     }
933
934     myTableGrp = new QGroupBox(tr("FILTER"), this );
935
936     // create table
937     mySwitchTableGrp = new QWidget(myTableGrp);
938     QVBoxLayout* mySwitchTableGrpLayout = new QVBoxLayout(mySwitchTableGrp);
939     mySwitchTableGrpLayout->setMargin(0);
940     mySwitchTableGrpLayout->setSpacing(0);
941
942     QList<int>::const_iterator typeIt = theTypes.begin();
943     for ( ; typeIt != theTypes.end(); ++typeIt ) {
944       Table* aTable = createTable(mySwitchTableGrp, *typeIt);
945       myTables[ *typeIt ] = aTable;
946       mySwitchTableGrpLayout->addWidget(aTable);
947       if ( typeIt != theTypes.begin() )
948         aTable->hide();
949     }
950
951     // create buttons
952     myAddBtn      = new QPushButton(tr("ADD"),       myTableGrp);
953     myRemoveBtn   = new QPushButton(tr("REMOVE"),    myTableGrp);
954     myClearBtn    = new QPushButton(tr("CLEAR"),     myTableGrp);
955     myInsertBtn   = new QPushButton(tr("INSERT"),    myTableGrp);
956     myCopyFromBtn = new QPushButton(tr("COPY_FROM"), myTableGrp);
957     myAddToBtn    = new QPushButton(tr("ADD_TO"),    myTableGrp);
958
959     myAddBtn->setAutoDefault(false);
960     myRemoveBtn->setAutoDefault(false);
961     myClearBtn->setAutoDefault(false);
962     myInsertBtn->setAutoDefault(false);
963     myCopyFromBtn->setAutoDefault(false);
964     myAddToBtn->setAutoDefault(false);
965
966     myCopyFromBtn->hide();
967     myAddToBtn->hide();
968
969     // layout widgets
970     QGridLayout* aLay = new QGridLayout(myTableGrp);
971     aLay->setMargin(MARGIN);
972     aLay->setSpacing(SPACING);
973
974     aLay->addWidget(mySwitchTableGrp, 0, 0, 7, 1);
975     aLay->addWidget(myAddBtn,         0, 1);
976     aLay->addWidget(myInsertBtn,      1, 1);
977     aLay->addWidget(myRemoveBtn,      2, 1);
978     aLay->addWidget(myClearBtn,       3, 1);
979     aLay->addWidget(myCopyFromBtn,    5, 1);
980     aLay->addWidget(myAddToBtn,       6, 1);
981     aLay->addWidget(createAdditionalFrame(myTableGrp), 7, 0, 1, 2 );
982
983     aLay->setRowMinimumHeight(4, 10);
984     aLay->setRowStretch(4, 1);
985     aLay->setColumnStretch(0, 1);
986     aLay->setColumnStretch(1, 0);
987
988     // layout 
989     aMainLay->addWidget(myEntityTypeBox);
990     aMainLay->addWidget(myTableGrp);
991     
992     // signals and slots
993     connect(myAddBtn,    SIGNAL(clicked()), this, SLOT(onAddBtn()));
994     connect(myInsertBtn, SIGNAL(clicked()), this, SLOT(onInsertBtn()));
995     connect(myRemoveBtn, SIGNAL(clicked()), this, SLOT(onRemoveBtn()));
996     connect(myClearBtn,  SIGNAL(clicked()), this, SLOT(onClearBtn()));
997
998     connect(myCopyFromBtn, SIGNAL(clicked()), this, SLOT(onCopyFromBtn()));
999     connect(myAddToBtn,    SIGNAL(clicked()), this, SLOT(onAddToBtn()));
1000
1001     connect(myEntityTypeGrp, SIGNAL(buttonClicked(int)), this, SLOT(onEntityType(int)));
1002
1003     myLibDlg = 0;
1004   }
1005
1006   // Hide buttons of entity types if necessary
1007   const QMap<int, QString>& aSupportedTypes = getSupportedTypes();
1008   QMap<int, QString>::const_iterator anIt;
1009   for (anIt = aSupportedTypes.begin(); anIt != aSupportedTypes.end(); ++anIt)
1010   {
1011     QAbstractButton* aBtn = myEntityTypeGrp->button(anIt.key());
1012     if ( aBtn ) aBtn->setVisible( theTypes.contains(anIt.key()) );
1013   }
1014
1015   // select first button if there is no selected buttons or it is hidden
1016   int aBtnId = myEntityTypeGrp->checkedId();
1017   if ( aBtnId == -1 || !theTypes.contains(aBtnId) ) {
1018     QAbstractButton* aBtn = myEntityTypeGrp->button(theTypes.first());
1019     if ( aBtn ) aBtn->setChecked(true);
1020   }
1021
1022   myEntityTypeBox->setVisible(theTypes.count() > 1);
1023
1024   myTableGrp->updateGeometry();
1025   int cType = myEntityTypeGrp->checkedId();
1026   onEntityType(cType);
1027 }
1028
1029 //=======================================================================
1030 // name    : SMESHGUI_FilterTable::createAdditionalFrame
1031 // Purpose : Get group box containing table. May be used for adding new widgets in it
1032 //=======================================================================
1033 QWidget* SMESHGUI_FilterTable::createAdditionalFrame (QWidget* theParent)
1034 {
1035   QWidget* aFrame = new QWidget(theParent);
1036
1037   QFrame* aLine1 = new QFrame(aFrame);
1038   QFrame* aLine2 = new QFrame(aFrame);
1039   aLine1->setFrameStyle(QFrame::HLine | QFrame::Sunken);
1040   aLine2->setFrameStyle(QFrame::HLine | QFrame::Sunken);
1041   aLine1->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
1042   aLine2->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
1043
1044   QLabel* aLabel = new QLabel(tr("ADDITIONAL_PARAMETERS"), aFrame);
1045
1046   myWgStack = new QStackedWidget(aFrame);
1047
1048   QGridLayout* aLay = new QGridLayout(aFrame);
1049   aLay->setMargin(0);
1050   aLay->setSpacing(SPACING);
1051   aLay->addWidget(aLine1,    0, 0);
1052   aLay->addWidget(aLabel,    0, 1);
1053   aLay->addWidget(aLine2,    0, 2);
1054   aLay->addWidget(myWgStack, 1, 0, 1, 3);
1055
1056   return aFrame;
1057 }
1058
1059 //=======================================================================
1060 // name    : SMESHGUI_FilterTable::GetTableGrp
1061 // Purpose : Get group box containing table. May be used for adding new widgets in it
1062 //=======================================================================
1063 QGroupBox* SMESHGUI_FilterTable::GetTableGrp()
1064 {
1065   return myTableGrp;
1066 }
1067
1068 //=======================================================================
1069 // name    : SMESHGUI_FilterTable::onEntityType
1070 // Purpose : SLOT. Called when entity type changed.
1071 //           Display corresponding table
1072 //=======================================================================
1073 void SMESHGUI_FilterTable::onEntityType (int theType)
1074 {
1075   if (myEntityType == theType)
1076     return;
1077
1078   myIsValid = true;
1079   emit NeedValidation();
1080   if (!myIsValid)
1081   {
1082     myEntityTypeGrp->button(myEntityType)->setChecked(true);
1083     return;
1084   }
1085
1086   myEntityType = theType;
1087
1088   if (!myTables.contains(theType)) {
1089     myTables[ theType ] = createTable(mySwitchTableGrp, theType);
1090     ((QVBoxLayout*)mySwitchTableGrp->layout())->addWidget(myTables[ theType ]);
1091   }
1092
1093   TableMap::iterator anIter;
1094   for (anIter = myTables.begin(); anIter != myTables.end(); ++anIter)
1095      anIter.value()->setVisible( myEntityType == anIter.key() );
1096
1097   updateBtnState();
1098   qApp->processEvents();
1099   myTables[ myEntityType ]->updateGeometry();
1100   adjustSize();
1101
1102   emit EntityTypeChanged(theType);
1103 }
1104
1105 //=======================================================================
1106 // name    : SMESHGUI_FilterTable::IsValid
1107 // Purpose : Verify validity of entered data
1108 //=======================================================================
1109 bool SMESHGUI_FilterTable::IsValid (const bool theMess, const int theEntityType) const
1110 {
1111   int aType = theEntityType == -1 ? GetType() : theEntityType;
1112
1113   Table* aTable = myTables[ aType ];
1114   for (int i = 0, n = aTable->rowCount(); i < n; i++)
1115   {
1116     int aCriterion = GetCriterionType(i, aType);
1117     QString errMsg;
1118     if (aCriterion == SMESH::FT_GroupColor ) {
1119       QtxColorButton* clrBtn = qobject_cast<QtxColorButton*>(aTable->cellWidget(i, 2));
1120       if (clrBtn && !clrBtn->color().isValid())
1121         errMsg = tr( "GROUPCOLOR_ERROR" );
1122     }
1123     else if (aCriterion == SMESH::FT_RangeOfIds ||
1124              aCriterion == SMESH::FT_BelongToGeom ||
1125              aCriterion == SMESH::FT_BelongToPlane ||
1126              aCriterion == SMESH::FT_BelongToCylinder ||
1127              aCriterion == SMESH::FT_BelongToGenSurface ||
1128              aCriterion == SMESH::FT_ElemGeomType ||
1129              aCriterion == SMESH::FT_CoplanarFaces ||
1130              aCriterion == SMESH::FT_LyingOnGeom)
1131     {
1132       if (aTable->text(i, 2).isEmpty())
1133         errMsg = tr( "ERROR" );
1134     }
1135     else {
1136       bool aRes = false;
1137       bool isSignalsBlocked = aTable->signalsBlocked();
1138       aTable->blockSignals(true);
1139       double  aThreshold = (int)aTable->text(i, 2).toDouble(&aRes);
1140       aTable->blockSignals(isSignalsBlocked);
1141
1142       if (!aRes && aTable->isEditable(i, 2))
1143         errMsg = tr( "ERROR" );
1144       else if (aType == SMESH::EDGE &&
1145                GetCriterionType(i, aType) == SMESH::FT_MultiConnection &&
1146                aThreshold == 1)
1147         errMsg = tr( "MULTIEDGES_ERROR" );
1148     }
1149
1150     if (!errMsg.isEmpty()) {
1151       if (theMess)
1152         SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"), errMsg );
1153       return false;
1154     }
1155
1156     QTableWidgetItem* anItem = aTable->item(i, 0);
1157     if (myAddWidgets.contains(anItem) && !myAddWidgets[ anItem ]->IsValid())
1158       return false;
1159   }
1160
1161   return true;
1162 }
1163
1164 //=======================================================================
1165 // name    : SMESHGUI_FilterTable::SetValidity
1166 // Purpose : Set validity of the table
1167 //=======================================================================
1168 void SMESHGUI_FilterTable::SetValidity (const bool isValid)
1169 {
1170   myIsValid = isValid;
1171 }
1172
1173 //=======================================================================
1174 // name    : SMESHGUI_FilterTable::GetType
1175 // Purpose : Get current entity type
1176 //=======================================================================
1177 int SMESHGUI_FilterTable::GetType() const
1178 {
1179   return myEntityType;
1180 }
1181
1182 //=======================================================================
1183 // name    : SMESHGUI_FilterTable::SetType
1184 // Purpose : Set current entity type
1185 //=======================================================================
1186 void SMESHGUI_FilterTable::SetType (const int type)
1187 {
1188   myEntityTypeGrp->button(type)->setChecked(true);
1189   onEntityType(type);
1190 }
1191
1192 //=======================================================================
1193 // name    : SMESHGUI_FilterTable::RestorePreviousEntityType
1194 // Purpose : Restore previous entity type
1195 //=======================================================================
1196 void SMESHGUI_FilterTable::RestorePreviousEntityType()
1197 {
1198   SetType(myEntityType);
1199 }
1200
1201 //=======================================================================
1202 // name    : SMESHGUI_FilterTable::GetCriterionType
1203 // Purpose : Get type of criterion from specified row (corresponding enums in h-file)
1204 //=======================================================================
1205 int SMESHGUI_FilterTable::GetCriterionType (const int theRow, const int theType) const
1206 {
1207   int aType = theType == -1 ? GetType() : theType;
1208   Table* aTable = myTables[ aType ];
1209   ComboItem* anItem = (ComboItem*)aTable->item(theRow, 0);
1210   return anItem != 0 ? anItem->value() : SMESH::FT_Undefined;
1211 }
1212
1213 //=======================================================================
1214 // name    : SMESHGUI_FilterTable::GetCriterion
1215 // Purpose : Get parameters of criterion from specified row
1216 //=======================================================================
1217 void SMESHGUI_FilterTable::GetCriterion (const int                 theRow,
1218                                          SMESH::Filter::Criterion& theCriterion,
1219                                          const int                 theEntityType) const
1220 {
1221   int aType = theEntityType == -1 ? GetType() : theEntityType;
1222   Table* aTable = myTables[ aType ];
1223
1224   theCriterion.Type = ((ComboItem*)aTable->item(theRow, 0))->value();
1225   theCriterion.UnaryOp = ((CheckItem*)aTable->item(theRow, 3))->checked() ? SMESH::FT_LogicalNOT : SMESH::FT_Undefined;
1226   theCriterion.BinaryOp = theRow != aTable->rowCount() - 1 ?
1227     ((ComboItem*)aTable->item(theRow, 4))->value() : SMESH::FT_Undefined;
1228   theCriterion.TypeOfElement = (SMESH::ElementType)aType;
1229
1230   int aCriterionType = GetCriterionType(theRow, aType);
1231
1232   if ( aCriterionType == SMESH::FT_GroupColor )
1233   {
1234     QtxColorButton* clrBtn = qobject_cast<QtxColorButton*>(aTable->cellWidget(theRow, 2));
1235     if ( clrBtn )
1236     {
1237       const QColor qClr = clrBtn->color();
1238       QString clrStr = QString( "%1;%2;%3" ).
1239         arg( qClr.red()/256. ).arg( qClr.green()/256. ).arg( qClr.blue()/256. );
1240       theCriterion.ThresholdStr = clrStr.toLatin1().constData();
1241     }
1242   }
1243   else if ( aCriterionType == SMESH::FT_ElemGeomType )
1244     theCriterion.Threshold = (double)((ComboItem*)aTable->item(theRow, 2))->value();
1245   else if ( aCriterionType == SMESH::FT_CoplanarFaces )
1246     theCriterion.ThresholdID = aTable->text(theRow, 2).toLatin1().constData();
1247   else if ( aCriterionType != SMESH::FT_RangeOfIds &&
1248             aCriterionType != SMESH::FT_BelongToGeom &&
1249             aCriterionType != SMESH::FT_BelongToPlane &&
1250             aCriterionType != SMESH::FT_BelongToCylinder &&
1251             aCriterionType != SMESH::FT_BelongToGenSurface &&
1252             aCriterionType != SMESH::FT_LyingOnGeom )
1253   {
1254     theCriterion.Compare = ((ComboItem*)aTable->item(theRow, 1))->value();
1255     theCriterion.Threshold = aTable->item(theRow, 2)->text().toDouble();
1256   }
1257   else
1258   {
1259     theCriterion.ThresholdStr = aTable->text(theRow, 2).toLatin1().constData();
1260     if ( aCriterionType != SMESH::FT_RangeOfIds )
1261       theCriterion.ThresholdID = aTable->text( theRow, 5 ).toLatin1().constData();
1262   }
1263
1264   QTableWidgetItem* anItem = aTable->item(theRow, 0);
1265   if (myAddWidgets.contains(anItem))
1266     theCriterion.Tolerance = myAddWidgets[ anItem ]->GetDouble(AdditionalWidget::Tolerance);
1267 }
1268
1269 //=======================================================================
1270 // name    : SMESHGUI_FilterTable::SetCriterion
1271 // Purpose : Set parameters of criterion of specified row
1272 //=======================================================================
1273 void SMESHGUI_FilterTable::SetCriterion (const int                       theRow,
1274                                          const SMESH::Filter::Criterion& theCriterion,
1275                                          const int                       theEntityType)
1276 {
1277   int aType = theEntityType == -1 ? GetType() : theEntityType;
1278
1279   Table* aTable = myTables[ aType ];
1280
1281   if (theRow > aTable->rowCount() - 1)
1282     return;
1283
1284   ((ComboItem*)aTable->item(theRow, 0))->setValue(theCriterion.Type);
1285   onCriterionChanged(theRow, 0, aType);
1286   if ( theCriterion.Compare == SMESH::FT_Undefined )
1287     ((ComboItem*)aTable->item(theRow, 1))->setValue( SMESH::FT_EqualTo );
1288   else
1289     ((ComboItem*)aTable->item(theRow, 1))->setValue(theCriterion.Compare);
1290   ((CheckItem*)aTable->item(theRow, 3))->setChecked(theCriterion.UnaryOp == SMESH::FT_LogicalNOT);
1291
1292   if (theCriterion.BinaryOp != SMESH::FT_Undefined)
1293   {
1294     if (!aTable->isEditable(theRow, 4))
1295       aTable->setItem(theRow, 4, getBinaryItem());
1296     ((ComboItem*)aTable->item(theRow, 4))->setValue(theCriterion.BinaryOp);
1297   }
1298   else
1299     aTable->setEditable(false, theRow, 4);
1300
1301   if (theCriterion.Type == SMESH::FT_GroupColor )
1302   {
1303     QtxColorButton* clrBtn = qobject_cast<QtxColorButton*>(aTable->cellWidget(theRow, 2));
1304     if ( clrBtn )
1305     {
1306       QColor qClr;
1307       QString clrStr( theCriterion.ThresholdStr );
1308       QStringList clrVals = clrStr.split( ";" );
1309       if ( clrVals.count() > 2 )
1310         qClr.setRgb( (int)256*clrVals[0].toDouble(),
1311                      (int)256*clrVals[1].toDouble(),
1312                      (int)256*clrVals[2].toDouble() );
1313       clrBtn->setColor( qClr );
1314     }
1315   }
1316   else if (theCriterion.Type == SMESH::FT_ElemGeomType )
1317   {
1318     ComboItem* typeBox = (ComboItem*)aTable->item(theRow, 2);
1319     typeBox->setValue( (int)(theCriterion.Threshold + 0.5) );
1320   }
1321   else if (theCriterion.Type == SMESH::FT_CoplanarFaces )
1322   {
1323     aTable->item( theRow, 2 )->setText( QString( theCriterion.ThresholdID ) );
1324   }
1325   else if (theCriterion.Type != SMESH::FT_RangeOfIds &&
1326            theCriterion.Type != SMESH::FT_BelongToGeom &&
1327            theCriterion.Type != SMESH::FT_BelongToPlane &&
1328            theCriterion.Type != SMESH::FT_BelongToCylinder &&
1329            theCriterion.Type != SMESH::FT_BelongToGenSurface &&
1330            theCriterion.Type != SMESH::FT_LyingOnGeom &&
1331            theCriterion.Type != SMESH::FT_CoplanarFaces &&
1332            theCriterion.Type != SMESH::FT_FreeBorders &&
1333            theCriterion.Type != SMESH::FT_FreeEdges &&
1334            theCriterion.Type != SMESH::FT_FreeNodes &&
1335            theCriterion.Type != SMESH::FT_FreeFaces &&
1336            theCriterion.Type != SMESH::FT_BadOrientedVolume &&
1337            theCriterion.Type != SMESH::FT_BareBorderFace &&
1338            theCriterion.Type != SMESH::FT_BareBorderVolume &&
1339            theCriterion.Type != SMESH::FT_OverConstrainedFace &&
1340            theCriterion.Type != SMESH::FT_OverConstrainedVolume &&
1341            theCriterion.Type != SMESH::FT_LinearOrQuadratic)
1342   {
1343     aTable->item( theRow, 2 )->setText(QString("%1").arg(theCriterion.Threshold, 0, 'g', 15));
1344   }
1345   else
1346   {
1347     aTable->item( theRow, 2 )->setText(QString(theCriterion.ThresholdStr));
1348     if ( theCriterion.Type != SMESH::FT_RangeOfIds )
1349       aTable->item( theRow, 5 )->setText( QString( theCriterion.ThresholdID ) );
1350   }
1351
1352   if (theCriterion.Compare == SMESH::FT_EqualTo ||
1353       theCriterion.Type    == SMESH::FT_BelongToPlane ||
1354       theCriterion.Type    == SMESH::FT_BelongToCylinder ||
1355       theCriterion.Type    == SMESH::FT_BelongToGenSurface ||
1356       theCriterion.Type    == SMESH::FT_BelongToGeom ||
1357       theCriterion.Type    == SMESH::FT_LyingOnGeom ||
1358       theCriterion.Type    == SMESH::FT_CoplanarFaces ||
1359       theCriterion.Type    == SMESH::FT_EqualNodes)
1360   {
1361     QTableWidgetItem* anItem = aTable->item(theRow, 0);
1362     if (!myAddWidgets.contains(anItem))
1363     {
1364       myAddWidgets[ anItem ] = new AdditionalWidget(myWgStack);
1365       myAddWidgets[ anItem ]->SetPrecision( AdditionalWidget::Tolerance, getPrecision( theCriterion.Type ) );
1366       myWgStack->addWidget(myAddWidgets[ anItem ]);
1367     }
1368     myAddWidgets[ anItem ]->SetDouble(AdditionalWidget::Tolerance, theCriterion.Tolerance);
1369   }
1370
1371   emit CriterionChanged(theRow, aType);
1372 }
1373
1374 //=======================================================================
1375 // name    : SMESHGUI_FilterTable::Update
1376 // Purpose : Update table
1377 //=======================================================================
1378 void SMESHGUI_FilterTable::Update()
1379 {
1380   Table* aTable = myTables[ GetType() ];
1381   int aCurrRow = aTable->currentRow();
1382   int numRows = aTable->rowCount();
1383   if ((aCurrRow < 0 || aCurrRow >= numRows) && numRows > 0)
1384     aTable->setCurrentCell(0, 0);
1385   updateAdditionalWidget();
1386 }
1387
1388 //=======================================================================
1389 // name    : SMESHGUI_FilterTable::AddCriterion
1390 // Purpose : Add criterion with parameters
1391 //=======================================================================
1392 void SMESHGUI_FilterTable::AddCriterion (const SMESH::Filter::Criterion& theCriterion,
1393                                          const int                       theEntityType)
1394 {
1395   int aType = theEntityType == -1 ? GetType() : theEntityType;
1396   Table* aTable = myTables[ aType ];
1397   addRow(aTable, aType);
1398   SetCriterion(aTable->rowCount() - 1, theCriterion);
1399 }
1400
1401 //=======================================================================
1402 // name    : SMESHGUI_FilterTable::NumRows
1403 // Purpose : Get number of criterions of current type
1404 //=======================================================================
1405 int SMESHGUI_FilterTable::NumRows (const int theEntityType) const
1406 {
1407   return myTables[ theEntityType == -1 ? GetType() : theEntityType ]->rowCount();
1408 }
1409
1410 //=======================================================================
1411 // name    : SMESHGUI_FilterTable::Clear
1412 // Purpose : Clear current table
1413 //=======================================================================
1414 void SMESHGUI_FilterTable::Clear (const int theType)
1415 {
1416   int aType = theType == -1 ? GetType() : theType;
1417   Table* aTable = myTables[ aType ];
1418
1419   if (aTable->rowCount() == 0)
1420     return;
1421
1422   while (aTable->rowCount() > 0)
1423   {
1424     removeAdditionalWidget(aTable, 0);
1425     aTable->removeRow(0);
1426   }
1427
1428   updateBtnState();
1429 }
1430
1431 //=======================================================================
1432 // name    : SMESHGUI_FilterTable::onAddBtn
1433 // Purpose : SLOT. Called then "Add" button pressed.
1434 //           Adds new string to table
1435 //=======================================================================
1436 void SMESHGUI_FilterTable::onAddBtn()
1437 {
1438   int aType = GetType();
1439   addRow(myTables[ aType ], aType);
1440
1441   Update();
1442 }
1443
1444 //=======================================================================
1445 // name    : SMESHGUI_FilterTable::onInsertBtn
1446 // Purpose : SLOT. Called then "Insert" button pressed.
1447 //           Inserts new string before current one
1448 //=======================================================================
1449 void SMESHGUI_FilterTable::onInsertBtn()
1450 {
1451   addRow(myTables[ GetType() ], GetType(), false);
1452 }
1453
1454 //=======================================================================
1455 // name    : SMESHGUI_FilterTable::onRemoveBtn
1456 // Purpose : SLOT. Called then "Remove" button pressed.
1457 //           Removes current string from table
1458 //=======================================================================
1459 void SMESHGUI_FilterTable::onRemoveBtn()
1460 {
1461   Table* aTable = myTables[ GetType() ];
1462
1463   if (aTable->rowCount() == 0)
1464     return;
1465
1466   QList<QTableWidgetItem*> items = aTable->selectedItems();
1467   
1468   QList<int> aRows = aTable->selectedRows(); // already sorted
1469   int i;
1470   foreach( i, aRows )
1471   {
1472     removeAdditionalWidget(aTable, i);
1473     aTable->removeRow(i);
1474   }
1475
1476   // remove control of binary logical operation from last row
1477   if (aTable->rowCount() > 0)
1478     aTable->setEditable(false, aTable->rowCount() - 1, 4);
1479
1480   updateBtnState();
1481 }
1482
1483 //=======================================================================
1484 // name    : SMESHGUI_FilterTable::updateAdditionalWidget
1485 // Purpose : Enable/Disable widget with additonal parameters
1486 //=======================================================================
1487 void SMESHGUI_FilterTable::updateAdditionalWidget()
1488 {
1489   Table* aTable = myTables[ GetType() ];
1490   int aRow = aTable->currentRow();
1491   if (aRow < 0 || aRow >= aTable->rowCount())
1492   {
1493     myWgStack->setEnabled(false);
1494     return;
1495   }
1496
1497   ComboItem* anItem = ((ComboItem*)aTable->item(aRow, 0));
1498   int aCriterion = GetCriterionType(aRow);
1499   bool toEnable = ((((ComboItem*)aTable->item(aRow, 1))->value() == SMESH::FT_EqualTo &&
1500                    aCriterion != SMESH::FT_RangeOfIds &&
1501                    aCriterion != SMESH::FT_FreeEdges &&
1502                    aCriterion != SMESH::FT_FreeFaces &&
1503                    aCriterion != SMESH::FT_BadOrientedVolume &&
1504                    aCriterion != SMESH::FT_BareBorderFace &&
1505                    aCriterion != SMESH::FT_BareBorderVolume &&
1506                    aCriterion != SMESH::FT_OverConstrainedFace &&
1507                    aCriterion != SMESH::FT_OverConstrainedVolume)
1508                    ||
1509                    aCriterion == SMESH::FT_CoplanarFaces);
1510   
1511   if (!myAddWidgets.contains(anItem))
1512   {
1513     myAddWidgets[ anItem ] = new AdditionalWidget(myWgStack);
1514     myWgStack->addWidget(myAddWidgets[ anItem ]);
1515   }
1516
1517   myWgStack->setCurrentWidget(myAddWidgets[ anItem ]);
1518   myAddWidgets[ anItem ]->SetPrecision( AdditionalWidget::Tolerance, getPrecision( aCriterion ) );
1519   myWgStack->setEnabled(toEnable);
1520 }
1521
1522 const char* SMESHGUI_FilterTable::getPrecision( const int aType )
1523 {
1524   const char* retval = 0;
1525   switch ( aType ) {
1526   case SMESH::FT_AspectRatio:
1527   case SMESH::FT_AspectRatio3D:
1528   case SMESH::FT_Taper:
1529     retval = "parametric_precision"; break;
1530   case SMESH::FT_Warping:
1531   case SMESH::FT_MinimumAngle:
1532   case SMESH::FT_Skew:
1533   case SMESH::FT_CoplanarFaces:
1534     retval = "angle_precision"; break;
1535   case SMESH::FT_Area:
1536     retval = "area_precision"; break;
1537   case SMESH::FT_BelongToGeom:
1538   case SMESH::FT_BelongToPlane:
1539   case SMESH::FT_BelongToCylinder:
1540   case SMESH::FT_BelongToGenSurface:
1541   case SMESH::FT_LyingOnGeom:
1542   case SMESH::FT_EqualNodes:
1543     retval = "len_tol_precision"; break;
1544   case SMESH::FT_Length:
1545   case SMESH::FT_Length2D:
1546   case SMESH::FT_MaxElementLength2D:
1547   case SMESH::FT_MaxElementLength3D:
1548     retval = "length_precision"; break;
1549   case SMESH::FT_Volume3D:
1550     retval = "vol_precision"; break;
1551   default:
1552     break;
1553   }
1554   return retval;
1555 }
1556
1557 //=======================================================================
1558 // name    : SMESHGUI_FilterTable::removeAdditionalWidget
1559 // Purpose : Remove widgets containing additional parameters from widget
1560 //           stack and internal map
1561 //=======================================================================
1562 void SMESHGUI_FilterTable::removeAdditionalWidget (QTableWidget* theTable, const int theRow)
1563 {
1564   QTableWidgetItem* anItem = theTable->item(theRow, 0);
1565   if (myAddWidgets.contains(anItem))
1566   {
1567     myWgStack->removeWidget(myAddWidgets[ anItem ]);
1568     myAddWidgets[ anItem ]->setParent(0);
1569     delete myAddWidgets[ anItem ];
1570     myAddWidgets.remove(anItem);
1571   }
1572 }
1573
1574 //=======================================================================
1575 // name    : SMESHGUI_FilterTable::onClearBtn
1576 // Purpose : SLOT. Called then "Clear" button pressed.
1577 //           Removes all strings from table
1578 //=======================================================================
1579 void SMESHGUI_FilterTable::onClearBtn()
1580 {
1581   Table* aTable = myTables[ GetType() ];
1582
1583   if (aTable->rowCount() == 0)
1584     return;
1585
1586   while (aTable->rowCount() > 0)
1587   {
1588     removeAdditionalWidget(aTable, 0);
1589     aTable->removeRow(0);
1590   }
1591
1592   updateBtnState();
1593 }
1594
1595 //=======================================================================
1596 // name    : SMESHGUI_FilterTable::onCurrentChanged()
1597 // Purpose : SLOT. Called when current cell changed
1598 //=======================================================================
1599 void SMESHGUI_FilterTable::onCurrentChanged (int theRow, int theCol)
1600 {
1601   if( !myIsLocked )
1602     updateAdditionalWidget();
1603   emit CurrentChanged(theRow, theCol);
1604 }
1605
1606 //=======================================================================
1607 // name    : geomTypes
1608 // Purpose : returns available geometry types of elements
1609 //=======================================================================
1610 static QList<int> geomTypes( const int theType )
1611 {
1612   QList<int> typeIds;
1613   if ( theType == SMESH::NODE )
1614     typeIds.append( SMESH::Geom_POINT );
1615   if ( theType == SMESH::ALL || theType == SMESH::EDGE )
1616     typeIds.append( SMESH::Geom_EDGE );
1617   if ( theType == SMESH::ALL || theType == SMESH::FACE )
1618   {
1619     typeIds.append( SMESH::Geom_TRIANGLE );
1620     typeIds.append( SMESH::Geom_QUADRANGLE );
1621     typeIds.append( SMESH::Geom_POLYGON );
1622   }
1623   if ( theType == SMESH::ALL || theType == SMESH::VOLUME )
1624   {
1625     typeIds.append( SMESH::Geom_TETRA );
1626     typeIds.append( SMESH::Geom_PYRAMID );
1627     typeIds.append( SMESH::Geom_HEXA );
1628     typeIds.append( SMESH::Geom_PENTA );
1629     typeIds.append( SMESH::Geom_HEXAGONAL_PRISM );
1630     typeIds.append( SMESH::Geom_POLYHEDRA );
1631   }
1632   if ( theType == SMESH::ALL || theType == SMESH::ELEM0D )
1633   {
1634     typeIds.append( SMESH::Geom_POINT );
1635   }
1636   if ( theType == SMESH::ALL || theType == SMESH::BALL )
1637   {
1638     typeIds.append( SMESH::Geom_BALL );
1639   }
1640   return typeIds;
1641 }
1642
1643 //=======================================================================
1644 // name    : SMESHGUI_FilterTable::onCriterionChanged()
1645 // Purpose : Provides reaction on change of criterion
1646 //=======================================================================
1647 void SMESHGUI_FilterTable::onCriterionChanged (const int row, const int col, const int entityType)
1648 {
1649   int aType = entityType == -1 ? GetType() : entityType;
1650   Table* aTable = myTables[ aType ];
1651   ComboItem* aCompareItem = (ComboItem*)aTable->item(row, 1);
1652
1653   int aCriterionType = GetCriterionType(row);
1654   QtxColorButton* clrBtn = qobject_cast<QtxColorButton*>(aTable->cellWidget(row, 2));
1655   int aComboType = ComboItem::Type();
1656   int aIntSpinType = IntSpinItem::Type();
1657   int aDoubleSpinType = DoubleSpinItem::Type();
1658   QTableWidgetItem* aTableItem = aTable->item(row, 2);
1659   bool isComboItem = false;
1660   bool isIntSpinItem = false;
1661   bool isDoubleSpinItem = false;
1662   if (aTableItem) {
1663     int aTableType = aTable->item(row, 2)->type();
1664     isComboItem = ( aTableType == aComboType );
1665     isIntSpinItem = ( aTableType == aIntSpinType );
1666     isDoubleSpinItem = ( aTableType == aDoubleSpinType );
1667   }
1668   
1669   bool anIsDoubleCriterion =
1670     aCriterionType == SMESH::FT_AspectRatio ||
1671     aCriterionType == SMESH::FT_AspectRatio3D ||
1672     aCriterionType == SMESH::FT_Taper ||
1673     aCriterionType == SMESH::FT_Warping ||
1674     aCriterionType == SMESH::FT_MinimumAngle ||
1675     aCriterionType == SMESH::FT_Skew ||
1676     aCriterionType == SMESH::FT_Area ||
1677     aCriterionType == SMESH::FT_Length ||
1678     aCriterionType == SMESH::FT_Length2D ||
1679     aCriterionType == SMESH::FT_MaxElementLength2D ||
1680     aCriterionType == SMESH::FT_MaxElementLength3D ||
1681     aCriterionType == SMESH::FT_Volume3D;
1682
1683   int aPrecision = 0;
1684   if ( anIsDoubleCriterion ) {
1685     const char* aPrecisionType = getPrecision( aCriterionType );
1686     SUIT_ResourceMgr* aResourceMgr = SMESH::GetResourceMgr( mySMESHGUI );
1687     if( aPrecisionType && aResourceMgr )
1688       aPrecision = aResourceMgr->integerValue( "SMESH", aPrecisionType, aPrecision );
1689   }
1690
1691   // if the precision is to be changed we should remove the existing
1692   // spin item and create another one with new precision
1693   bool anIsPrecisionChanged = false;
1694   if ( anIsDoubleCriterion && isDoubleSpinItem ) {
1695     if ( DoubleSpinItem* aDoubleSpinItem = dynamic_cast<DoubleSpinItem*>( aTable->item( row, 2 ) ) ) {
1696       anIsPrecisionChanged = aDoubleSpinItem->precision() != aPrecision;
1697     }
1698   }
1699
1700   if ( (aCriterionType != SMESH::FT_GroupColor && clrBtn) ||
1701        (aCriterionType != SMESH::FT_ElemGeomType && isComboItem) ||
1702        (aCriterionType != SMESH::FT_MultiConnection && isIntSpinItem) ||
1703        (!anIsDoubleCriterion && isDoubleSpinItem) ||
1704        anIsPrecisionChanged )
1705   {
1706     bool isSignalsBlocked = aTable->signalsBlocked();
1707     aTable->blockSignals( true );
1708     aTable->removeCellWidget( row, 2 );
1709     aTable->setItem( row, 2, new QTableWidgetItem() );
1710     aTable->blockSignals( isSignalsBlocked );
1711   }
1712   if ( (aCriterionType == SMESH::FT_GroupColor && !clrBtn) ||
1713        (aCriterionType == SMESH::FT_ElemGeomType && !isComboItem) ||
1714        (aCriterionType == SMESH::FT_MultiConnection && !isIntSpinItem) ||
1715        (anIsDoubleCriterion && !isDoubleSpinItem) ||
1716        anIsPrecisionChanged )
1717   {
1718     bool isSignalsBlocked = aTable->signalsBlocked();
1719     aTable->blockSignals( true );
1720     if ( aCriterionType == SMESH::FT_GroupColor )
1721       aTable->setCellWidget( row, 2, new QtxColorButton( aTable ) );
1722     else if ( aCriterionType == SMESH::FT_ElemGeomType ) {
1723       QList<int> typeIds = geomTypes( aType );
1724       QMap<int, QString> typeNames;
1725       QList<int>::const_iterator anIter = typeIds.begin();
1726       for ( int i = 0; anIter != typeIds.end(); ++anIter, ++i)
1727       {
1728         QString typeKey = QString( "GEOM_TYPE_%1" ).arg( *anIter );
1729         typeNames[ *anIter ] = tr( typeKey.toLatin1().data() );
1730       }
1731       ComboItem* typeBox = new ComboItem( typeNames );
1732       aTable->setItem( row, 2, typeBox );
1733     }
1734     else if ( aCriterionType == SMESH::FT_MultiConnection ) {
1735       IntSpinItem* intSpin = new IntSpinItem( 0 );
1736       aTable->setItem( row, 2, intSpin );
1737     }
1738     else if ( anIsDoubleCriterion ) {
1739       DoubleSpinItem* dblSpin = new DoubleSpinItem( 0 );
1740       dblSpin->setPrecision( aPrecision );
1741       aTable->setItem( row, 2, dblSpin );
1742     }
1743     aTable->blockSignals( isSignalsBlocked );
1744   }
1745
1746   // set Compare and enable/desable Threshold
1747   if ((aType == SMESH::NODE && (aCriterionType == SMESH::FT_FreeNodes               ||
1748                                 aCriterionType == SMESH::FT_EqualNodes ))           ||
1749       (aType == SMESH::EDGE && (aCriterionType == SMESH::FT_FreeBorders             ||
1750                                 aCriterionType == SMESH::FT_EqualEdges ))           ||
1751       (aType == SMESH::FACE && (aCriterionType == SMESH::FT_BareBorderFace          ||
1752                                 aCriterionType == SMESH::FT_OverConstrainedFace     ||
1753                                 aCriterionType == SMESH::FT_FreeEdges               ||
1754                                 aCriterionType == SMESH::FT_FreeFaces               ||
1755                                 aCriterionType == SMESH::FT_EqualFaces))            ||
1756       (aType == SMESH::VOLUME && (aCriterionType == SMESH::FT_BadOrientedVolume     ||
1757                                   aCriterionType == SMESH::FT_OverConstrainedVolume ||
1758                                   aCriterionType == SMESH::FT_BareBorderVolume      ||
1759                                   aCriterionType == SMESH::FT_EqualVolumes ))       ||
1760       aCriterionType == SMESH::FT_LinearOrQuadratic ||
1761       aCriterionType == SMESH::FT_GroupColor ||
1762       aCriterionType == SMESH::FT_ElemGeomType ||
1763       aCriterionType == SMESH::FT_CoplanarFaces
1764       )
1765   {
1766     bool isSignalsBlocked = aTable->signalsBlocked();
1767     aTable->blockSignals( true );
1768
1769     if (aCompareItem->count() > 0)
1770       aCompareItem->clear();
1771     aTable->setEditable(false, row, 1);
1772     aTable->item(row, 2)->setText( QString("") );
1773     aTable->setEditable(aCriterionType == SMESH::FT_GroupColor ||
1774                         aCriterionType == SMESH::FT_ElemGeomType ||
1775                         aCriterionType == SMESH::FT_CoplanarFaces, row, 2);
1776     aTable->blockSignals( isSignalsBlocked );
1777   }
1778   else if (aCriterionType == SMESH::FT_RangeOfIds ||
1779            aCriterionType == SMESH::FT_BelongToGeom ||
1780            aCriterionType == SMESH::FT_BelongToPlane ||
1781            aCriterionType == SMESH::FT_BelongToCylinder ||
1782            aCriterionType == SMESH::FT_BelongToGenSurface ||
1783            aCriterionType == SMESH::FT_LyingOnGeom)
1784   {
1785     QMap<int, QString> aMap;
1786     aMap[ SMESH::FT_EqualTo ] = tr("EQUAL_TO");
1787     aCompareItem->setItems(aMap);
1788     if (!aTable->isEditable(row, 2))
1789       aTable->setEditable(true, row, 1);
1790     if (!aTable->isEditable(row, 2))
1791       aTable->setEditable(true, row, 2);
1792   }
1793   else if (aCriterionType == SMESH::FT_GroupColor ||
1794            aCriterionType == SMESH::FT_ElemGeomType)
1795   {
1796     if (!aTable->isEditable(row, 2))
1797       aTable->setEditable(true, row, 2);
1798   }
1799   else
1800   {
1801     if (aCompareItem && aCompareItem->count() != 3)
1802     {
1803       aCompareItem->setItems(getCompare());
1804     }
1805
1806     if (aTable->item( row, 2 )) {
1807       QString aText = aTable->text(row, 2);
1808       bool isOk = false;
1809       aText.toDouble(&isOk);
1810       aTable->item( row, 2 )->setText(isOk ? aText : QString(""));
1811       if (!aTable->isEditable(row, 1))
1812         aTable->setEditable(true, row, 1);
1813       if (!aTable->isEditable(row, 2))
1814         aTable->setEditable(true, row, 2);
1815     }
1816   }
1817
1818   updateAdditionalWidget();
1819
1820   emit CriterionChanged(row, entityType);
1821 }
1822
1823 //=======================================================================
1824 // name    : SMESHGUI_FilterTable::onCriterionChanged()
1825 // Purpose : SLOT. Called then contents of table changed
1826 //           Provides reaction on change of criterion
1827 //=======================================================================
1828 void SMESHGUI_FilterTable::onCriterionChanged (int row, int col)
1829 {
1830   if( col == 0 )
1831     onCriterionChanged(row, col, -1);
1832 }
1833
1834 //=======================================================================
1835 // name    : SMESHGUI_FilterTable::getFirstSelectedRow
1836 // Purpose : Get first selected row
1837 //=======================================================================
1838 int SMESHGUI_FilterTable::getFirstSelectedRow() const
1839 {
1840   Table* aTable = myTables[ GetType() ];
1841
1842   QList<int> selRows = aTable->selectedRows(); // already sorted
1843   int aRow = selRows.count() > 0 ? selRows[0] : aTable->currentRow();
1844
1845   return aRow >= 0 && aRow < aTable->rowCount() ? aRow : -1;
1846 }
1847
1848 //=======================================================================
1849 // name    : SMESHGUI_FilterTable::addRow
1850 // Purpose : Add row at the end of table
1851 //=======================================================================
1852 void SMESHGUI_FilterTable::addRow (Table* theTable, const int theType, const bool toTheEnd)
1853 {
1854   int aCurrRow = 0;
1855   int aSelectedRow = getFirstSelectedRow();
1856   int aCurrCol = theTable->currentColumn();
1857
1858   myIsLocked = true;
1859   if (toTheEnd || aSelectedRow == -1)
1860   {
1861     theTable->insertRows(theTable->rowCount());
1862     aCurrRow = theTable->rowCount() - 1;
1863   }
1864   else
1865   {
1866     theTable->insertRows(aSelectedRow);
1867     aCurrRow = aSelectedRow;
1868   }
1869   myIsLocked = false;
1870
1871   // IPAL19372 - to prevent calling onCriterionChaged() slot before completion of setItem()
1872   bool isSignalsBlocked = theTable->signalsBlocked();
1873   theTable->blockSignals( true );
1874
1875   // Criteria
1876   theTable->setItem(aCurrRow, 0, getCriterionItem(theType));
1877
1878   // Compare
1879   theTable->setItem(aCurrRow, 1, getCompareItem());
1880
1881   // Threshold
1882   theTable->setItem(aCurrRow, 2, new QTableWidgetItem());
1883
1884   // Logical operation NOT
1885   theTable->setItem(aCurrRow, 3, getUnaryItem());
1886
1887   // Logical operation AND / OR
1888   theTable->setItem(aCurrRow, 4, new QTableWidgetItem());
1889
1890   theTable->setItem(aCurrRow, 5, new QTableWidgetItem());
1891     
1892   theTable->blockSignals( isSignalsBlocked );
1893
1894   // Logical binary operation for previous value
1895   int anAddBinOpStr = -1;
1896   if (aCurrRow == theTable->rowCount() - 1)
1897     anAddBinOpStr = aCurrRow - 1;
1898   else if (aCurrRow >= 0 )
1899     anAddBinOpStr = aCurrRow;
1900
1901   if (theTable->item(aCurrRow, 4) == 0 ||
1902        theTable->item(aCurrRow, 4)->type() != ComboItem::Type())
1903   {
1904     if (anAddBinOpStr >= 0 &&
1905          (theTable->item(anAddBinOpStr, 4) == 0 ||
1906            theTable->item(anAddBinOpStr, 4)->type() != ComboItem::Type()))
1907       theTable->setItem(anAddBinOpStr, 4, getBinaryItem());
1908   }
1909
1910   theTable->setEditable(false, theTable->rowCount() - 1, 4);
1911   
1912   if (aCurrRow >=0 && aCurrRow < theTable->rowCount() &&
1913        aCurrCol >=0 && aCurrCol < theTable->rowCount())
1914   theTable->setCurrentCell(aCurrRow, aCurrCol);
1915
1916   onCriterionChanged(aCurrRow, 0);
1917
1918   updateBtnState();
1919 }
1920
1921 //=======================================================================
1922 // name    : SMESHGUI_FilterTable::getCriterionItem
1923 // Purpose : Get combo table item for criteria of specified type
1924 //=======================================================================
1925 QTableWidgetItem* SMESHGUI_FilterTable::getCriterionItem (const int theType) const
1926 {
1927   return new ComboItem(getCriteria(theType));
1928 }
1929
1930 //=======================================================================
1931 // name    : SMESHGUI_FilterTable::getCompareItem
1932 // Purpose : Get combo table item for operation of comparision
1933 //=======================================================================
1934 QTableWidgetItem* SMESHGUI_FilterTable::getCompareItem () const
1935 {
1936   return new ComboItem(getCompare());
1937 }
1938
1939 //=======================================================================
1940 // name    : SMESHGUI_FilterTable::getBinaryItem
1941 // Purpose :
1942 //=======================================================================
1943 QTableWidgetItem* SMESHGUI_FilterTable::getBinaryItem () const
1944 {
1945   static QMap<int, QString> aMap;
1946   if (aMap.isEmpty())
1947   {
1948     aMap[ SMESH::FT_LogicalAND ] = tr("AND");
1949     aMap[ SMESH::FT_LogicalOR  ] = tr("OR");
1950   }
1951
1952   return new ComboItem(aMap);
1953 }
1954
1955 //=======================================================================
1956 // name    : SMESHGUI_FilterTable::getUnaryItem
1957 // Purpose : Get check table item
1958 //=======================================================================
1959 QTableWidgetItem* SMESHGUI_FilterTable::getUnaryItem () const
1960 {
1961   return new CheckItem(tr("NOT"));
1962 }
1963
1964 //=======================================================================
1965 // name    : SMESHGUI_FilterTable::getSupportedTypes
1966 // Purpose : Get all supported type
1967 //=======================================================================
1968 const QMap<int, QString>& SMESHGUI_FilterTable::getSupportedTypes() const
1969 {
1970   static QMap<int, QString> aTypes;
1971   if (aTypes.isEmpty())
1972   {
1973     aTypes[ SMESH::NODE   ] = tr("NODES");
1974     aTypes[ SMESH::ELEM0D ] = tr("ELEM0D");
1975     aTypes[ SMESH::BALL   ] = tr("BALLS");
1976     aTypes[ SMESH::EDGE   ] = tr("EDGES");
1977     aTypes[ SMESH::FACE   ] = tr("FACES");
1978     aTypes[ SMESH::VOLUME ] = tr("VOLUMES");
1979     aTypes[ SMESH::ALL ]    = tr("ELEMENTS");
1980   }
1981
1982   return aTypes;
1983 }
1984
1985 //=======================================================================
1986 // name    : SMESHGUI_FilterTable::getCriteria
1987 // Purpose : Get criteria for specified type
1988 //=======================================================================
1989 const QMap<int, QString>& SMESHGUI_FilterTable::getCriteria (const int theType) const
1990 {
1991   if (theType == SMESH::NODE)
1992   {
1993     static QMap<int, QString> aCriteria;
1994     if (aCriteria.isEmpty())
1995     {
1996       aCriteria[ SMESH::FT_RangeOfIds         ] = tr("RANGE_OF_IDS");
1997       aCriteria[ SMESH::FT_BelongToGeom       ] = tr("BELONG_TO_GEOM");
1998       aCriteria[ SMESH::FT_BelongToPlane      ] = tr("BELONG_TO_PLANE");
1999       aCriteria[ SMESH::FT_BelongToCylinder   ] = tr("BELONG_TO_CYLINDER");
2000       aCriteria[ SMESH::FT_BelongToGenSurface ] = tr("BELONG_TO_GENSURFACE");
2001       aCriteria[ SMESH::FT_LyingOnGeom        ] = tr("LYING_ON_GEOM");
2002       aCriteria[ SMESH::FT_FreeNodes          ] = tr("FREE_NODES");
2003       aCriteria[ SMESH::FT_GroupColor         ] = tr("GROUP_COLOR");
2004       aCriteria[ SMESH::FT_EqualNodes         ] = tr("EQUAL_NODE");
2005     }
2006     return aCriteria;
2007   }
2008   else if (theType == SMESH::EDGE)
2009   {
2010     static QMap<int, QString> aCriteria;
2011     if (aCriteria.isEmpty())
2012     {
2013       aCriteria[ SMESH::FT_FreeBorders        ] = tr("FREE_BORDERS");
2014       aCriteria[ SMESH::FT_MultiConnection    ] = tr("MULTI_BORDERS");
2015       aCriteria[ SMESH::FT_Length             ] = tr("LENGTH");
2016       aCriteria[ SMESH::FT_RangeOfIds         ] = tr("RANGE_OF_IDS");
2017       aCriteria[ SMESH::FT_BelongToGeom       ] = tr("BELONG_TO_GEOM");
2018       aCriteria[ SMESH::FT_BelongToPlane      ] = tr("BELONG_TO_PLANE");
2019       aCriteria[ SMESH::FT_BelongToCylinder   ] = tr("BELONG_TO_CYLINDER");
2020       aCriteria[ SMESH::FT_BelongToGenSurface ] = tr("BELONG_TO_GENSURFACE");
2021       aCriteria[ SMESH::FT_LyingOnGeom        ] = tr("LYING_ON_GEOM");
2022       aCriteria[ SMESH::FT_LinearOrQuadratic  ] = tr("LINEAR");
2023       aCriteria[ SMESH::FT_GroupColor         ] = tr("GROUP_COLOR");
2024       aCriteria[ SMESH::FT_ElemGeomType       ] = tr("GEOM_TYPE");
2025       aCriteria[ SMESH::FT_EqualEdges         ] = tr("EQUAL_EDGE");
2026     }
2027     return aCriteria;
2028   }
2029   else if (theType == SMESH::FACE)
2030   {
2031     static QMap<int, QString> aCriteria;
2032     if (aCriteria.isEmpty())
2033     {
2034       aCriteria[ SMESH::FT_AspectRatio        ] = tr("ASPECT_RATIO");
2035       aCriteria[ SMESH::FT_Warping            ] = tr("WARPING");
2036       aCriteria[ SMESH::FT_MinimumAngle       ] = tr("MINIMUM_ANGLE");
2037       aCriteria[ SMESH::FT_Taper              ] = tr("TAPER");
2038       aCriteria[ SMESH::FT_Skew               ] = tr("SKEW");
2039       aCriteria[ SMESH::FT_Area               ] = tr("AREA");
2040       aCriteria[ SMESH::FT_MaxElementLength2D ] = tr("MAX_ELEMENT_LENGTH_2D");
2041       aCriteria[ SMESH::FT_FreeEdges          ] = tr("FREE_EDGES");
2042       aCriteria[ SMESH::FT_RangeOfIds         ] = tr("RANGE_OF_IDS");
2043       aCriteria[ SMESH::FT_BelongToGeom       ] = tr("BELONG_TO_GEOM");
2044       aCriteria[ SMESH::FT_BelongToPlane      ] = tr("BELONG_TO_PLANE");
2045       aCriteria[ SMESH::FT_BelongToCylinder   ] = tr("BELONG_TO_CYLINDER");
2046       aCriteria[ SMESH::FT_BelongToGenSurface ] = tr("BELONG_TO_GENSURFACE");
2047       aCriteria[ SMESH::FT_LyingOnGeom        ] = tr("LYING_ON_GEOM");
2048       aCriteria[ SMESH::FT_Length2D           ] = tr("LENGTH2D");
2049       aCriteria[ SMESH::FT_MultiConnection2D  ] = tr("MULTI2D_BORDERS");
2050       aCriteria[ SMESH::FT_FreeFaces          ] = tr("FREE_FACES");
2051       aCriteria[ SMESH::FT_BareBorderFace     ] = tr("BARE_BORDER_FACE");
2052       aCriteria[ SMESH::FT_OverConstrainedFace] = tr("OVER_CONSTRAINED_FACE");
2053       aCriteria[ SMESH::FT_LinearOrQuadratic  ] = tr("LINEAR");
2054       aCriteria[ SMESH::FT_GroupColor         ] = tr("GROUP_COLOR");
2055       aCriteria[ SMESH::FT_ElemGeomType       ] = tr("GEOM_TYPE");
2056       aCriteria[ SMESH::FT_CoplanarFaces      ] = tr("COPLANAR_FACES");
2057       aCriteria[ SMESH::FT_EqualFaces         ] = tr("EQUAL_FACE");
2058     }
2059     return aCriteria;
2060   }
2061   else if (theType == SMESH::VOLUME)
2062   {
2063     static QMap<int, QString> aCriteria;
2064     if (aCriteria.isEmpty())
2065     {
2066       aCriteria[ SMESH::FT_AspectRatio3D        ] = tr("ASPECT_RATIO_3D");
2067       aCriteria[ SMESH::FT_RangeOfIds           ] = tr("RANGE_OF_IDS");
2068       aCriteria[ SMESH::FT_BelongToGeom         ] = tr("BELONG_TO_GEOM");
2069       aCriteria[ SMESH::FT_LyingOnGeom          ] = tr("LYING_ON_GEOM");
2070       aCriteria[ SMESH::FT_BadOrientedVolume    ] = tr("BAD_ORIENTED_VOLUME");
2071       aCriteria[ SMESH::FT_BareBorderVolume     ] = tr("BARE_BORDER_VOLUME");
2072       aCriteria[ SMESH::FT_OverConstrainedVolume] = tr("OVER_CONSTRAINED_VOLUME");
2073       aCriteria[ SMESH::FT_Volume3D             ] = tr("VOLUME_3D");
2074       aCriteria[ SMESH::FT_MaxElementLength3D   ] = tr("MAX_ELEMENT_LENGTH_3D");
2075       aCriteria[ SMESH::FT_LinearOrQuadratic    ] = tr("LINEAR");
2076       aCriteria[ SMESH::FT_GroupColor           ] = tr("GROUP_COLOR");
2077       aCriteria[ SMESH::FT_ElemGeomType         ] = tr("GEOM_TYPE");
2078       aCriteria[ SMESH::FT_EqualVolumes         ] = tr("EQUAL_VOLUME");
2079     }
2080     return aCriteria;
2081   }
2082   else if (theType == SMESH::ELEM0D)
2083   {
2084     static QMap<int, QString> aCriteria;
2085     if (aCriteria.isEmpty())
2086     {
2087       aCriteria[ SMESH::FT_RangeOfIds         ] = tr("RANGE_OF_IDS");
2088       aCriteria[ SMESH::FT_BelongToGeom       ] = tr("BELONG_TO_GEOM");
2089       aCriteria[ SMESH::FT_BelongToPlane      ] = tr("BELONG_TO_PLANE");
2090       aCriteria[ SMESH::FT_BelongToCylinder   ] = tr("BELONG_TO_CYLINDER");
2091       aCriteria[ SMESH::FT_BelongToGenSurface ] = tr("BELONG_TO_GENSURFACE");
2092       aCriteria[ SMESH::FT_GroupColor         ] = tr("GROUP_COLOR");
2093     }
2094     return aCriteria;
2095   }
2096   else if (theType == SMESH::BALL)
2097   {
2098     static QMap<int, QString> aCriteria;
2099     if (aCriteria.isEmpty())
2100     {
2101       aCriteria[ SMESH::FT_BallDiameter       ] = tr("BALL_DIAMETER");
2102       aCriteria[ SMESH::FT_RangeOfIds         ] = tr("RANGE_OF_IDS");
2103       aCriteria[ SMESH::FT_BelongToGeom       ] = tr("BELONG_TO_GEOM");
2104       aCriteria[ SMESH::FT_BelongToPlane      ] = tr("BELONG_TO_PLANE");
2105       aCriteria[ SMESH::FT_BelongToCylinder   ] = tr("BELONG_TO_CYLINDER");
2106       aCriteria[ SMESH::FT_BelongToGenSurface ] = tr("BELONG_TO_GENSURFACE");
2107       aCriteria[ SMESH::FT_GroupColor         ] = tr("GROUP_COLOR");
2108     }
2109     return aCriteria;
2110   }
2111   else if (theType == SMESH::ELEM0D)
2112   {
2113     static QMap<int, QString> aCriteria;
2114     if (aCriteria.isEmpty())
2115     {
2116       aCriteria[ SMESH::FT_RangeOfIds         ] = tr("RANGE_OF_IDS");
2117       aCriteria[ SMESH::FT_BelongToGeom       ] = tr("BELONG_TO_GEOM");
2118       aCriteria[ SMESH::FT_BelongToPlane      ] = tr("BELONG_TO_PLANE");
2119       aCriteria[ SMESH::FT_BelongToCylinder   ] = tr("BELONG_TO_CYLINDER");
2120       aCriteria[ SMESH::FT_BelongToGenSurface ] = tr("BELONG_TO_GENSURFACE");
2121       aCriteria[ SMESH::FT_GroupColor         ] = tr("GROUP_COLOR");
2122     }
2123     return aCriteria;
2124   }
2125   else // SMESH::ALL
2126   {
2127     static QMap<int, QString> aCriteria;
2128     if (aCriteria.isEmpty())
2129     {
2130       aCriteria[ SMESH::FT_RangeOfIds         ] = tr("RANGE_OF_IDS");
2131       aCriteria[ SMESH::FT_BelongToGeom       ] = tr("BELONG_TO_GEOM");
2132       aCriteria[ SMESH::FT_LyingOnGeom        ] = tr("LYING_ON_GEOM");
2133       aCriteria[ SMESH::FT_LinearOrQuadratic  ] = tr("LINEAR");
2134       aCriteria[ SMESH::FT_GroupColor         ] = tr("GROUP_COLOR");
2135       aCriteria[ SMESH::FT_ElemGeomType       ] = tr("GEOM_TYPE");
2136     }
2137
2138     return aCriteria;
2139   }
2140 }
2141
2142
2143 //=======================================================================
2144 // name    : SMESHGUI_FilterTable::getCompare
2145 // Purpose : Get operation of comparison
2146 //=======================================================================
2147 const QMap<int, QString>& SMESHGUI_FilterTable::getCompare() const
2148 {
2149   static QMap<int, QString> aMap;
2150
2151   if (aMap.isEmpty())
2152   {
2153     aMap[ SMESH::FT_LessThan ] = tr("LESS_THAN");
2154     aMap[ SMESH::FT_MoreThan ] = tr("MORE_THAN");
2155     aMap[ SMESH::FT_EqualTo  ] = tr("EQUAL_TO" );
2156   }
2157
2158   return aMap;
2159 }
2160
2161 //=======================================================================
2162 // name    : SMESHGUI_FilterTable::createTable
2163 // Purpose : Create table
2164 //=======================================================================
2165 SMESHGUI_FilterTable::Table* SMESHGUI_FilterTable::createTable (QWidget*  theParent,
2166                                                                 const int theType)
2167 {
2168   // create table
2169   Table* aTable= new Table(0, 6, theParent);
2170
2171   QHeaderView* aHeaders = aTable->horizontalHeader();
2172
2173   QFontMetrics aMetrics(aHeaders->font());
2174
2175   // append spaces to the header of criteria in order to
2176   // provide visibility of criterion inside comboboxes
2177   static int aMaxLenCr = 0;
2178
2179   if (aMaxLenCr == 0)
2180   {
2181     const QMap<int, QString>& aSupportedTypes = getSupportedTypes();
2182     QMap<int, QString>::const_iterator anIter;
2183     for (anIter = aSupportedTypes.begin(); anIter != aSupportedTypes.end(); ++anIter)
2184       aMaxLenCr = qMax(maxLength(getCriteria(anIter.key()), aMetrics), aMaxLenCr);
2185   }
2186
2187   static int aLenCr = qAbs( aMaxLenCr -
2188                             aMetrics.width(tr("CRITERION"))) / aMetrics.width(' ') + 5;
2189
2190   QString aCrStr;
2191   aCrStr.fill(' ', aLenCr);
2192   QString aCoStr;
2193   aCoStr.fill(' ', 10);
2194
2195   QStringList aHeaderLabels;
2196   aHeaderLabels.append( tr("CRITERION") + aCrStr );
2197   aHeaderLabels.append( tr("COMPARE")   + aCoStr );
2198   aHeaderLabels.append( tr("THRESHOLD_VALUE") );
2199   aHeaderLabels.append( tr("UNARY") );
2200   aHeaderLabels.append( tr("BINARY") + "  " );
2201   aHeaderLabels.append( tr("ID") );
2202   aTable->setHorizontalHeaderLabels( aHeaderLabels );
2203   
2204   // set geometry of the table
2205   for (int i = 0; i <= 4; i++)
2206     aTable->resizeColumnToContents(i);
2207
2208   // set the ID column invisible
2209   aTable->hideColumn( 5 );
2210
2211   aTable->updateGeometry();
2212   QSize aSize = aTable->sizeHint();
2213   int aWidth = aSize.width();
2214   aTable->setMinimumSize(QSize(aWidth, aWidth / 2));
2215   aTable->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding));
2216
2217   connect(aTable, SIGNAL(cellChanged(int, int)),
2218           this,   SLOT(onCriterionChanged(int, int)));
2219
2220   connect(aTable, SIGNAL(currentCellChanged(int, int, int, int)),
2221           this,   SLOT(onCurrentChanged(int, int)));
2222   
2223   return aTable;
2224 }
2225
2226 //=======================================================================
2227 // name    : SMESHGUI_FilterTable::updateBtnState
2228 // Purpose : Update button state
2229 //=======================================================================
2230 void SMESHGUI_FilterTable::updateBtnState()
2231 {
2232   myRemoveBtn->setEnabled(myTables[ GetType() ]->rowCount() > 0);
2233   myClearBtn->setEnabled(myTables[ GetType() ]->rowCount() > 0);
2234 }
2235
2236 //=======================================================================
2237 // name    : SMESHGUI_FilterTable::SetEditable
2238 // Purpose : Set read only flag for tables. Show/hide buttons for work with rows
2239 //=======================================================================
2240 void SMESHGUI_FilterTable::SetEditable (const bool isEditable)
2241 {
2242   TableMap::iterator anIter;
2243   for (anIter = myTables.begin(); anIter != myTables.end(); ++anIter)
2244   {
2245     anIter.value()->setReadOnly(!isEditable);
2246
2247     // Set Flags for CheckItems directly IPAL 19974
2248     Table* aTable = anIter.value();
2249     for (int i = 0, n = aTable->rowCount(); i < n; i++)
2250       for (int j = 0, m = aTable->columnCount(); j < m; j++)
2251         {
2252           QTableWidgetItem* anItem = aTable->item(i, j);
2253           if ( dynamic_cast<SMESHGUI_FilterTable::CheckItem*>( anItem ) ) {
2254             Qt::ItemFlags f = anItem->flags();
2255             if (!isEditable) f = f & ~Qt::ItemIsUserCheckable;
2256             else f = f | Qt::ItemIsUserCheckable;
2257             anItem->setFlags( f );
2258           }
2259         }
2260     //end of IPAL19974
2261
2262     if (isEditable)
2263     {
2264       myAddBtn->show();
2265       myInsertBtn->show();
2266       myRemoveBtn->show();
2267       myClearBtn->show();
2268     }
2269     else
2270     {
2271       myAddBtn->hide();
2272       myInsertBtn->hide();
2273       myRemoveBtn->hide();
2274       myClearBtn->hide();
2275     }
2276   }
2277
2278   QMap<QTableWidgetItem*, AdditionalWidget*>::iterator anIter2;
2279   for (anIter2 = myAddWidgets.begin(); anIter2 != myAddWidgets.end(); ++anIter2)
2280     anIter2.value()->SetEditable(isEditable);
2281 }
2282
2283 //=======================================================================
2284 // name    : SMESHGUI_FilterTable::SetEnabled
2285 // Purpose : Enable/Disable table. Switching type of elements already enabled
2286 //=======================================================================
2287 void SMESHGUI_FilterTable::SetEnabled (const bool isEnabled)
2288 {
2289   myAddBtn->setEnabled(isEnabled);
2290   myInsertBtn->setEnabled(isEnabled);
2291   myRemoveBtn->setEnabled(isEnabled);
2292   myClearBtn->setEnabled(isEnabled);
2293
2294   if (isEnabled)
2295     updateBtnState();
2296
2297   QMap<QTableWidgetItem*, AdditionalWidget*>::iterator anIter2;
2298   for (anIter2 = myAddWidgets.begin(); anIter2 != myAddWidgets.end(); ++anIter2)
2299     anIter2.value()->setEnabled(isEnabled);
2300 }
2301
2302 //=======================================================================
2303 // name    : SMESHGUI_FilterTable::IsEditable
2304 // Purpose : Verify whether table is editable
2305 //=======================================================================
2306 bool SMESHGUI_FilterTable::IsEditable() const
2307 {
2308   return !myTables[ GetType() ]->isReadOnly();
2309 }
2310
2311 //=======================================================================
2312 // name    : SMESHGUI_FilterTable::SetLibsEnabled
2313 // Purpose : Show/hide buttons for work with libraries
2314 //=======================================================================
2315 void SMESHGUI_FilterTable::SetLibsEnabled (const bool isEnabled)
2316 {
2317   if (isEnabled)
2318   {
2319     myCopyFromBtn->show();
2320     myAddToBtn->show();
2321   }
2322   else
2323   {
2324     myCopyFromBtn->hide();
2325     myAddToBtn->hide();
2326   }
2327 }
2328
2329 //=======================================================================
2330 // name    : SMESHGUI_FilterTable::onCopyFromBtn
2331 // Purpose : SLOT. Called the "Copy from ..." button clicked
2332 //           Display filter library dialog
2333 //=======================================================================
2334 void SMESHGUI_FilterTable::onCopyFromBtn()
2335 {
2336   if (myLibDlg == 0)
2337     myLibDlg = new SMESHGUI_FilterLibraryDlg(
2338       mySMESHGUI, this, GetType(), SMESHGUI_FilterLibraryDlg::COPY_FROM);
2339   else
2340     myLibDlg->Init(GetType(), SMESHGUI_FilterLibraryDlg::COPY_FROM);
2341
2342   if (myLibDlg->exec() == QDialog::Accepted)
2343   {
2344     Copy(myLibDlg->GetTable());
2345     Update();
2346   }
2347 }
2348
2349 //=======================================================================
2350 // name    : SMESHGUI_FilterTable::onAddToBtn
2351 // Purpose : SLOT. Called the "Add to ..." button clicked
2352 //           Display filter library dialog
2353 //=======================================================================
2354 void SMESHGUI_FilterTable::onAddToBtn()
2355 {
2356   if (!IsValid(true))
2357     return;
2358   if (myLibDlg == 0)
2359     myLibDlg = new SMESHGUI_FilterLibraryDlg(
2360       mySMESHGUI, this, GetType(), SMESHGUI_FilterLibraryDlg::ADD_TO);
2361   else
2362     myLibDlg->Init(GetType(), SMESHGUI_FilterLibraryDlg::ADD_TO);
2363
2364   myLibDlg->SetTable(this);
2365
2366   myLibDlg->exec();
2367 }
2368
2369 //=======================================================================
2370 // name    : SMESHGUI_FilterTable::Copy
2371 // Purpose : Initialise table with values of other table
2372 //=======================================================================
2373 void SMESHGUI_FilterTable::Copy (const SMESHGUI_FilterTable* theTable)
2374 {
2375   Clear();
2376
2377   for (int i = 0, n = theTable->NumRows(); i < n; i++)
2378   {
2379     SMESH::Filter::Criterion aCriterion = SMESHGUI_FilterDlg::createCriterion();
2380     theTable->GetCriterion(i, aCriterion);
2381     AddCriterion(aCriterion);
2382   }
2383 }
2384
2385 //=======================================================================
2386 // name    : SMESHGUI_FilterTable::CurrentCell
2387 // Purpose : Returns current cell
2388 //=======================================================================
2389 bool SMESHGUI_FilterTable::CurrentCell (int& theRow, int& theCol) const
2390 {
2391   theRow = myTables[ GetType() ]->currentRow();
2392   theCol = myTables[ GetType() ]->currentColumn();
2393   return theRow >= 0 && theCol >= 0;
2394 }
2395
2396 //=======================================================================
2397 // name    : SMESHGUI_FilterTable::SetText
2398 // Purpose : Set text and internal value in cell of threshold value
2399 //=======================================================================
2400 void SMESHGUI_FilterTable::SetThreshold (const int      theRow,
2401                                          const QString& theText,
2402                                          const int      theEntityType)
2403 {
2404   Table* aTable = myTables[ theEntityType == -1 ? GetType() : theEntityType ];
2405   aTable->item( theRow, 2 )->setText(theText);
2406 }
2407
2408 //=======================================================================
2409 // name    : SMESHGUI_FilterTable::SetText
2410 // Purpose : Get text and internal value from cell of threshold value
2411 //=======================================================================
2412 bool SMESHGUI_FilterTable::GetThreshold (const int      theRow,
2413                                          QString&       theText,
2414                                          const int      theEntityType)
2415 {
2416   Table* aTable = myTables[ theEntityType == -1 ? GetType() : theEntityType ];
2417   QTableWidgetItem* anItem = aTable->item(theRow, 2);
2418   if (anItem != 0)
2419   {
2420     theText = anItem->text();
2421     return true;
2422   }
2423   else
2424    return false;
2425 }
2426
2427 //=======================================================================
2428 // name    : SMESHGUI_FilterTable::SetID
2429 // Purpose : Set text and internal value in cell of ID value 
2430 //=======================================================================
2431 void SMESHGUI_FilterTable::SetID( const int      theRow,
2432                                   const QString& theText,
2433                                   const int      theEntityType )
2434 {
2435   Table* aTable = myTables[ theEntityType == -1 ? GetType() : theEntityType ];
2436   aTable->item( theRow, 5 )->setText( theText );
2437 }
2438
2439 //=======================================================================
2440 // name    : SMESHGUI_FilterTable::GetID
2441 // Purpose : Get text and internal value from cell of ID value
2442 //=======================================================================
2443 bool SMESHGUI_FilterTable::GetID( const int      theRow,
2444                                   QString&       theText,
2445                                   const int      theEntityType )
2446 {
2447   Table* aTable = myTables[ theEntityType == -1 ? GetType() : theEntityType ];
2448   QTableWidgetItem* anItem = aTable->item( theRow, 5 );
2449   if ( anItem != 0 )
2450     {
2451       theText = anItem->text();
2452       return true;    
2453     }
2454   else
2455     return false;
2456
2457
2458 /*
2459   Class       : SMESHGUI_FilterDlg
2460   Description : Dialog to specify filters for VTK viewer
2461 */
2462
2463
2464 //=======================================================================
2465 // name    : SMESHGUI_FilterDlg::SMESHGUI_FilterDlg
2466 // Purpose : Constructor
2467 //=======================================================================
2468 SMESHGUI_FilterDlg::SMESHGUI_FilterDlg( SMESHGUI*         theModule,
2469                                         const QList<int>& theTypes )
2470 : QDialog( SMESH::GetDesktop( theModule ) ),
2471   mySMESHGUI( theModule ),
2472   mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
2473   myInitSourceWgOnApply( true )
2474 {
2475   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
2476     mySelector = aViewWindow->GetSelector();
2477
2478   construct(theTypes);
2479 }
2480
2481 //=======================================================================
2482 // name    : SMESHGUI_FilterDlg::SMESHGUI_FilterDlg
2483 // Purpose : Constructor
2484 //=======================================================================
2485 SMESHGUI_FilterDlg::SMESHGUI_FilterDlg( SMESHGUI*   theModule,
2486                                         const int   theType )
2487 : QDialog( SMESH::GetDesktop( theModule ) ),
2488   mySMESHGUI( theModule ),
2489   mySelectionMgr( SMESH::GetSelectionMgr( theModule ) ),
2490   myInitSourceWgOnApply( true )
2491 {
2492   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
2493     mySelector = aViewWindow->GetSelector();
2494   QList<int> aTypes;
2495   aTypes.append(theType);
2496   construct(aTypes);
2497 }
2498
2499 //=======================================================================
2500 // name    : SMESHGUI_FilterDlg::construct
2501 // Purpose : Construct dialog (called by constructor)
2502 //=======================================================================
2503 void SMESHGUI_FilterDlg::construct (const QList<int>& theTypes)
2504 {
2505   myTypes = theTypes;
2506
2507   setModal(false);
2508   //setAttribute(Qt::WA_DeleteOnClose, true); // VSR ??? is it required?
2509   setWindowTitle(tr("CAPTION"));
2510
2511   QVBoxLayout* aDlgLay = new QVBoxLayout (this);
2512   aDlgLay->setMargin(MARGIN);
2513   aDlgLay->setSpacing(SPACING);
2514
2515   myMainFrame         = createMainFrame  (this);
2516   QWidget* aBtnFrame  = createButtonFrame(this);
2517
2518   aDlgLay->addWidget(myMainFrame);
2519   aDlgLay->addWidget(aBtnFrame);
2520
2521   aDlgLay->setStretchFactor(myMainFrame, 1);
2522
2523   myHelpFileName = "selection_filter_library_page.html";
2524
2525   Init(myTypes);
2526 }
2527
2528 //=======================================================================
2529 // name    : SMESHGUI_FilterDlg::createMainFrame
2530 // Purpose : Create frame containing dialog's input fields
2531 //=======================================================================
2532 QWidget* SMESHGUI_FilterDlg::createMainFrame (QWidget* theParent)
2533 {
2534   QWidget* aMainFrame = new QWidget(theParent);
2535   QVBoxLayout* aMainLay = new QVBoxLayout(aMainFrame);
2536   aMainLay->setMargin(0);
2537   aMainLay->setSpacing(SPACING);
2538
2539   // filter frame
2540
2541   myTable = new SMESHGUI_FilterTable( mySMESHGUI, aMainFrame, myTypes );
2542   myTable->SetLibsEnabled(true);
2543
2544   QGroupBox* aGrp = myTable->GetTableGrp();
2545   QGridLayout* aLay = qobject_cast<QGridLayout*>( aGrp->layout() );
2546   int rows = aLay->rowCount();
2547   int cols = aLay->columnCount();
2548
2549   QFrame* aLine = new QFrame(aGrp);
2550   aLine->setFrameStyle(QFrame::HLine | QFrame::Sunken);
2551   aLay->addWidget(aLine, rows++, 0, 1, cols);
2552
2553   mySetInViewer = new QCheckBox(tr("SET_IN_VIEWER"), aGrp);
2554   mySetInViewer->setChecked(true);
2555   aLay->addWidget(mySetInViewer, rows++, 0, 1, cols);
2556
2557   // other controls
2558   QWidget* aSourceGrp = createSourceGroup(aMainFrame);
2559
2560   connect(myTable, SIGNAL(CriterionChanged(const int, const int)),
2561                     SLOT(onCriterionChanged(const int, const int)));
2562
2563   connect(myTable, SIGNAL(CurrentChanged(int, int)),
2564                     SLOT(onCurrentChanged(int, int)));
2565
2566   aMainLay->addWidget(myTable);
2567   aMainLay->addWidget(aSourceGrp);
2568   
2569   return aMainFrame;
2570 }
2571
2572 //=======================================================================
2573 // name    : SMESHGUI_FilterDlg::createSourceFrame
2574 // Purpose : Create frame containing source radio button
2575 //=======================================================================
2576 QWidget* SMESHGUI_FilterDlg::createSourceGroup (QWidget* theParent)
2577 {
2578   QGroupBox* aBox = new QGroupBox(tr("SOURCE"), theParent);
2579   QHBoxLayout* aLay = new QHBoxLayout(aBox);
2580   aLay->setMargin(MARGIN);
2581   aLay->setSpacing(SPACING);
2582
2583   mySourceGrp = new QButtonGroup(theParent);
2584
2585   QRadioButton* aMeshBtn = new QRadioButton(tr("MESH"),          aBox);
2586   QRadioButton* aSelBtn  = new QRadioButton(tr("SELECTION"),     aBox);
2587   QRadioButton* aDlgBtn  = new QRadioButton(tr("CURRENT_DIALOG"),aBox);
2588
2589   aLay->addWidget(aMeshBtn);
2590   aLay->addWidget(aSelBtn);
2591   aLay->addWidget(aDlgBtn);
2592
2593   mySourceGrp->addButton(aMeshBtn, Mesh);
2594   mySourceGrp->addButton(aSelBtn,  Selection);
2595   mySourceGrp->addButton(aDlgBtn,  Dialog);
2596
2597   aMeshBtn->setChecked(true);
2598
2599   return aBox;
2600 }
2601
2602 //=======================================================================
2603 // name    : SMESHGUI_FilterDlg::updateMainButtons
2604 // Purpose : Update visibility of main buttons (OK, Cancel, Close ...)
2605 //=======================================================================
2606 void SMESHGUI_FilterDlg::updateMainButtons()
2607 {
2608   myButtons[ BTN_Close  ]->show();
2609   if (myTypes.count() == 1)
2610   {
2611     myButtons[ BTN_Apply  ]->hide();
2612   }
2613   else
2614   {
2615     myButtons[ BTN_Apply  ]->show();
2616   }
2617 //  updateGeometry();
2618 }
2619
2620 //=======================================================================
2621 // name    : SMESHGUI_FilterDlg::createButtonFrame
2622 // Purpose : Create frame containing buttons
2623 //=======================================================================
2624 QWidget* SMESHGUI_FilterDlg::createButtonFrame (QWidget* theParent)
2625 {
2626   QGroupBox* aGrp = new QGroupBox(theParent);
2627   QHBoxLayout* aLay = new QHBoxLayout(aGrp);
2628   aLay->setMargin(MARGIN);
2629   aLay->setSpacing(SPACING);
2630
2631   myButtons[ BTN_OK     ] = new QPushButton(tr("SMESH_BUT_APPLY_AND_CLOSE"), aGrp);
2632   myButtons[ BTN_Apply  ] = new QPushButton(tr("SMESH_BUT_APPLY"),           aGrp);
2633   myButtons[ BTN_Close  ] = new QPushButton(tr("SMESH_BUT_CLOSE"),           aGrp);
2634   myButtons[ BTN_Help   ] = new QPushButton(tr("SMESH_BUT_HELP"),            aGrp);
2635
2636   aLay->addWidget(myButtons[ BTN_OK     ]);
2637   aLay->addSpacing(10);
2638   aLay->addWidget(myButtons[ BTN_Apply  ]);
2639   aLay->addSpacing(10);
2640   aLay->addStretch();
2641   aLay->addWidget(myButtons[ BTN_Close  ]);
2642   aLay->addWidget(myButtons[ BTN_Help   ]);
2643
2644   connect(myButtons[ BTN_OK     ], SIGNAL(clicked()), SLOT(onOk()));
2645   connect(myButtons[ BTN_Close  ], SIGNAL(clicked()), SLOT(onClose()));
2646   connect(myButtons[ BTN_Apply  ], SIGNAL(clicked()), SLOT(onApply()));
2647   connect(myButtons[ BTN_Help   ], SIGNAL(clicked()), SLOT(onHelp()));
2648
2649   updateMainButtons();
2650
2651   return aGrp;
2652 }
2653
2654 //=======================================================================
2655 // name    : SMESHGUI_FilterDlg::~SMESHGUI_FilterDlg
2656 // Purpose : Destructor
2657 //=======================================================================
2658 SMESHGUI_FilterDlg::~SMESHGUI_FilterDlg()
2659 {
2660 }
2661
2662 //=======================================================================
2663 // name    : SMESHGUI_FilterDlg::Init
2664 // Purpose : Init dialog fields, connect signals and slots, show dialog
2665 //=======================================================================
2666 void SMESHGUI_FilterDlg::Init (const int type, const bool setInViewer)
2667 {
2668   QList<int> aTypes;
2669   aTypes.append(type);
2670   Init(aTypes,setInViewer);
2671 }
2672
2673 //=======================================================================
2674 // name    : SMESHGUI_FilterDlg::Init
2675 // Purpose : Init dialog fields, connect signals and slots, show dialog
2676 //=======================================================================
2677 void SMESHGUI_FilterDlg::Init (const QList<int>& theTypes, const bool setInViewer)
2678 {
2679   mySourceWg  = 0;
2680   myTypes     = theTypes;
2681   myMesh      = SMESH::SMESH_Mesh::_nil();
2682   myIObjects.Clear();
2683   myIsSelectionChanged = false;
2684
2685   myTable->Init(theTypes);
2686
2687   // set caption
2688   if (theTypes.count() == 1)
2689   {
2690     int aType = theTypes.first();
2691     if      (aType == SMESH::NODE  ) setWindowTitle(tr("NODES_TLT"));
2692     else if (aType == SMESH::ELEM0D) setWindowTitle(tr("ELEM0D_TLT"));
2693     else if (aType == SMESH::BALL  ) setWindowTitle(tr("BALL_TLT"));
2694     else if (aType == SMESH::EDGE  ) setWindowTitle(tr("EDGES_TLT"));
2695     else if (aType == SMESH::FACE  ) setWindowTitle(tr("FACES_TLT"));
2696     else if (aType == SMESH::VOLUME) setWindowTitle(tr("VOLUMES_TLT"));
2697     else if (aType == SMESH::ALL)    setWindowTitle(tr("TLT"));
2698   }
2699   else
2700     setWindowTitle(tr("TLT"));
2701
2702   qApp->processEvents();
2703   updateGeometry();
2704   adjustSize();
2705   setEnabled(true);
2706
2707   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
2708
2709   connect(mySMESHGUI, SIGNAL(SignalDeactivateActiveDialog()), SLOT(onDeactivate()));
2710   connect(mySMESHGUI, SIGNAL(SignalCloseAllDialogs()), SLOT(onClose()));
2711   
2712   updateMainButtons();
2713   updateSelection();
2714
2715   // Initialise filter table with values of previous filter
2716   QList<int>::const_iterator anIter;
2717   for (anIter = theTypes.begin(); anIter != theTypes.end(); ++anIter)
2718   {
2719     myTable->Clear(*anIter);
2720     if (!myFilter[ *anIter ]->_is_nil())
2721     {
2722       SMESH::Filter::Criteria_var aCriteria = new SMESH::Filter::Criteria;
2723       if (myFilter[ *anIter ]->GetCriteria(aCriteria))
2724       {
2725         for (int i = 0, n = aCriteria->length(); i < n; i++)
2726           myTable->AddCriterion(aCriteria[ i ], *anIter);
2727       }
2728     }
2729   }
2730
2731   if (myInsertState.contains(theTypes.first()))
2732     mySetInViewer->setChecked(myInsertState[ theTypes.first() ]);
2733   else
2734     mySetInViewer->setChecked(setInViewer);
2735
2736   mySourceGrp->button(myApplyToState.contains(theTypes.first()) ? 
2737                       myApplyToState[ theTypes.first() ] :
2738                       Mesh)->setChecked(true);
2739 }
2740
2741 //=======================================================================
2742 // name    : SMESHGUI_FilterDlg::onOk
2743 // Purpose : SLOT called when "Ok" button pressed.
2744 //           Assign filters VTK viewer and close dialog
2745 //=======================================================================
2746 void SMESHGUI_FilterDlg::onOk()
2747 {
2748   if (onApply())
2749   {
2750     mySelectionMgr->clearFilters();
2751     disconnect(mySMESHGUI, 0, this, 0);
2752     disconnect(mySelectionMgr, 0, this, 0);
2753     mySMESHGUI->ResetState();
2754     accept();
2755     emit Accepted();
2756   }
2757 }
2758
2759 //=======================================================================
2760 // name    : SMESHGUI_FilterDlg::onClose
2761 // Purpose : SLOT called when "Close" button pressed. Close dialog
2762 //=======================================================================
2763 void SMESHGUI_FilterDlg::onClose()
2764 {
2765   // Restore previously selected object
2766   if (mySelectionMgr)
2767   {
2768     SALOME_ListIO aList;
2769     mySelectionMgr->clearFilters();
2770     mySelectionMgr->clearSelected();
2771     SALOME_DataMapIteratorOfDataMapOfIOMapOfInteger anIter (myIObjects);
2772     for ( ; anIter.More(); anIter.Next())
2773     {
2774       aList.Append(anIter.Key());
2775
2776       TColStd_MapOfInteger aResMap;
2777       const TColStd_IndexedMapOfInteger& anIndMap = anIter.Value();
2778       for (int i = 1, n = anIndMap.Extent(); i <= n; i++)
2779         aResMap.Add(anIndMap(i));
2780
2781       mySelector->AddOrRemoveIndex( anIter.Key(), aResMap, false);
2782       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
2783         aViewWindow->highlight( anIter.Key(), true, true );
2784     }
2785     mySelectionMgr->setSelectedObjects(aList, false);
2786   }
2787
2788   disconnect(mySMESHGUI, 0, this, 0);
2789   disconnect(mySelectionMgr, 0, this, 0);
2790   mySMESHGUI->ResetState();
2791   reject();
2792   return;
2793 }
2794
2795 //=================================================================================
2796 // function : onHelp()
2797 // purpose  :
2798 //=================================================================================
2799 void SMESHGUI_FilterDlg::onHelp()
2800 {
2801   LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
2802   if (app) 
2803     app->onHelpContextModule(mySMESHGUI ? app->moduleName(mySMESHGUI->moduleName()) : QString(""), myHelpFileName);
2804   else {
2805     QString platform;
2806 #ifdef WIN32
2807     platform = "winapplication";
2808 #else
2809     platform = "application";
2810 #endif
2811     SUIT_MessageBox::warning(this, tr("WRN_WARNING"),
2812                              tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
2813                              arg(app->resourceMgr()->stringValue("ExternalBrowser", 
2814                                                                  platform)).
2815                              arg(myHelpFileName));
2816   }
2817 }
2818
2819 //=======================================================================
2820 // name    : SMESHGUI_FilterDlg::onDeactivate
2821 // Purpose : SLOT called when dialog must be deativated
2822 //=======================================================================
2823 void SMESHGUI_FilterDlg::onDeactivate()
2824 {
2825   setEnabled(false);
2826 }
2827
2828 //=======================================================================
2829 // name    : SMESHGUI_FilterDlg::enterEvent
2830 // Purpose : Event filter
2831 //=======================================================================
2832 void SMESHGUI_FilterDlg::enterEvent (QEvent*)
2833 {
2834 //  mySMESHGUI->EmitSignalDeactivateDialog();
2835   mySMESHGUI->SetActiveDialogBox((QDialog*)this);
2836   mySMESHGUI->ResetState();
2837   setEnabled(true);
2838 }
2839
2840 //=======================================================================
2841 // name    : closeEvent()
2842 // Purpose :
2843 //=======================================================================
2844 void SMESHGUI_FilterDlg::closeEvent (QCloseEvent*)
2845 {
2846   onClose();
2847 }
2848
2849 //=======================================================================
2850 // name    : SMESHGUI_FilterDlg::getIdsFromWg
2851 // Purpose : Retrieve list of ids from given widget
2852 //=======================================================================
2853 void SMESHGUI_FilterDlg::getIdsFromWg (const QWidget* theWg, QList<int>& theRes) const
2854 {
2855   theRes.clear();
2856   if (theWg == 0)
2857     return;
2858
2859   if (theWg->inherits("QListWidget"))
2860   {
2861     const QListWidget* aListBox = qobject_cast<const QListWidget*>( theWg );
2862     bool b;
2863     for (int i = 0, n = aListBox->count(); i < n; i++)
2864     {
2865       int anId = aListBox->item(i)->text().toInt(&b);
2866       if (b)
2867         theRes.append(anId);
2868     }
2869   }
2870   else if (theWg->inherits("QLineEdit"))
2871   {
2872     const QLineEdit* aLineEdit = qobject_cast<const QLineEdit*>( theWg );
2873     QString aStr = aLineEdit->text();
2874     QRegExp aRegExp("(\\d+)");
2875     bool b;
2876     int aPos = 0;
2877     while (aPos >= 0)
2878     {
2879       aPos = aRegExp.indexIn(aStr, aPos);
2880       if (aPos > -1)
2881       {
2882         int anId = aRegExp.cap(1).toInt(&b);
2883         if (b)
2884           theRes.append(anId);
2885         aPos += aRegExp.matchedLength();
2886       }
2887     }
2888   }
2889 }
2890
2891 //=======================================================================
2892 // name    : SMESHGUI_FilterDlg::getSelMode
2893 // Purpose : Get selection mode of specified type
2894 //=======================================================================
2895 Selection_Mode SMESHGUI_FilterDlg::getSelMode (const int theType) const
2896 {
2897   switch (theType)
2898   {
2899     case SMESH::NODE   : return NodeSelection;
2900     case SMESH::ELEM0D : return Elem0DSelection;
2901     case SMESH::BALL   : return BallSelection;
2902     case SMESH::EDGE   : return EdgeSelection;
2903     case SMESH::FACE   : return FaceSelection;
2904     case SMESH::VOLUME : return VolumeSelection;
2905     case SMESH::ALL    : return CellSelection;
2906     default            : return ActorSelection;
2907   }
2908
2909 }
2910
2911 //=======================================================================
2912 // name    : SMESHGUI_FilterDlg::setIdsToWg
2913 // Purpose : Insert identifiers in specified widgets
2914 //=======================================================================
2915 void SMESHGUI_FilterDlg::setIdsToWg (QWidget* theWg, const QList<int>& theIds)
2916 {
2917   if (theWg == 0)
2918     return;
2919
2920   QStringList aStrList;
2921   foreach(int id, theIds)
2922     aStrList << QString::number(id);
2923
2924   if (theWg->inherits("QListWidget"))
2925   {
2926     qobject_cast<QListWidget*>(theWg)->clear();
2927     qobject_cast<QListWidget*>(theWg)->addItems(aStrList);
2928   }
2929   else if (theWg->inherits("QLineEdit"))
2930   {
2931     qobject_cast<QLineEdit*>( theWg )->setText(aStrList.join(" "));
2932   }
2933 }
2934
2935 //=======================================================================
2936 // name    : SMESHGUI_FilterDlg::isValid
2937 // Purpose : Verify validity of input data
2938 //=======================================================================
2939 bool SMESHGUI_FilterDlg::isValid() const
2940 {
2941   if (!myTable->IsValid())
2942     return false;
2943
2944   for (int i = 0, n = myTable->NumRows(); i < n; i++)
2945   {
2946     int aType = myTable->GetCriterionType(i);
2947     if (aType == SMESH::FT_BelongToGeom ||
2948         aType == SMESH::FT_BelongToPlane ||
2949         aType == SMESH::FT_BelongToCylinder ||
2950         aType == SMESH::FT_BelongToGenSurface ||
2951         aType == SMESH::FT_LyingOnGeom)
2952     {
2953       QString aName;
2954       myTable->GetThreshold(i, aName);
2955
2956       std::vector<_PTR(SObject)> aList =
2957         SMESH::GetActiveStudyDocument()->FindObjectByName(aName.toLatin1().constData(), "GEOM");
2958       if (aList.size() == 0) {
2959         SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
2960                                      tr("BAD_SHAPE_NAME").arg(aName));
2961         return false;
2962       }
2963
2964       if (aType == SMESH::FT_BelongToCylinder ||
2965           aType == SMESH::FT_BelongToPlane    ||
2966           aType == SMESH::FT_BelongToGenSurface ) {
2967         CORBA::Object_var anObject = SMESH::SObjectToObject(aList[ 0 ]);
2968         //GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow(aList[ 0 ]->GetObject());
2969         GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow(anObject);
2970         if (!aGeomObj->_is_nil()) {
2971           TopoDS_Shape aFace;
2972           if (!GEOMBase::GetShape(aGeomObj, aFace) ||
2973                aFace.IsNull() ||
2974                aFace.ShapeType() != TopAbs_FACE) {
2975             SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
2976                                          tr("SHAPE_IS_NOT_A_FACE").arg(aName));
2977             return false;
2978           }
2979
2980           Handle(Geom_Surface) aSurf = BRep_Tool::Surface(TopoDS::Face(aFace));
2981           if (aSurf.IsNull()) {
2982             SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
2983                                          tr("SHAPE_IS_NOT_A_FACE").arg(aName));
2984             return false;
2985           }
2986
2987           if (aType == SMESH::FT_BelongToPlane && !aSurf->IsKind(STANDARD_TYPE(Geom_Plane))) {
2988             SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
2989                                          tr("SHAPE_IS_NOT_A_PLANE").arg(aName));
2990             return false;
2991           }
2992
2993           if (aType == SMESH::FT_BelongToCylinder && !aSurf->IsKind(STANDARD_TYPE(Geom_CylindricalSurface))) {
2994             SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
2995                                          tr("SHAPE_IS_NOT_A_CYLINDER").arg(aName));
2996             return false;
2997           }
2998         }
2999       }
3000     }
3001     else if (aType == SMESH::FT_CoplanarFaces)
3002     {
3003       QString faceID;
3004       myTable->GetThreshold(i, faceID);
3005       if ( faceID.isEmpty() )
3006       {
3007         SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
3008                                      tr("FACE_ID_NOT_SELECTED"));
3009         return false;
3010       }
3011       if ( myMesh->_is_nil() )
3012       {
3013         SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
3014                                      tr("MESH_IS_NOT_SELECTED"));
3015         return false;
3016       }
3017       if ( myMesh->GetElementType( faceID.toLong(), /*iselem=*/true) != SMESH::FACE )
3018       {
3019         SUIT_MessageBox::information(SMESHGUI::desktop(), tr("SMESH_INSUFFICIENT_DATA"),
3020                                      tr("NOT_FACE_ID").arg(faceID));
3021         return false;
3022       }
3023     }
3024   }
3025
3026   return true;
3027 }
3028
3029 //=======================================================================
3030 // name    : SMESHGUI_FilterDlg::SetSourceWg
3031 // Purpose : Set widget of parent dialog containing ids to be filtered if
3032 //           user select corresponding source radio button
3033 //=======================================================================
3034 void SMESHGUI_FilterDlg::SetSourceWg (QWidget* theWg,
3035                                       const bool initOnApply)
3036 {
3037   mySourceWg = theWg;
3038   myInitSourceWgOnApply = initOnApply;
3039 }
3040
3041 //=======================================================================
3042 // name    : SMESHGUI_FilterDlg::SetMesh
3043 // Purpose : Set mesh
3044 //=======================================================================
3045 void SMESHGUI_FilterDlg::SetMesh (SMESH::SMESH_Mesh_var theMesh)
3046 {
3047   if ( !theMesh->_is_nil() ) {
3048     myMesh = theMesh;
3049     if ( !myFilter[ myTable->GetType() ]->_is_nil())
3050       myFilter[ myTable->GetType() ]->SetMesh( theMesh );
3051   }
3052   const bool isEnable = !(myMesh->_is_nil());
3053   myButtons[BTN_OK]->setEnabled(isEnable);
3054   myButtons[BTN_Apply]->setEnabled(isEnable);
3055 }
3056
3057 //=======================================================================
3058 // name    : SMESHGUI_FilterDlg::SetSelection
3059 // Purpose : Get filtered ids
3060 //=======================================================================
3061 void SMESHGUI_FilterDlg::SetSelection()
3062 {
3063   if (mySelectionMgr)
3064     disconnect(mySelectionMgr, SIGNAL(currentSelectionChanged()), this, SLOT(onSelectionDone()));
3065
3066   if (mySelectionMgr) {
3067     myIObjects.Clear();
3068     const SALOME_ListIO& anObjs = mySelector->StoredIObjects(); 
3069     SALOME_ListIteratorOfListIO anIter (anObjs);
3070     for ( ; anIter.More(); anIter.Next()) {
3071       TColStd_IndexedMapOfInteger aMap;
3072       mySelector->GetIndex(anIter.Value(), aMap);
3073       myIObjects.Bind(anIter.Value(), aMap);
3074     }
3075
3076     connect(mySelectionMgr, SIGNAL(currentSelectionChanged()), SLOT(onSelectionDone()));
3077
3078     updateSelection();
3079   }
3080   else
3081     myIObjects.Clear();
3082 }
3083
3084 //=======================================================================
3085 // name    : SMESHGUI_FilterDlg::onApply
3086 // Purpose : SLOT called when "Apply" button pressed.
3087 //           Assign filters to VTK viewer
3088 //=======================================================================
3089 bool SMESHGUI_FilterDlg::onApply()
3090 {
3091   if (!isValid())
3092     return false;
3093
3094   try {
3095     int aCurrType = myTable->GetType();
3096
3097     if (!createFilter(aCurrType))
3098       return false;
3099
3100     insertFilterInViewer();
3101
3102     if (!myFilter[ aCurrType ]->GetPredicate()->_is_nil()) {
3103       QList<int> aResultIds;
3104       filterSource(aCurrType, aResultIds);
3105       // select in viewer
3106       selectInViewer(aCurrType, aResultIds);
3107     }
3108
3109
3110     myInsertState[ aCurrType ] = mySetInViewer->isChecked();
3111     myApplyToState[ aCurrType ] = mySourceGrp->checkedId();
3112   }
3113   catch(const SALOME::SALOME_Exception& S_ex)
3114   {
3115     SalomeApp_Tools::QtCatchCorbaException(S_ex);
3116   }
3117   catch(...)
3118   {
3119   }
3120
3121   return true;
3122 }
3123
3124 //=======================================================================
3125 // name    : SMESHGUI_FilterDlg::createFilter
3126 // Purpose : Create predicate for given type
3127 //=======================================================================
3128 bool SMESHGUI_FilterDlg::createFilter (const int theType)
3129 {
3130   SMESH::FilterManager_var aFilterMgr = SMESH::GetFilterManager();
3131   if (aFilterMgr->_is_nil())
3132     return false;
3133
3134   int n = myTable->NumRows();
3135
3136   SMESH::Filter::Criteria_var aCriteria = new SMESH::Filter::Criteria;
3137   aCriteria->length(n);
3138
3139   long aPrecision = -1;
3140   SUIT_ResourceMgr* mgr = SMESH::GetResourceMgr( mySMESHGUI );
3141
3142   if ( mgr && mgr->booleanValue( "SMESH", "use_precision", false ) )
3143     aPrecision = mgr->integerValue( "SMESH", "controls_precision", aPrecision );
3144
3145   for (CORBA::ULong i = 0; i < n; i++) {
3146     SMESH::Filter::Criterion aCriterion = createCriterion();
3147     myTable->GetCriterion(i, aCriterion);
3148     aCriterion.Precision = aPrecision;
3149     aCriteria[ i ] = aCriterion;
3150   }
3151
3152   myFilter[ theType ] = aFilterMgr->CreateFilter();
3153   myFilter[ theType ]->SetCriteria(aCriteria.inout());
3154
3155   return true;
3156 }
3157
3158 //================================================================================
3159 /*!
3160  * \brief Return the current filter
3161  */
3162 //================================================================================
3163
3164 SMESH::Filter_var SMESHGUI_FilterDlg::GetFilter() const
3165 {
3166   SMESH::Filter_var filter;
3167   try {
3168     int aCurrType = myTable->GetType();
3169     filter = myFilter[ aCurrType ];
3170   }
3171   catch(...)
3172   {
3173   }
3174   return filter._retn();
3175 }
3176
3177 //================================================================================
3178 /*!
3179  * \brief Sets a filter to the table
3180  */
3181 //================================================================================
3182
3183 void SMESHGUI_FilterDlg::SetFilter(SMESH::Filter_var filter, int type)
3184 {
3185   myFilter[ type ] = filter;
3186 }
3187
3188 //=======================================================================
3189 // name    : SMESHGUI_FilterDlg::insertFilterInViewer
3190 // Purpose : Insert filter in viewer
3191 //=======================================================================
3192 void SMESHGUI_FilterDlg::insertFilterInViewer()
3193 {
3194   if (SVTK_Selector* aSelector = SMESH::GetSelector()) {
3195     SMESH::ElementType anEntType = (SMESH::ElementType)myTable->GetType();
3196
3197     if (myFilter[ myTable->GetType() ]->_is_nil() ||
3198          myFilter[ myTable->GetType() ]->GetPredicate()->_is_nil() ||
3199          !mySetInViewer->isChecked()) {
3200       SMESH::RemoveFilter(getFilterId(anEntType), aSelector);
3201     }
3202     else {
3203       Handle(SMESHGUI_PredicateFilter) aFilter = new SMESHGUI_PredicateFilter();
3204       aFilter->SetPredicate(myFilter[ myTable->GetType() ]->GetPredicate());
3205       SMESH::RemoveFilter(getFilterId(anEntType), aSelector); //skl for IPAL12631
3206       SMESH::SetFilter(aFilter, aSelector);
3207     }
3208   }
3209 }
3210
3211 //=======================================================================
3212 // name    : SMESHGUI_FilterDlg::filterSource
3213 // Purpose : Filter source ids
3214 //=======================================================================
3215 void SMESHGUI_FilterDlg::filterSource (const int theType,
3216                                        QList<int>& theResIds)
3217 {
3218   theResIds.clear();
3219   if (myFilter[ theType ]->_is_nil())
3220     return;
3221
3222   int aSourceId = mySourceGrp->checkedId();
3223
3224   if (aSourceId == Mesh)
3225   {
3226     if (myMesh->_is_nil())
3227       return;
3228     SMESH::long_array_var anIds = myFilter[ theType ]->GetElementsId(myMesh);
3229     for (int i = 0, n = anIds->length(); i < n; i++)
3230       theResIds.append(anIds[ i ]);
3231   }
3232   else if (aSourceId == Selection)
3233   {
3234     filterSelectionSource(theType, theResIds);
3235   }
3236   else if (aSourceId == Dialog)
3237   {
3238     // retrieve ids from dialog
3239     QList<int> aDialogIds;
3240     getIdsFromWg(mySourceWg, aDialogIds);
3241
3242     if (myMesh->_is_nil())
3243     {
3244       theResIds = aDialogIds;
3245       return;
3246     }
3247
3248     // filter ids
3249     SMESH::Predicate_ptr aPred = myFilter[ theType ]->GetPredicate();
3250     myFilter[ theType ]->SetMesh(myMesh);
3251     QList<int>::const_iterator anIter;
3252     for (anIter = aDialogIds.begin(); anIter != aDialogIds.end(); ++ anIter)
3253       if (aPred->IsSatisfy(*anIter))
3254         theResIds.append(*anIter);
3255   }
3256   // set ids to the dialog
3257   if (myInitSourceWgOnApply || aSourceId == Dialog)
3258     setIdsToWg(mySourceWg, theResIds);
3259 }
3260
3261 //=======================================================================
3262 // name    : SMESHGUI_FilterDlg::filterSelectionSource
3263 // Purpose : Filter source selection
3264 //=======================================================================
3265 void SMESHGUI_FilterDlg::filterSelectionSource (const int theType,
3266                                                 QList<int>& theResIds)
3267 {
3268   theResIds.clear();
3269   if (myMesh->_is_nil() || mySelectionMgr == 0)
3270     return;
3271
3272   // Create map of entities to be filtered
3273   TColStd_MapOfInteger aToBeFiltered;
3274   SALOME_DataMapIteratorOfDataMapOfIOMapOfInteger anIter(myIObjects);
3275
3276   for ( ; anIter.More(); anIter.Next())
3277   {
3278     // process sub mesh
3279     SMESH::SMESH_subMesh_var aSubMesh = SMESH::IObjectToInterface<SMESH::SMESH_subMesh>(anIter.Key());
3280     if (!aSubMesh->_is_nil())
3281     {
3282       if (aSubMesh->GetFather()->GetId() == myMesh->GetId())
3283       {
3284         SMESH::long_array_var anIds =
3285           theType == SMESH::NODE ? aSubMesh->GetNodesId() : aSubMesh->GetElementsId();
3286         for (int i = 0, n = anIds->length(); i < n; i++)
3287           aToBeFiltered.Add(anIds[ i ]);
3288       }
3289     }
3290
3291     // process group
3292     SMESH::SMESH_GroupBase_var aGroup =
3293       SMESH::IObjectToInterface<SMESH::SMESH_GroupBase>(anIter.Key());
3294     if (!aGroup->_is_nil())
3295     {
3296       if (aGroup->GetType() == theType && aGroup->GetMesh()->GetId() == myMesh->GetId())
3297       {
3298         SMESH::long_array_var anIds = aGroup->GetListOfID();
3299         for (int i = 0, n = anIds->length(); i < n; i++)
3300           aToBeFiltered.Add(anIds[ i ]);
3301       }
3302     }
3303
3304     // process mesh
3305     SMESH::SMESH_Mesh_var aMeshPtr = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(anIter.Key());
3306     if (!aMeshPtr->_is_nil() && aMeshPtr->GetId() == myMesh->GetId())
3307     {
3308       const TColStd_IndexedMapOfInteger& aSelMap = anIter.Value();
3309
3310       if (aSelMap.Extent() > 0)
3311       {
3312         if(SMESH::FindActorByEntry(anIter.Key()->getEntry()))
3313         {
3314           for (int i = 1; i <= aSelMap.Extent(); i++)
3315             aToBeFiltered.Add(aSelMap(i));
3316         }
3317       }
3318     }
3319   }
3320
3321   // Filter entities
3322   SMESH::Predicate_ptr aPred = myFilter[ theType ]->GetPredicate();
3323   myFilter[ theType ]->SetMesh(myMesh);
3324   TColStd_MapIteratorOfMapOfInteger aResIter(aToBeFiltered);
3325   for ( ; aResIter.More(); aResIter.Next())
3326     if (aPred->IsSatisfy(aResIter.Key()))
3327       theResIds.append(aResIter.Key());
3328 }
3329
3330 //=======================================================================
3331 // name    : SMESHGUI_FilterDlg::selectInViewer
3332 // Purpose : Select given entities in viewer
3333 //=======================================================================
3334 void SMESHGUI_FilterDlg::selectInViewer (const int theType, const QList<int>& theIds)
3335 {
3336   if (mySelectionMgr == 0 || myMesh->_is_nil())
3337     return;
3338
3339   mySelectionMgr->clearFilters();
3340
3341   // Set new selection mode if necessary
3342   Selection_Mode aSelMode = getSelMode(theType);
3343   SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI );
3344   if ( aViewWindow && aViewWindow->SelectionMode()!=aSelMode) {
3345     mySelectionMgr->clearSelected();
3346     mySelectionMgr->clearFilters();
3347     if (aSelMode == NodeSelection)
3348       SMESH::SetPointRepresentation(true);
3349     aViewWindow->SetSelectionMode(aSelMode);
3350   }
3351
3352   // Clear selection
3353   SMESH_Actor* anActor = SMESH::FindActorByObject(myMesh);
3354   if (!anActor || !anActor->hasIO())
3355     return;
3356
3357   Handle(SALOME_InteractiveObject) anIO = anActor->getIO();
3358   //mySelectionMgr->clearSelected();
3359   //mySelectionMgr->AddIObject(anIO, false);
3360   SALOME_ListIO aList;
3361   aList.Append(anIO);
3362   mySelectionMgr->setSelectedObjects(aList, false);
3363
3364   // Remove filter corresponding to the current type from viewer
3365   int aType = myTable->GetType();
3366   int aFilterId = SMESH::UnknownFilter;
3367   if      (aType == SMESH::EDGE  ) aFilterId = SMESH::EdgeFilter;
3368   else if (aType == SMESH::FACE  ) aFilterId = SMESH::FaceFilter;
3369   else if (aType == SMESH::VOLUME) aFilterId = SMESH::VolumeFilter;
3370   Handle(VTKViewer_Filter) aFilter = SMESH::GetFilter(aFilterId);
3371   SMESH::RemoveFilter(aFilterId);
3372
3373   // get vtk ids
3374   TColStd_MapOfInteger aMap;
3375   QList<int>::const_iterator anIter;
3376   for (anIter = theIds.begin(); anIter != theIds.end(); ++anIter) {
3377     aMap.Add(*anIter);
3378   }
3379
3380   // Set new selection
3381   mySelector->AddOrRemoveIndex(anIO, aMap, false);
3382   if ( SVTK_ViewWindow* aViewWindow = SMESH::GetViewWindow( mySMESHGUI ))
3383     aViewWindow->highlight( anIO, true, true );
3384
3385   // insert previously stored filter in viewer if necessary
3386   if (!aFilter.IsNull())
3387     SMESH::SetFilter(aFilter);
3388 }
3389
3390 //=======================================================================
3391 // name    : SMESHGUI_FilterDlg::createCriterion
3392 // Purpose : Create criterion structure with default values
3393 //=======================================================================
3394 SMESH::Filter::Criterion SMESHGUI_FilterDlg::createCriterion()
3395 {
3396    SMESH::Filter::Criterion aCriterion;
3397
3398   aCriterion.Type          = SMESH::FT_Undefined;
3399   aCriterion.Compare       = SMESH::FT_Undefined;
3400   aCriterion.Threshold     = 0;
3401   aCriterion.UnaryOp       = SMESH::FT_Undefined;
3402   aCriterion.BinaryOp      = SMESH::FT_Undefined;
3403   aCriterion.ThresholdStr  = "";
3404   aCriterion.ThresholdID   = "";
3405   aCriterion.TypeOfElement = SMESH::ALL;
3406
3407   return aCriterion;
3408 }
3409
3410 //=======================================================================
3411 // name    : SMESHGUI_FilterDlg::onSelectionDone
3412 // Purpose : SLOT called when selection changed.
3413 //           If current cell corresponds to the threshold value of
3414 //           BelongToGeom criterion name of selected object is set in this cell
3415 //=======================================================================
3416 void SMESHGUI_FilterDlg::onSelectionDone()
3417 {
3418   int aRow, aCol;
3419   const SALOME_ListIO& aList = mySelector->StoredIObjects();
3420
3421   if ( myMesh->_is_nil() && aList.Extent()>0 ) {
3422     myMesh = SMESH::IObjectToInterface<SMESH::SMESH_Mesh>(aList.First());
3423     if ( !(myMesh->_is_nil()) ) {
3424       myButtons[BTN_OK]->setEnabled(true);
3425       myButtons[BTN_Apply]->setEnabled(true);
3426     }
3427   }
3428
3429   QList<int> types; 
3430   types << SMESH::FT_BelongToGeom     << SMESH::FT_BelongToPlane 
3431         << SMESH::FT_BelongToCylinder << SMESH::FT_BelongToGenSurface
3432         << SMESH::FT_LyingOnGeom      << SMESH::FT_CoplanarFaces;
3433   if (aList.Extent() != 1 || !myTable->CurrentCell(aRow, aCol) || 
3434       !types.contains(myTable->GetCriterionType(aRow)))
3435     return;
3436
3437   if ( myTable->GetCriterionType(aRow) == SMESH::FT_CoplanarFaces )
3438   {
3439     QString aString;
3440     int nbElems = SMESH::GetNameOfSelectedElements(mySelector,//myViewWindow->GetSelector(),
3441                                                    aList.First(), aString);
3442     if (nbElems == 1)
3443       myTable->SetThreshold(aRow, aString);
3444   }
3445   else
3446   {
3447     Handle(SALOME_InteractiveObject) anIO = aList.First();
3448     GEOM::GEOM_Object_var anObj = SMESH::IObjectToInterface<GEOM::GEOM_Object>(anIO);
3449     if (!anObj->_is_nil())
3450     {
3451       myTable->SetThreshold(aRow, GEOMBase::GetName(anObj));
3452       //myTable->SetID( aRow, GEOMBase::GetIORFromObject(anObj));
3453       myTable->SetID(aRow, anIO->getEntry());
3454     }
3455   }
3456 }
3457
3458
3459 //=======================================================================
3460 // name    : SMESHGUI_FilterDlg::onCriterionChanged
3461 // Purpose : SLOT called when cretarion of current row changed. Update selection
3462 //=======================================================================
3463 void SMESHGUI_FilterDlg::onCriterionChanged (const int, const int)
3464 {
3465   updateSelection();
3466 }
3467
3468 //=======================================================================
3469 // name    : SMESHGUI_FilterDlg::onCurrentChanged
3470 // Purpose : SLOT called when current row changed. Update selection
3471 //=======================================================================
3472 void SMESHGUI_FilterDlg::onCurrentChanged (int, int)
3473 {
3474   updateSelection();
3475 }
3476
3477 //=======================================================================
3478 // name    : SMESHGUI_FilterDlg::updateSelection
3479 // Purpose : UpdateSelection in accordance with current row
3480 //=======================================================================
3481 void SMESHGUI_FilterDlg::updateSelection()
3482 {
3483   if (mySelectionMgr == 0)
3484     return;
3485
3486 //   TColStd_MapOfInteger allTypes;
3487 //   for( int i=0; i<10; i++ )
3488 //     allTypes.Add( i );
3489   SalomeApp_Study* aStudy = dynamic_cast<SalomeApp_Study*>( mySMESHGUI->application()->activeStudy() );
3490   if( !aStudy )
3491     return;
3492
3493
3494   mySelectionMgr->clearFilters();
3495
3496   int aRow, aCol;
3497   
3498   bool isCurrentCell = myTable->CurrentCell(aRow, aCol);
3499   int aCriterionType = myTable->GetCriterionType(aRow);
3500   if ( isCurrentCell &&
3501       (aCriterionType == SMESH::FT_BelongToGeom ||
3502        aCriterionType == SMESH::FT_BelongToPlane ||
3503        aCriterionType == SMESH::FT_BelongToCylinder ||
3504        aCriterionType == SMESH::FT_BelongToGenSurface ||
3505        aCriterionType == SMESH::FT_LyingOnGeom))
3506   {
3507     if (aCriterionType == SMESH::FT_BelongToGeom ||
3508         aCriterionType == SMESH::FT_BelongToGenSurface ||
3509         aCriterionType == SMESH::FT_LyingOnGeom) {
3510
3511       mySelectionMgr->installFilter(new GEOM_SelectionFilter( aStudy, true ));
3512
3513     } else if (aCriterionType == SMESH::FT_BelongToPlane) {
3514       mySelectionMgr->installFilter(new GEOM_FaceFilter( aStudy, StdSelect_Plane ) );
3515
3516     } else if (aCriterionType == SMESH::FT_BelongToCylinder) {
3517       mySelectionMgr->installFilter(new GEOM_FaceFilter( aStudy, StdSelect_Cylinder ) );
3518     }
3519     myIsSelectionChanged = true;
3520
3521   }
3522   else
3523   {
3524     mySelector->SetSelectionMode( getSelMode( myTable->GetType() ));
3525
3526     if (myIsSelectionChanged) {
3527       // mySelectionMgr->installFilter( new GEOM_TypeFilter( aStudy, -1 ) ); // This filter deactivates selection
3528       // Impossible to select any object in the OB on the second opening of FilterDlg
3529     }
3530   }
3531 }
3532
3533 //=================================================================================
3534 // function : keyPressEvent()
3535 // purpose  :
3536 //=================================================================================
3537 void SMESHGUI_FilterDlg::keyPressEvent( QKeyEvent* e )
3538 {
3539   QDialog::keyPressEvent( e );
3540   if ( e->isAccepted() )
3541     return;
3542
3543   if ( e->key() == Qt::Key_F1 ) {
3544     e->accept();
3545     onHelp();
3546   }
3547 }