]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_ImportLandCoverMapDlg.h
Salome HOME
LCM // Import/Export of SHP p.5
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ImportLandCoverMapDlg.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
20 #ifndef HYDROGUI_ImportLandCoverMapDlg_H
21 #define HYDROGUI_ImportLandCoverMapDlg_H
22
23 #include "HYDROGUI_Wizard.h"
24 #include <qvector.h>
25
26 class QListWidget;
27 class QLineEdit;
28 class QGroupBox;
29 class QComboBox;
30 class QLabel;
31 class QTableWidget;
32 class QCheckBox;
33
34
35 class HYDROGUI_ImportLandCoverMapDlg : public HYDROGUI_Wizard
36 {
37   Q_OBJECT
38
39 public:
40   HYDROGUI_ImportLandCoverMapDlg( HYDROGUI_Module* theModule, const QString& theTitle );
41   virtual ~HYDROGUI_ImportLandCoverMapDlg();
42
43   void                  reset();
44
45   void                  setPolygonNames( const QStringList& theNames );
46   void                  setSelectedPolygonNames( const QStringList& theNames );
47   void                  setAttributeNames( const QStringList& theAttrNames );
48   void                  FillCorrTable(const QStringList& theFirstColumn, 
49                                       const QStringList& theSecondColumn,
50                                       const QVector<QColor> theColors);
51
52   QStringList           getSelectedPolygonNames() const;
53   QString               getSelectedFieldName() const;
54
55   void                  setObjectName( const QString& theName );
56   QString               getObjectName() const;
57
58   void                  setFileName( const QString& theFileName );
59   QString               getFileName() const;
60
61   void                  setFirstPageState(bool bState);
62   bool                  getAttrCheckBoxState() const;
63   void                  GetAttribute2StricklerCorr(QStringList& AttrValues, QStringList& ST);
64   QVector<int>          getSelectedPolygonIndices() const;
65
66   void                  setDbfState(bool _state);
67   bool                  getDbfState() const;
68
69 signals:
70   void                  FileSelected( const QString& theFileName );
71   void                  selectionChanged( const QStringList& );
72
73 protected slots:
74   void                  onBrowse();
75   void                  onItemSelectionChanged();
76   void                  onAttrCBChecked(bool theState);
77   void                  OnComboBoxColorChanged(int theInd);
78
79 protected:
80   bool                  acceptCurrent() const;
81
82 private:
83
84   QWizardPage*          createPage1();
85   QWizardPage*          createPage2();
86   QWizardPage*          createPage3();
87
88   //First page
89   QLineEdit*            myFileName; 
90   QGroupBox*            myFileNameGroup;
91   QListWidget*          myPolygons;     
92   QGroupBox*            myObjectNameGroup;
93   QLineEdit*            myObjectName;
94   QCheckBox*            myAttrCheckBox;
95
96   //Second page
97   QListWidget*          myDBFAttr; 
98   QLabel*               myAvAttrLabel;
99
100   //Third page
101   QLabel*               myCLabel;
102   QTableWidget*         myTableW;
103
104   //State of the first page
105   bool                  myFirstPageState;
106   QVector<QColor>       myStrColors;
107   bool                  myDbfState;
108 };
109
110 #endif