Salome HOME
Minor fix.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_PolylineDlg.h
index 54c4ae258226eba19bb929d3e1f5626f3b280134..ef78c7197a5ef905c9ad83419c91224fdf060118 100755 (executable)
 #include "HYDROGUI_InputPanel.h"
 
 
+class QLineEdit;
+class CurveCreator_Widget;
+class CurveCreator_Curve;
+
 class HYDROGUI_PolylineDlg : public HYDROGUI_InputPanel
 {
   Q_OBJECT
@@ -33,12 +37,21 @@ class HYDROGUI_PolylineDlg : public HYDROGUI_InputPanel
 public:
   HYDROGUI_PolylineDlg( HYDROGUI_Module* theModule, const QString& theTitle );
   virtual ~HYDROGUI_PolylineDlg();
+  
+  void  setPolylineName( const QString& theName );
+  QString getPolylineName() const;
+       
+  void  setCurve( CurveCreator_Curve* theCurve );
 
+  void  reset();
 protected slots:
 
 signals:
   void                       createPreview( QString );
 
+private:
+  QLineEdit*            myName;
+  CurveCreator_Widget*  myEditorWidget;
 };
 
 #endif