Salome HOME
c3597dfe2df7a568bd636be59e3c1ad8f8bae1d9
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_DistrTable.h
1 //  SMESH StdMeshersGUI
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : StdMeshersGUI_DistrTable.h
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef StdMesherGUI_DistrTable_Header
29 #define StdMesherGUI_DistrTable_Header
30
31 #include <qtable.h>
32
33 #include <SALOMEconfig.h>
34 #include CORBA_SERVER_HEADER(SMESH_Mesh)
35
36 class QButton;
37 class QtxDblValidator;
38
39 /*!
40  *  \brief Values corresponding to buttons for table resize
41  */
42 typedef enum { INSERT_ROW, REMOVE_ROW } TableButton;
43
44 /*!
45  *  \brief This class represents custom table. It has only double values and
46     editor for every cell has validator
47  */
48 class StdMeshersGUI_DistrTable : public QTable
49 {
50   Q_OBJECT
51   
52 public:
53   StdMeshersGUI_DistrTable( const int rows, QWidget* = 0, const char* = 0 );
54   virtual ~StdMeshersGUI_DistrTable();
55
56 /*!
57  *  \brief Hides current editor of cell
58  */
59   void stopEditing( const bool accept );
60  
61   virtual QSize sizeHint() const;
62
63   static void sortData( SMESH::double_array& );
64
65   void data( SMESH::double_array& );
66   void setData( const SMESH::double_array& );
67
68   QtxDblValidator* argValidator() const;
69   QtxDblValidator* funcValidator() const;
70
71 protected:
72   virtual QWidget* createEditor( int, int, bool ) const;
73   virtual bool     eventFilter( QObject*, QEvent* );
74   virtual void     keyPressEvent( QKeyEvent* );
75   virtual void     edit( const int, const int );
76
77 private slots:
78   void onEdit( TableButton, int );
79
80 private:
81   QtxDblValidator   *myArgV, *myFuncV;
82 };
83
84
85 /*!
86  *  \brief This class represents frame for table and buttons
87  */
88 class StdMeshersGUI_DistrTableFrame : public QFrame
89 {
90   Q_OBJECT
91
92 public:
93   StdMeshersGUI_DistrTableFrame( QWidget* );
94   ~StdMeshersGUI_DistrTableFrame();
95
96   StdMeshersGUI_DistrTable* table() const;
97
98 /*!
99  *  \brief Changes shown state of some button for table resize
100  */   
101   void setShown( const TableButton, const bool );
102
103 /*!
104  *  \brief Returns shown state of some button for table resize
105  */
106   bool isShown( const TableButton ) const;
107   
108 private:
109   QButton* button( const TableButton ) const;
110
111 private slots:
112   void onButtonClicked();
113   
114 signals:
115 /*!
116  *  \brief This signal is emitted if some of button for table resize is clicked
117  *         Second parameter is current row. Take into account that
118  *         this object resize table ( returned by table() ) automatically
119  */
120   void toEdit( TableButton, int );
121   void valueChanged( int, int );
122
123 private:
124   QButton                   *myInsertRow, *myRemoveRow;
125   StdMeshersGUI_DistrTable  *myTable;
126 };
127
128 #endif
129