Salome HOME
LCM // Import/Export of SHP p.2
[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
25 class QListWidget;
26 class QLineEdit;
27 class QGroupBox;
28 class QComboBox;
29 class QLabel;
30 class QTableWidget;
31
32 class HYDROGUI_ImportLandCoverMapDlg : public HYDROGUI_Wizard
33 {
34   Q_OBJECT
35
36 public:
37   HYDROGUI_ImportLandCoverMapDlg( HYDROGUI_Module* theModule, const QString& theTitle );
38   virtual ~HYDROGUI_ImportLandCoverMapDlg();
39
40   void reset();
41
42   void setPolygonNames( const QStringList& theNames );
43   void removePolygonNames( const QStringList& theNames );
44
45   void setSelectedPolygonNames( const QStringList& theNames );
46
47   void setAttributeNames( const QStringList& theAttrNames );
48
49   void FillCorrTable(const QStringList& theFirstColumn, const QStringList& theSecondColumn);
50
51   QStringList getSelectedPolygonNames() const;
52   QString getSelectedFieldName() const;
53
54   void                       setObjectName( const QString& theName );
55   QString                    getObjectName() const;
56
57   void                       setFileName( const QString& theFileName );
58   QString                    getFileName() const;
59
60 signals:
61   void                       FileSelected( const QString& theFileName );
62
63 protected slots:
64   void                       onBrowse();
65
66   
67 signals:
68   void selectionChanged( const QStringList& );
69
70 public slots:
71   void onItemSelectionChanged();
72
73 private:
74
75   QWizardPage*               createPage1();
76   QWizardPage*               createPage2();
77   QWizardPage*               createPage3();
78
79   QLineEdit*                 myFileName; 
80   QGroupBox*                 myFileNameGroup;
81   QListWidget*               myPolygons;        
82
83   QGroupBox*                 myObjectNameGroup;
84   QLineEdit*                 myObjectName;
85
86   //second page
87   QGroupBox*                 myAttrNameGroup;
88   QListWidget*               myDBFAttr; 
89   QGroupBox*                 myCorrNameGroup;
90
91   //third page
92   QLabel*                    myCLabel;
93   QTableWidget*              myTableW;
94
95
96 };
97
98 #endif