Salome HOME
refs #1457
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileInterpolateDlg.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_PROFILEINTERPOLATEDLG_H
20 #define HYDROGUI_PROFILEINTERPOLATEDLG_H
21
22 #include "HYDROGUI_ViewerDlg.h"
23 #include "HYDROGUI_ObjComboBox.h"
24 #include <QSet>
25
26 class QSpinBox;
27 class QLineEdit;
28 class QComboBox;
29 class QTextEdit;
30
31 class HYDROGUI_ProfileInterpolateDlg : public HYDROGUI_ViewerDlg, public HYDROGUI_ObjComboBoxFilter
32 {
33   Q_OBJECT
34
35 public:
36   HYDROGUI_ProfileInterpolateDlg( HYDROGUI_Module* theModule, const QString& theTitle );
37   virtual ~HYDROGUI_ProfileInterpolateDlg();
38
39   QString                interpolator() const;
40   void                   setInterpolator( const QString& );
41   void                   setInterpolators( const QStringList& );
42
43   QString                interpolatorDescription() const;
44   void                   setInterpolatorDescription( const QString& );
45
46   QString                interpolatorParameters() const;
47   void                   setInterpolatorParameters( const QString& );
48
49   QString                river() const;
50   void                   setRiver( const QString& );
51
52   QString                profileStart() const;
53   void                   setProfileStart( const QString& );
54
55   QString                profileFinish() const;
56   void                   setProfileFinish( const QString& );
57
58   int                    profileNumber() const;
59   void                   setProfileNumber( int );
60
61   void                   reset();
62
63   virtual bool           isActive( HYDROGUI_ObjComboBox* ) const;
64   virtual bool           isOk( const Handle(HYDROData_Entity)& ) const;
65
66 signals:
67   void                   riverChanged( const QString& );
68   void                   interpolatorChanged( const QString& );
69   void                   interpolatorParametersChanged( const QString& );
70
71   void                   profileNumberChanged( int );
72   void                   profileStartChanged( const QString& );
73   void                   profileFinishChanged( const QString& );
74
75 private slots:
76   void                   onParametersEditingFinished();
77   void                   onRiverChanged( const QString& );
78   void                   onInterpolatorIndexChanged( int );
79   void                   onProfileChanged( const QString& );
80
81 private:
82   void                   updateState();
83   HYDROGUI_ObjComboBox*  activeProfile() const;
84
85 private:
86   typedef QSet<QString> RiverProfiles;
87
88 private:
89   HYDROGUI_ObjComboBox*  myRiver;
90   QComboBox*             myIntrp;
91   QTextEdit*             myDescr;
92   QLineEdit*             myParams;
93
94   HYDROGUI_ObjComboBox*  myProfileStart;
95   HYDROGUI_ObjComboBox*  myProfileFinish;
96   QSpinBox*              myProfileNumber;
97
98   RiverProfiles          myRiverProfiles;
99 };
100
101 #endif