Salome HOME
101c1f85e5ad8c77128a0b90ce5df3c1fbe940a7
[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 #ifndef HYDROGUI_LANDCOVERMAPDLG_H
20 #define HYDROGUI_LANDCOVERMAPDLG_H
21
22 #include <HYDROGUI_InputPanel.h>
23 #include <HYDROGUI_LandCoverArgsFilter.h>
24
25 class HYDROGUI_StricklerTypeComboBox;
26
27 class QGroupBox;
28 class QLineEdit;
29 class QLabel;
30
31 class HYDROGUI_LandCoverMapDlg : public HYDROGUI_InputPanel
32 {
33   Q_OBJECT
34
35 public:
36   HYDROGUI_LandCoverMapDlg( HYDROGUI_Module* theModule, const QString& theTitle, const int theOperationId );
37   virtual ~HYDROGUI_LandCoverMapDlg();
38
39   virtual void             reset();
40
41   void                     setObjectNames( const QStringList& theNames );
42   void                     setObjectName( const QString& theName );
43   QString                  getObjectName() const;
44
45   QString                  getPolylineFaceName() const;
46   void                     setPolylineFaceName( const QString& );
47   Handle(HYDROData_Entity) getPolylineFace() const;
48
49   void                     setSelectedStricklerTypeName( const QString& theName );
50   QString                  getSelectedStricklerTypeName() const;
51
52   void                     updateSelectedLandCoversLabel( int theNbSelected );
53
54 signals:
55   void                     landCoverMapChanged( const QString& theName );
56
57 private slots:
58   void                     onLandCoverMapChanged();
59   void                     onPolylineFaceChanged( const QString& );
60
61 private:
62   void                     updateState( bool theInitialConfigure = false );
63
64 private:
65   int                             myOperationId;
66   QGroupBox*                      myObjectNameGroup;  
67   QLineEdit*                      myObjectNameCreate;
68   QComboBox*                      myObjectNameEdit;
69
70   QGroupBox*                      myParamGroup;
71   QLabel*                         myPolylinesFacesLabel;
72   HYDROGUI_ObjComboBox*           myPolylinesFaces;
73   QLabel*                         myStricklerTypesLabel;
74   HYDROGUI_StricklerTypeComboBox* myStricklerTypes;
75   QLabel*                         mySelectedLandCoversLabel;
76   HYDROGUI_LandCoverArgsFilter    myFilter;
77 };
78
79 #endif