Salome HOME
IPAL 12085: It is impossible to set "Threshold value" in the "Selection filter librar...
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_FilterLibraryDlg.h
index 88b52661c1da6222a647227d6d5f5e6daa252f3b..cc5d1f7ce6b32f9ef4fadde6c456c26b95556992 100644 (file)
@@ -1,59 +1,62 @@
-//  SMESH SMESHGUI : GUI for SMESH component
+// Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-//  File   : SMESHGUI_FilterLibraryDlg.h
-//  Author : Sergey LITONIN
-//  Module : SMESH
 
+// SMESH SMESHGUI : GUI for SMESH component
+// File   : SMESHGUI_FilterLibraryDlg.h
+// Author : Sergey LITONIN, Open CASCADE S.A.S.
+//
+#ifndef SMESHGUI_FILTERLIBRARYDLG_H
+#define SMESHGUI_FILTERLIBRARYDLG_H
 
-#ifndef SMESHGUI_FilterLibraryDlg_H
-#define SMESHGUI_FilterLibraryDlg_H
+// SMESH includes
+#include "SMESH_SMESHGUI.hxx"
 
-#include <qdialog.h>
-#include <SMESHGUI_FilterDlg.h>
+// Qt includes
+#include <QDialog>
+#include <QList>
+#include <QMap>
 
+// IDL includes
 #include <SALOMEconfig.h>
 #include CORBA_SERVER_HEADER(SMESH_Filter)
 
-class QCloseEvent;
-class QListBox;
-class QFrame;
-class QEvent;
+class QListWidget;
+class QListWidgetItem;
 class QLineEdit;
 class QPushButton;
-class QGroupBox;
+class SMESHGUI;
+class SMESHGUI_FilterTable;
 
 /*
   Class       : SMESHGUI_FilterLibraryDlg
   Description : Dialog to specify filters for VTK viewer
 */
 
-class SMESHGUI_FilterLibraryDlg : public QDialog
+class SMESHGUI_EXPORT SMESHGUI_FilterLibraryDlg : public QDialog
 { 
   Q_OBJECT
   
   // Buttons
-  enum { BTN_OK, BTN_Cancel, BTN_Apply, BTN_Close };
+  enum { BTN_OK, BTN_Apply, BTN_Close, BTN_Help };
 
   class Dialog;
   
@@ -63,55 +66,47 @@ public:
   enum { ADD_TO, COPY_FROM, EDIT };
     
 public:
-  
-                              SMESHGUI_FilterLibraryDlg( QWidget*               parent,
-                                                         const QValueList<int>& types,
-                                                         const int              mode,
-                                                         const char*            name = 0 );
-                                                
-                              SMESHGUI_FilterLibraryDlg( QWidget*               parent,
-                                                         const int              type,
-                                                         const int              mode,
-                                                         const char*            name = 0 );
-                                                         
-  virtual                     ~SMESHGUI_FilterLibraryDlg();
+  SMESHGUI_FilterLibraryDlg( SMESHGUI*, QWidget*, const QList<int>&, const int );
+  SMESHGUI_FilterLibraryDlg( SMESHGUI*, QWidget*, const int, const int );
+  virtual ~SMESHGUI_FilterLibraryDlg();
                             
-  void                        Init( const QValueList<int>& types, const int theMode );
-  void                        Init( const int type, const int theMode );
+  void                        Init( const QList<int>&, const int );
+  void                        Init( const int, const int );
   
   const SMESHGUI_FilterTable* GetTable() const;
   void                        SetTable( const SMESHGUI_FilterTable* );
 
 private:
-
-  void                        closeEvent( QCloseEvent* e ) ;
-  void                        enterEvent ( QEvent * ) ;            
+  void                        enterEvent( QEvent* );            
+  void                        keyPressEvent( QKeyEvent* );
   
-private slots:
+protected slots:
+  virtual void                reject();
 
+private slots:
   void                        onOk();
   bool                        onApply();
-  void                        onClose();
+  void                        onHelp();
 
   void                        onDeactivate();
   
   void                        onBrowse();
   void                        onReturnPressed();
-  void                        onFilterChanged( const QString& );
+  void                        onFilterChanged();
   void                        onAddBtnPressed();
   void                        onDeleteBtnPressed();
   void                        onFilterNameChanged( const QString& );
   void                        onEntityTypeChanged( const int );
   void                        onNeedValidation();
+  void                        onSelectionDone();
 
 private:
-
-  void                        construct( const QValueList<int>& types, const int mode ); 
-  QFrame*                     createButtonFrame( QWidget* );
-  QFrame*                     createMainFrame  ( QWidget* );
-  bool                        isValid( const bool theMess = true ) const;
-  bool                        isNameValid( const bool theMess = true ) const;
-  SMESH::Filter_ptr           createFilter( const int theType = -1 );
+  void                        construct( const QList<int>&, const int ); 
+  QWidget*                    createButtonFrame( QWidget* );
+  QWidget*                    createMainFrame( QWidget* );
+  bool                        isValid( const bool = true ) const;
+  bool                        isNameValid( const bool = true ) const;
+  SMESH::Filter_ptr           createFilter( const int = -1 );
   QStringList                 prepareFilters() const;
   QString                     autoExtension( const QString& ) const;
   bool                        setSelected( const QString& );
@@ -121,34 +116,36 @@ private:
   void                        enableMainButtons();
   void                        processNewLibrary();
   QString                     getFileName() const;
-  void                        setFileName( const QString& txt, const bool autoExtension = true );
-  QStringList                 filterWildCards( const QString& theFilter ) const;
+  void                        setFileName( const QString&, const bool = true );
+  QStringList                 filterWildCards( const QString& ) const;
   QString&                    getDefaultLibraryName() const;
   QString                     getDefaultFilterName() const;
-  void                        addFilterToLib( const QString& name );
+  void                        addFilterToLib( const QString& );
   void                        updateList();
-  bool                        isPermissionValid( const bool theIsExistingOnly );
+  bool                        isPermissionValid( const bool );
 
 private:
 
-  QFrame*                     myMainFrame;
+  QWidget*                    myMainFrame;
   QMap<int, QPushButton*>     myButtons;
   SMESHGUI_FilterTable*       myTable;
   QLineEdit*                  myFileName;
   QPushButton*                myOpenBtn;
-  QListBox*                   myListBox;
+  QListWidget*                myListBox;
   QPushButton*                myAddBtn;
   QPushButton*                myDeleteBtn;
-  QGroupBox*                  myNameGrp;
+  QWidget*                    myNameGrp;
   QLineEdit*                  myName;
+  SMESHGUI*                   mySMESHGUI;
 
-  QValueList<int>             myTypes;
+  QList<int>                  myTypes;
   int                         myMode;
       
   SMESH::FilterLibrary_var    myLibrary;
   QString                     myCurrFilterName;
   int                         myCurrFilter;
 
+  QString                     myHelpFileName;
 };
 
-#endif
+#endif // SMESHGUI_FILTERLIBRARYDLG_H