Salome HOME
Minor fix.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_PolylineDlg.h
index 2204c68448a081d955bd976621381e2c66799ed5..ef78c7197a5ef905c9ad83419c91224fdf060118 100755 (executable)
 #include "HYDROGUI_InputPanel.h"
 
 
+class QLineEdit;
+class CurveCreator_Widget;
+class CurveCreator_Curve;
+
 class HYDROGUI_PolylineDlg : public HYDROGUI_InputPanel
 {
   Q_OBJECT
@@ -33,6 +37,11 @@ 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:
@@ -40,6 +49,9 @@ protected slots:
 signals:
   void                       createPreview( QString );
 
+private:
+  QLineEdit*            myName;
+  CurveCreator_Widget*  myEditorWidget;
 };
 
 #endif