X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FHYDROGUI%2FHYDROGUI_ExportLandCoverMapDlg.h;h=71674c493cfb2911c62a552005bf37fb950b6131;hb=dfa894b758ac65080dc7185d25b7646dc45a10f4;hp=a4b5bdcb4f7f0c83e04321b885cbe3822f835baa;hpb=acd7a6036bedb1360688f10a57f52a3daca3d84c;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_ExportLandCoverMapDlg.h b/src/HYDROGUI/HYDROGUI_ExportLandCoverMapDlg.h index a4b5bdcb..71674c49 100644 --- a/src/HYDROGUI/HYDROGUI_ExportLandCoverMapDlg.h +++ b/src/HYDROGUI/HYDROGUI_ExportLandCoverMapDlg.h @@ -24,25 +24,33 @@ 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