3 // Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 // File : StdMeshersGUI_DistrTable.h
28 #ifndef StdMesherGUI_DistrTable_Header
29 #define StdMesherGUI_DistrTable_Header
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SMESH_Mesh)
37 class QtxDblValidator;
40 * \brief Values corresponding to buttons for table resize
42 typedef enum { INSERT_ROW, REMOVE_ROW } TableButton;
45 * \brief This class represents custom table. It has only double values and
46 editor for every cell has validator
48 class StdMeshersGUI_DistrTable : public QTable
53 StdMeshersGUI_DistrTable( const int rows, QWidget* = 0, const char* = 0 );
54 virtual ~StdMeshersGUI_DistrTable();
57 * \brief Hides current editor of cell
59 void stopEditing( const bool accept );
61 virtual QSize sizeHint() const;
63 static void sortData( SMESH::double_array& );
65 void data( SMESH::double_array& );
66 void setData( const SMESH::double_array& );
68 QtxDblValidator* argValidator() const;
69 QtxDblValidator* funcValidator() const;
72 virtual QWidget* createEditor( int, int, bool ) const;
73 virtual bool eventFilter( QObject*, QEvent* );
74 virtual void keyPressEvent( QKeyEvent* );
75 virtual QWidget* beginEdit( int row, int col, bool replace );
76 virtual void edit( const int, const int );
79 void onEdit( TableButton, int );
82 QtxDblValidator *myArgV, *myFuncV;
87 * \brief This class represents frame for table and buttons
89 class StdMeshersGUI_DistrTableFrame : public QFrame
94 StdMeshersGUI_DistrTableFrame( QWidget* );
95 ~StdMeshersGUI_DistrTableFrame();
97 StdMeshersGUI_DistrTable* table() const;
100 * \brief Changes shown state of some button for table resize
102 void setShown( const TableButton, const bool );
105 * \brief Returns shown state of some button for table resize
107 bool isShown( const TableButton ) const;
110 QButton* button( const TableButton ) const;
113 void onButtonClicked();
117 * \brief This signal is emitted if some of button for table resize is clicked
118 * Second parameter is current row. Take into account that
119 * this object resize table ( returned by table() ) automatically
121 void toEdit( TableButton, int );
122 void valueChanged( int, int );
125 QButton *myInsertRow, *myRemoveRow;
126 StdMeshersGUI_DistrTable *myTable;