Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_DistrTable.h
index a6f7f6106c3f9a075a7eeae70a09c511438d9ac0..92432856bb48a6732619eba1473fe6390d9c382e 100644 (file)
-//  SMESH StdMeshersGUI
+// Copyright (C) 2007-2011  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.
 //
+// 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.
 //
-//  File   : StdMeshersGUI_DistrTable.h
-//  Module : SMESH
-//  $Header$
+// 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   : StdMeshersGUI_DistrTable.h
+// Author : Open CASCADE S.A.S.
+//
+#ifndef STDMESHERSGUI_DISTRTABLE_H
+#define STDMESHERSGUI_DISTRTABLE_H
 
-#ifndef StdMesherGUI_DistrTable_Header
-#define StdMesherGUI_DistrTable_Header
+// SMESH includes
+#include "SMESH_StdMeshersGUI.hxx"
 
-#include <qtable.h>
+// Qt includes
+#include <QWidget>
+#include <QList>
+#include <QMap>
 
+// IDL includes
 #include <SALOMEconfig.h>
 #include CORBA_SERVER_HEADER(SMESH_Mesh)
 
-class QButton;
-class QtxDblValidator;
-
-/*!
- *  \brief Values corresponding to buttons for table resize
- */
-typedef enum { INSERT_ROW, REMOVE_ROW } TableButton;
+class QPushButton;
 
-/*!
- *  \brief This class represents custom table. It has only double values and
-    editor for every cell has validator
- */
-class StdMeshersGUI_DistrTable : public QTable
+class StdMeshersGUI_DistrTableFrame : public QWidget
 {
   Q_OBJECT
-  
-public:
-  StdMeshersGUI_DistrTable( const int rows, QWidget* = 0, const char* = 0 );
-  virtual ~StdMeshersGUI_DistrTable();
-
-/*!
- *  \brief Hides current editor of cell
- */
-  void stopEditing( const bool accept );
-  virtual QSize sizeHint() const;
-
-  static void sortData( SMESH::double_array& );
-
-  void data( SMESH::double_array& );
-  void setData( const SMESH::double_array& );
-
-  QtxDblValidator* argValidator() const;
-  QtxDblValidator* funcValidator() const;
-
-protected:
-  virtual QWidget* createEditor( int, int, bool ) const;
-  virtual bool     eventFilter( QObject*, QEvent* );
-  virtual void     keyPressEvent( QKeyEvent* );
-  virtual QWidget* beginEdit( int row, int col, bool replace );
-  virtual void     edit( const int, const int );
 
-private slots:
-  void onEdit( TableButton, int );
-
-private:
-  QtxDblValidator   *myArgV, *myFuncV;
-};
+  enum { ArgColumn, FuncColumn };
 
+  class Table;
+  class SpinBoxDelegate;
 
-/*!
- *  \brief This class represents frame for table and buttons
- */
-class StdMeshersGUI_DistrTableFrame : public QFrame
-{
-  Q_OBJECT
+  typedef SMESH::double_array DataArray;
 
 public:
-  StdMeshersGUI_DistrTableFrame( QWidget* );
+  typedef enum { InsertRowBtn, RemoveRowBtn } TableButton;
+  
+  StdMeshersGUI_DistrTableFrame( QWidget* = 0 );
   ~StdMeshersGUI_DistrTableFrame();
 
-  StdMeshersGUI_DistrTable* table() const;
+  void         showButton( const TableButton, const bool );
+  bool         isButtonShown( const TableButton ) const;
 
-/*!
- *  \brief Changes shown state of some button for table resize
- */   
-  void setShown( const TableButton, const bool );
+  void         data( DataArray& ) const;
+  void         setData( const DataArray& );
+
+  void         setFuncMinValue( double );
 
-/*!
- *  \brief Returns shown state of some button for table resize
- */
-  bool isShown( const TableButton ) const;
-  
 private:
-  QButton* button( const TableButton ) const;
+  QPushButton* button( const TableButton ) const;
 
 private slots:
-  void onButtonClicked();
-  
+  void onInsert();
+  void onRemove();
+
 signals:
-/*!
- *  \brief This signal is emitted if some of button for table resize is clicked
- *         Second parameter is current row. Take into account that
- *         this object resize table ( returned by table() ) automatically
- */
-  void toEdit( TableButton, int );
-  void valueChanged( int, int );
+  void         valueChanged( int, int );
+  void         currentChanged( int, int );
 
 private:
-  QButton                   *myInsertRow, *myRemoveRow;
-  StdMeshersGUI_DistrTable  *myTable;
+  QMap<int, QPushButton*>   myButtons;
+  Table*                    myTable;
 };
 
-#endif
-
+#endif // STDMESHERSGUI_DISTRTABLE_H