Salome HOME
lot 12 GUI p.1
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ChannelDlg.h
index e01a9f5e85b48e35a13afcf1e6e6b4a78343ae69..d651c44687ce658df0f63f62af9bda6bce99b140 100644 (file)
 class QComboBox;
 class QGroupBox;
 class QLineEdit;
+class QCheckBox;
 class QtxDoubleSpinBox;
+class QLabel;
+class QRadioButton;
 
 class HYDROGUI_ChannelDlg : public HYDROGUI_InputPanel
 {
@@ -50,12 +53,20 @@ public:
 
   double                     getEquiDistance() const;
   void                       setEquiDistance( double );
+  
+  bool                       getInvertDirection() const;
+  void                       setInvertDirection( bool isChecked );
+
+  bool                       getProfileMode();
+
+
 
 signals:
   void                       CreatePreview();
 
 private slots:
   void                       onChannelDefChanged();
+  void                       onProfileModeChanged(bool);
 
 protected:
 
@@ -65,7 +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