Salome HOME
Display river profiles in embedded viewer.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ProfileInterpolateDlg.h
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef HYDROGUI_PROFILEINTERPOLATEDLG_H
24 #define HYDROGUI_PROFILEINTERPOLATEDLG_H
25
26 #include "HYDROGUI_ViewerDlg.h"
27
28 #include "HYDROGUI_ObjComboBox.h"
29
30 #include <AIS_InteractiveContext.hxx>
31
32 #include <QSet>
33
34 class QSpinBox;
35 class QLineEdit;
36 class QComboBox;
37 class QTextEdit;
38
39 class HYDROGUI_ProfileInterpolateDlg : public HYDROGUI_ViewerDlg, public HYDROGUI_ObjComboBoxFilter
40 {
41   Q_OBJECT
42
43 public:
44   HYDROGUI_ProfileInterpolateDlg( HYDROGUI_Module* theModule, const QString& theTitle );
45   virtual ~HYDROGUI_ProfileInterpolateDlg();
46
47   QString                interpolator() const;
48   void                   setInterpolator( const QString& );
49   void                   setInterpolators( const QStringList& );
50
51   QString                interpolatorDescription() const;
52   void                   setInterpolatorDescription( const QString& );
53
54   QString                interpolatorParameters() const;
55   void                   setInterpolatorParameters( const QString& );
56
57   QString                river() const;
58   void                   setRiver( const QString& );
59
60   QString                profileStart() const;
61   void                   setProfileStart( const QString& );
62
63   QString                profileFinish() const;
64   void                   setProfileFinish( const QString& );
65
66   int                    profileNumber() const;
67   void                   setProfileNumber( int );
68
69   void                   reset();
70
71   virtual bool           isActive( HYDROGUI_ObjComboBox* ) const;
72   virtual bool           isOk( const Handle(HYDROData_Entity)& ) const;
73
74 signals:
75   void                   riverChanged( const QString& );
76   void                   interpolatorChanged( const QString& );
77   void                   interpolatorParametersChanged( const QString& );
78
79   void                   profileNumberChanged( int );
80   void                   profileStartChanged( const QString& );
81   void                   profileFinishChanged( const QString& );
82
83 private slots:
84   void                   onRiverChanged( const QString& );
85   void                   onInterpolatorIndexChanged( int );
86   void                   onProfileChanged( const QString& );
87
88 private:
89   void                   updateState();
90   HYDROGUI_ObjComboBox*  activeProfile() const;
91
92 private:
93   typedef QSet<QString> RiverProfiles;
94
95 private:
96   HYDROGUI_ObjComboBox*  myRiver;
97   QComboBox*             myIntrp;
98   QTextEdit*             myDescr;
99   QLineEdit*             myParams;
100
101   HYDROGUI_ObjComboBox*  myProfileStart;
102   HYDROGUI_ObjComboBox*  myProfileFinish;
103   QSpinBox*              myProfileNumber;
104
105   RiverProfiles          myRiverProfiles;
106 };
107
108 #endif