Salome HOME
Merge remote-tracking branch 'remotes/origin/BR_LAND_COVER_MAP' into BR_SHP_FORMAT2
[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
25 class Handle_HYDROData_StricklerTable;
26
27 class QGroupBox;
28 class QLineEdit;
29 class QToolButton;
30 class QTableWidget;
31 class QtxFilePath;
32
33 class HYDROGUI_StricklerTableDlg : public HYDROGUI_InputPanel
34 {
35     Q_OBJECT
36
37 public:
38     enum { Edit, Import, Export };
39
40 public:
41     HYDROGUI_StricklerTableDlg( HYDROGUI_Module* theModule, const QString& theTitle, int theType );
42     virtual ~HYDROGUI_StricklerTableDlg();
43
44     void                       reset();
45
46     QString                    getFileName() const;
47     void                       setFileName( const QString& theName );
48
49     void                       setTableName( const QString& theName );
50     QString                    getTableName() const;
51
52     bool                       isTableNameReadOnly() const;
53     void                       setTableNameReadOnly( bool );
54
55     void                       getGuiData( Handle_HYDROData_StricklerTable& theTable ) const;
56     void                       setGuiData( const Handle_HYDROData_StricklerTable& theTable );
57
58 protected:
59     void                       updateControls();
60     void                       removeRows( const QList<int> theRows );
61
62 protected Q_SLOTS:
63     void                       onBrowse();
64
65     void                       onAddCoefficient();
66     void                       onRemoveCoefficient();
67     void                       onClearCoefficients();
68
69     void                       onSelectionChanged();
70
71 Q_SIGNALS:
72     void                       fileSelected( const QString& theFileName );
73
74 private:
75     int                        myType;
76     QLineEdit*                 myFileName;   //!< Source Strickler table file name input field
77     QLineEdit*                 myName;       //!< The Strickler table name input field
78     QLineEdit*                 myAttrName;   //!< The Strickler table attribute's name input field
79     QTableWidget*              myTable;      //!< The table of Strickler coefficients
80     QToolButton*               myAddBtn;     //!< The add Strickler coefficient button
81     QToolButton*               myRemoveBtn;  //!< The remove Strickler coefficient button
82     QToolButton*               myClearBtn;   //!< The clear all Strickler coefficients button
83 };
84
85 class HYDROGUI_ColorDelegate : public QAbstractItemDelegate
86 {
87 public:
88   HYDROGUI_ColorDelegate( QWidget* theParent );
89   virtual ~HYDROGUI_ColorDelegate();
90
91   virtual void paint( QPainter* thePainter, const QStyleOptionViewItem& theOption,
92                       const QModelIndex& theIndex ) const;
93
94   virtual QWidget* createEditor( QWidget* theParent,
95                                  const QStyleOptionViewItem& theOption,
96                                  const QModelIndex& theIndex ) const;
97
98   virtual void setEditorData( QWidget* theEditor, const QModelIndex& theIndex ) const;
99
100   virtual void setModelData( QWidget* theEditor, QAbstractItemModel* theModel,
101                              const QModelIndex& theIndex ) const;
102
103   virtual QSize sizeHint( const QStyleOptionViewItem& theOption, const QModelIndex& theIndex ) const;
104 };
105
106 #endif