Salome HOME
lot 12 GUI p.1
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ChannelDlg.h
index 1501dc2fe97149126746f4a4f5c43d6c15547a46..d651c44687ce658df0f63f62af9bda6bce99b140 100644 (file)
@@ -27,6 +27,8 @@ class QGroupBox;
 class QLineEdit;
 class QCheckBox;
 class QtxDoubleSpinBox;
+class QLabel;
+class QRadioButton;
 
 class HYDROGUI_ChannelDlg : public HYDROGUI_InputPanel
 {
@@ -55,12 +57,16 @@ public:
   bool                       getInvertDirection() const;
   void                       setInvertDirection( bool isChecked );
 
+  bool                       getProfileMode();
+
+
 
 signals:
   void                       CreatePreview();
 
 private slots:
   void                       onChannelDefChanged();
+  void                       onProfileModeChanged(bool);
 
 protected:
 
@@ -70,8 +76,19 @@ protected:
   QComboBox*                 myGuideLines;
   QComboBox*                 myProfiles;
 
+  QLabel*                    myProfileLabel;
+  QLabel*                    myLCValLabel;
+  QLabel*                    myDeltaZValLabel;
+  QLabel*                    myCoteZValLabel;
+
   QtxDoubleSpinBox*          myEquiDistance;
   QCheckBox*                 myInvertDirection;
+
+  QtxDoubleSpinBox*          myLCVal;  
+  QtxDoubleSpinBox*          myDeltaZVal;
+  QtxDoubleSpinBox*          myCoteZVal;
+
+  QRadioButton*              myProfileModeButton;
 };
 
 #endif