Salome HOME
bug #702
[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
49   QStringList           getSelectedPolygonNames() const;
50   QString               getSelectedFieldName() const;
51
52   void                  setObjectName( const QString& theName );
53   QString               getObjectName() const;
54
55   void                  setFileName( const QString& theFileName );
56   QString               getFileName() const;
57
58   void                  setFirstPageState(bool theState);
59   bool                  getAttrCheckBoxState() const;
60   void                  getValAttr2StricklerTypeCorr(QStringList& theAttrValues, QStringList& theST);
61   QVector<int>          getSelectedPolygonIndices() const;
62
63   void                  setDbfState(bool theState);
64   bool                  getDbfState() const;
65   int                   GetCurrentWizardIndex() const;
66
67   void                  FillCorrespondenceTable(const QStringList& theFirstColumn, 
68                                                 const QStringList& theSecondColumn,
69                                                 const QVector<int> theDefCBIndices,
70                                                 const QVector<QColor> theColors);
71 signals:
72   void                  FileSelected( const QString& theFileName );
73   void                  selectionChanged( const QStringList& );
74
75 protected slots:
76   void                  onBrowse();
77   void                  onItemSelectionChanged();
78   void                  onAttrCBChecked(bool theState);
79   void                  onComboBoxColorChanged(int theInd);
80
81 protected:
82   bool                  acceptCurrent() const;
83
84 private:
85
86   QWizardPage*          createPage1();
87   QWizardPage*          createPage2();
88   QWizardPage*          createPage3();
89
90   //First page
91   QLineEdit*            myFileName; 
92   QGroupBox*            myFileNameGroup;
93   QListWidget*          myPolygonsListWidget;   
94   QGroupBox*            myObjectNameGroup;
95   QLineEdit*            myObjectName;
96   QCheckBox*            myAttrCheckBox;
97
98   //Second page
99   QListWidget*          myDBFAttrListWidget; 
100   QLabel*               myAvAttrLabel;
101
102   //Third page
103   QLabel*               myCorrLabel;
104   QTableWidget*         myCorrTableWidget;
105
106   //State of the first page
107   bool                  myFirstPageState;
108   QVector<QColor>       myStrColors;
109   bool                  myDbfState;
110 };
111
112 #endif