Salome HOME
Merge branch 'BR_HYDRO_IMPS_2016' of ssh://gitolite3@git.salome-platform.org/modules...
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_StricklerTableDlg.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #ifndef HYDROGUI_STRICKLERTABLEDLG_H
20 #define HYDROGUI_STRICKLERTABLEDLG_H
21
22 #include "HYDROGUI_InputPanel.h"
23 #include <QAbstractItemDelegate>
24 #include <Standard_Type.hxx>
25
26 class HYDROData_StricklerTable;
27
28 class QGroupBox;
29 class QLineEdit;
30 class QToolButton;
31 class QTableWidget;
32 class QtxFilePath;
33
34 class HYDROGUI_StricklerTableDlg : public HYDROGUI_InputPanel
35 {
36     Q_OBJECT
37
38 public:
39     enum { Edit, Import, Export };
40
41 public:
42     HYDROGUI_StricklerTableDlg( HYDROGUI_Module* theModule, const QString& theTitle, int theType );
43     virtual ~HYDROGUI_StricklerTableDlg();
44
45     void                       reset();
46
47     QString                    getFileName() const;
48     void                       setFileName( const QString& theName );
49
50     void                       setTableName( const QString& theName );
51     QString                    getTableName() const;
52
53     bool                       isTableNameReadOnly() const;
54     void                       setTableNameReadOnly( bool );
55
56     void                       getGuiData( Handle(HYDROData_StricklerTable)& theTable ) const;
57     void                       setGuiData( const Handle(HYDROData_StricklerTable)& theTable );
58
59 protected:
60     void                       updateControls();
61     void                       removeRows( const QList<int> theRows );
62
63 protected Q_SLOTS:
64     void                       onBrowse();
65
66     void                       onAddCoefficient();
67     void                       onRemoveCoefficient();
68     void                       onClearCoefficients();
69
70     void                       onSelectionChanged();
71
72 Q_SIGNALS:
73     void                       fileSelected( const QString& theFileName );
74
75 private:
76   friend class test_HYDROData_StricklerTable;
77
78 private:
79   int                        myType;
80   QLineEdit*                 myFileName;   //!< Source Strickler table file name input field
81   QLineEdit*                 myName;       //!< The Strickler table name input field
82   QLineEdit*                 myAttrName;   //!< The Strickler table attribute's name input field
83   QTableWidget*              myTable;      //!< The table of Strickler coefficients
84   QToolButton*               myAddBtn;     //!< The add Strickler coefficient button
85   QToolButton*               myRemoveBtn;  //!< The remove Strickler coefficient button
86   QToolButton*               myClearBtn;   //!< The clear all Strickler coefficients button
87 };
88
89 class HYDROGUI_ColorDelegate : public QAbstractItemDelegate
90 {
91 public:
92   HYDROGUI_ColorDelegate( QWidget* theParent );
93   virtual ~HYDROGUI_ColorDelegate();
94
95   virtual void paint( QPainter* thePainter, const QStyleOptionViewItem& theOption,
96                       const QModelIndex& theIndex ) const;
97
98   virtual QWidget* createEditor( QWidget* theParent,
99                                  const QStyleOptionViewItem& theOption,
100                                  const QModelIndex& theIndex ) const;
101
102   virtual void setEditorData( QWidget* theEditor, const QModelIndex& theIndex ) const;
103
104   virtual void setModelData( QWidget* theEditor, QAbstractItemModel* theModel,
105                              const QModelIndex& theIndex ) const;
106
107   virtual QSize sizeHint( const QStyleOptionViewItem& theOption, const QModelIndex& theIndex ) const;
108 };
109
110 #endif