Salome HOME
LOT 15
[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
70   void                  setDbfRecordsNb(int theRecordsNbs);
71   int                   getDbfRecordsNb() const;
72
73   int                   getCurrentWizardIndex() const;
74
75   void                  setViewerState(bool theState);
76   bool                  getViewerState() const;
77   
78
79   void                  FillCorrespondenceTable(const QStringList& theFirstColumn, 
80                                                 const QStringList& theSecondColumn,
81                                                 const QVector<int> theDefCBIndices,
82                                                 const QVector<QColor> theColors);
83 signals:
84   void                  FileSelected( const QString& theFileName );
85   void                  selectionChanged( const QStringList& );
86
87 protected slots:
88   void                  onBrowse();
89   void                  onItemSelectionChanged();
90   void                  onAttrCBChecked(bool theState);
91   void                  onComboBoxColorChanged(int theInd);
92
93 protected:
94   bool                  acceptCurrent() const;
95
96 private:
97
98   QWizardPage*          createPage1();
99   QWizardPage*          createPage2();
100   QWizardPage*          createPage3();
101
102   //First page
103   QLineEdit*            myFileName; 
104   QGroupBox*            myFileNameGroup;
105   QListWidget*          myPolygonsListWidget;   
106   QGroupBox*            myObjectNameGroup;
107   QLineEdit*            myObjectName;
108   QCheckBox*            myAttrCheckBox;
109
110   //Second page
111   QListWidget*          myDBFAttrListWidget; 
112   QLabel*               myAvAttrLabel;
113
114   //Third page
115   QLabel*               myCorrLabel;
116   QTableWidget*         myCorrTableWidget;
117
118   //State of the first page
119   bool                  myFirstPageState;
120   QVector<QColor>       myStrColors;
121   bool                  myDbfState;
122   int                   myDbfRecordsNbs;
123
124   bool                  myUpdateViewerState;
125 };
126
127 #endif