Salome HOME
lot 12 GUI p.1
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ChannelDlg.h
index 9822928ad69a3deb2e55e00099c57389d1176abd..d651c44687ce658df0f63f62af9bda6bce99b140 100644 (file)
 class QComboBox;
 class QGroupBox;
 class QLineEdit;
+class QCheckBox;
+class QtxDoubleSpinBox;
+class QLabel;
+class QRadioButton;
 
 class HYDROGUI_ChannelDlg : public HYDROGUI_InputPanel
 {
@@ -47,11 +51,22 @@ public:
   void                       setProfileName( const QString& theProfile );
   QString                    getProfileName() const;
 
+  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:
 
@@ -60,6 +75,20 @@ 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