Salome HOME
Merge branch 'BR_LCM_COMP' into HEAD
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_LandCoverMapDlg.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 // REMOVED FROM THE PROJECT, BUT KEPT AS A REFERENCE FILE. TO BE DELETED LATER.
20
21 #ifndef HYDROGUI_LANDCOVERMAPDLG_H
22 #define HYDROGUI_LANDCOVERMAPDLG_H
23
24 #include "HYDROGUI_InputPanel.h"
25
26 #include "HYDROGUI_ObjComboBox.h"
27
28 class HYDROGUI_StricklerTypeComboBox;
29
30 class QGroupBox;
31 class QLineEdit;
32 class QLabel;
33
34 class HYDROGUI_LandCoverMapDlg : public HYDROGUI_InputPanel, public HYDROGUI_ObjComboBoxFilter
35 {
36   Q_OBJECT
37
38 public:
39   HYDROGUI_LandCoverMapDlg( HYDROGUI_Module* theModule, const QString& theTitle, const int theOperationId );
40   virtual ~HYDROGUI_LandCoverMapDlg();
41
42   virtual void             reset();
43
44   void                     setObjectNames( const QStringList& theNames );
45   void                     setObjectName( const QString& theName );
46   QString                  getObjectName() const;
47
48   QString                  getPolylineFaceName() const;
49   void                     setPolylineFaceName( const QString& );
50   Handle(HYDROData_Entity) getPolylineFace() const;
51
52   void                     setSelectedStricklerTypeName( const QString& theName );
53   QString                  getSelectedStricklerTypeName() const;
54
55   virtual bool             isOk( const Handle(HYDROData_Entity)& ) const;
56
57 signals:
58   void                     landCoverMapChanged( const QString& theName );
59
60 private slots:
61   void                     onLandCoverMapChanged();
62   void                     onPolylineFaceChanged( const QString& );
63
64 private:
65   void                     updateState( bool theInitialConfigure = false );
66
67 private:
68   int                             myOperationId;
69   QGroupBox*                      myObjectNameGroup;  
70   QLineEdit*                      myObjectNameCreate;
71   QComboBox*                      myObjectNameEdit;
72
73   QGroupBox*                      myParamGroup;
74   QLabel*                         myPolylinesFacesLabel;
75   HYDROGUI_ObjComboBox*           myPolylinesFaces;
76   QLabel*                         myStricklerTypesLabel;
77   HYDROGUI_StricklerTypeComboBox* myStricklerTypes;
78 };
79
80 #endif