]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_LandCoverMapDlg.h
Salome HOME
refs #688, #689: bugs fixes.
[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   void                     updateSelectedLandCoversLabel( int theNbSelected );
56
57   virtual bool             isOk( const Handle(HYDROData_Entity)& ) const;
58
59 signals:
60   void                     landCoverMapChanged( const QString& theName );
61
62 private slots:
63   void                     onLandCoverMapChanged();
64   void                     onPolylineFaceChanged( const QString& );
65
66 private:
67   void                     updateState( bool theInitialConfigure = false );
68
69 private:
70   int                             myOperationId;
71   QGroupBox*                      myObjectNameGroup;  
72   QLineEdit*                      myObjectNameCreate;
73   QComboBox*                      myObjectNameEdit;
74
75   QGroupBox*                      myParamGroup;
76   QLabel*                         myPolylinesFacesLabel;
77   HYDROGUI_ObjComboBox*           myPolylinesFaces;
78   QLabel*                         myStricklerTypesLabel;
79   HYDROGUI_StricklerTypeComboBox* myStricklerTypes;
80   QLabel*                         mySelectedLandCoversLabel;
81 };
82
83 #endif