Salome HOME
fef70326d6f887f42ab82dee11f99874eee8ddb7
[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
24 class HYDROData_StricklerTable;
25
26 class QGroupBox;
27 class QLineEdit;
28 class QToolButton;
29 class QTableWidget;
30
31 class HYDROGUI_StricklerTableDlg : public HYDROGUI_InputPanel
32 {
33   Q_OBJECT
34
35 public:
36   struct StricklerCoefficient
37   {
38     QString myType;
39         double  myCoefficient;
40
41     StricklerCoefficient(  const QString& theType,
42                            double theCoefficient )
43       : myType( theType ), myCoefficient( theCoefficient ) {}
44   };
45   typedef QList<StricklerCoefficient> StricklerCoefficientList;
46
47 public:
48   HYDROGUI_StricklerTableDlg( HYDROGUI_Module* theModule, const QString& theTitle );
49   virtual ~HYDROGUI_StricklerTableDlg();
50
51   void                       setIsEdit( const bool theIsEdit );
52   void                       reset();
53
54   QString                    getFileName() const;
55   void                       setFileName( const QString& theName );
56
57   void                       setStricklerTableName( const QString& theName );
58   QString                    getStricklerTableName() const;
59
60   void                       setData(const StricklerCoefficientList& theData);
61
62 protected:
63   void                       updateControls();
64   void                       removeRows( const QList<int> theRows );
65
66 protected slots:
67   void                       onBrowse();
68
69   void                       onAddCoefficient();
70   void                       onRemoveCoefficient();
71   void                       onClearCoefficients();
72
73   void                       onSelectionChanged();
74
75 signals:
76   void                       fileSelected( const QString& theFileName );
77
78 private:
79   QGroupBox*                 myFileNameGroup;    //!< The group for the source Strickler table file selection
80   QLineEdit*                 myFileName;         //!< Source Strickler table file name input field
81   QToolButton*               myBrowseBtn;
82
83   QGroupBox*                 myNameGroup;   //!< The group for the Strickler table name input field
84   QLineEdit*                 myName;        //!< The Strickler table name input field
85
86   QGroupBox*                 myTableGroup; //!< The group for the Strickler table table control and buttons
87   QTableWidget*              myTable;      //!< The table of Strickler coefficients
88   QToolButton*               myAddBtn;     //!< The add Strickler coefficient button
89   QToolButton*               myRemoveBtn;  //!< The remove Strickler coefficient button
90   QToolButton*               myClearBtn;   //!< The clear all Strickler coefficients button
91 };
92
93 #endif