Salome HOME
refs #1278: by default objects in study are not expanded
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ExportLandCoverMapDlg.h
index a4b5bdcb4f7f0c83e04321b885cbe3822f835baa..71674c493cfb2911c62a552005bf37fb950b6131 100644 (file)
 
 class QCheckBox;
 class QComboBox;
+class QLabel;
+class QDoubleSpinBox;
 
 class HYDROGUI_ExportLandCoverMapDlg : public QtxDialog
 {
   Q_OBJECT
 
 public:
-  HYDROGUI_ExportLandCoverMapDlg( QWidget* = 0, const QStringList& AttrItems = QStringList());
+  HYDROGUI_ExportLandCoverMapDlg( QWidget* theParent = 0, bool IsLinear = false, const QStringList& theAttrItems = QStringList());
   virtual ~HYDROGUI_ExportLandCoverMapDlg();
 
 protected slots:
   void             onAttrCBChecked(bool theState);
+  void             onAvFieldsChanged(const QString& theText);
 
 public:
   QString          getCurrentItem() const; 
   bool             getAttrCheckBoxState();
+  double           getDeflValue() const;
 
 private:
   QCheckBox*       myAttrCheckBox;
   QComboBox*       myAvFields;
+  QLabel*          myDiscrLabel;
+  QLabel*          myDeflLabel;
+  QDoubleSpinBox*  myDeflSpinBox;
+  QLabel*          myWarningLabel;
 };
 
 #endif