Salome HOME
lot 10 - warnings for DTM - untested
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ChannelDlg.h
index d2b8bae92919f62516854afe3719ca73888f8410..1501dc2fe97149126746f4a4f5c43d6c15547a46 100644 (file)
@@ -1,8 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
-//
-// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
-//
+// Copyright (C) 2014-2015  EDF-R&D
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
@@ -29,6 +25,8 @@
 class QComboBox;
 class QGroupBox;
 class QLineEdit;
+class QCheckBox;
+class QtxDoubleSpinBox;
 
 class HYDROGUI_ChannelDlg : public HYDROGUI_InputPanel
 {
@@ -51,6 +49,13 @@ public:
   void                       setProfileName( const QString& theProfile );
   QString                    getProfileName() const;
 
+  double                     getEquiDistance() const;
+  void                       setEquiDistance( double );
+  
+  bool                       getInvertDirection() const;
+  void                       setInvertDirection( bool isChecked );
+
+
 signals:
   void                       CreatePreview();
 
@@ -64,6 +69,9 @@ protected:
 
   QComboBox*                 myGuideLines;
   QComboBox*                 myProfiles;
+
+  QtxDoubleSpinBox*          myEquiDistance;
+  QCheckBox*                 myInvertDirection;
 };
 
 #endif