Salome HOME
lot 12 GUI p.1
[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   void                     polylineFaceChanged();
57
58 private slots:
59   void                     onLandCoverMapChanged();
60   void                     onPolylineFaceChanged();
61
62 private:
63   void                     updateState( bool theInitialConfigure = false );
64
65 private:
66   int                             myOperationId;
67   QGroupBox*                      myObjectNameGroup;  
68   QLineEdit*                      myObjectNameCreate;
69   QComboBox*                      myObjectNameEdit;
70
71   QGroupBox*                      myParamGroup;
72   QLabel*                         myPolylinesFacesLabel;
73   HYDROGUI_ObjComboBox*           myPolylinesFaces;
74   QLabel*                         myStricklerTypesLabel;
75   HYDROGUI_StricklerTypeComboBox* myStricklerTypes;
76   QLabel*                         mySelectedLandCoversLabel;
77   HYDROGUI_LandCoverArgsFilter    myFilter;
78 };
79
80 #endif