Salome HOME
Merge branch 'BR_MULTI_BATHS' into HEAD
[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                  getFirstPageState() const;
60   bool                  getAttrCheckBoxState() const;
61   void                  getValAttr2StricklerTypeCorr(QStringList& theAttrValues, QStringList& theST);
62   QVector<int>          getSelectedPolygonIndices() const;
63   bool                  isPolygonListEmpty() const;
64
65   bool                  CheckFirstPageFilling() const;
66
67   void                  setDbfState(bool theState);
68   bool                  getDbfState() const;
69   int                   getCurrentWizardIndex() const;
70
71   void                  setViewerState(bool theState);
72   bool                  getViewerState() const;
73   
74
75   void                  FillCorrespondenceTable(const QStringList& theFirstColumn, 
76                                                 const QStringList& theSecondColumn,
77                                                 const QVector<int> theDefCBIndices,
78                                                 const QVector<QColor> theColors);
79 signals:
80   void                  FileSelected( const QString& theFileName );
81   void                  selectionChanged( const QStringList& );
82
83 protected slots:
84   void                  onBrowse();
85   void                  onItemSelectionChanged();
86   void                  onAttrCBChecked(bool theState);
87   void                  onComboBoxColorChanged(int theInd);
88
89 protected:
90   bool                  acceptCurrent() const;
91
92 private:
93
94   QWizardPage*          createPage1();
95   QWizardPage*          createPage2();
96   QWizardPage*          createPage3();
97
98   //First page
99   QLineEdit*            myFileName; 
100   QGroupBox*            myFileNameGroup;
101   QListWidget*          myPolygonsListWidget;   
102   QGroupBox*            myObjectNameGroup;
103   QLineEdit*            myObjectName;
104   QCheckBox*            myAttrCheckBox;
105
106   //Second page
107   QListWidget*          myDBFAttrListWidget; 
108   QLabel*               myAvAttrLabel;
109
110   //Third page
111   QLabel*               myCorrLabel;
112   QTableWidget*         myCorrTableWidget;
113
114   //State of the first page
115   bool                  myFirstPageState;
116   QVector<QColor>       myStrColors;
117   bool                  myDbfState;
118
119   bool                  myUpdateViewerState;
120 };
121
122 #endif