Salome HOME
land cover object is removed from the data model
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_RecognizeContoursDlg.h
index acfd53b498018693c5c59b7e2ee66a23730f27b5..f30d7db3b672d12e67351f120f91d98a253eae29 100644 (file)
@@ -23,6 +23,7 @@
 #include "HYDROGUI_InputPanel.h"
 
 class QListWidget;
+class QLineEdit;
 
 class HYDROGUI_RecognizeContoursDlg : public HYDROGUI_InputPanel
 {
@@ -34,14 +35,17 @@ public:
   HYDROGUI_RecognizeContoursDlg( HYDROGUI_Module* theModule, const QString& theTitle );
   virtual ~HYDROGUI_RecognizeContoursDlg();
 
+  void setImageName( const QString& theName );
+
   void reset();
 
   void setPolylineNames( const QStringList& theNames );
+  void removePolylineNames( const QStringList& theNames );
 
   void setSelectedPolylineNames( const QStringList& theNames );
 
   QStringList getSelectedtPolylineNames() const;
-
+  
 signals:
   void selectionChanged( const QStringList& );
 
@@ -49,6 +53,7 @@ public slots:
   void onItemSelectionChanged();
 
 private:
+  QLineEdit*   myImageName;
   QListWidget* myPolylines;    
 };