Salome HOME
Import of shapefile - bug fixes; #refs 614
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ImportLandCoverDlg.h
index c9df043252c853f9221dd517d7aae634220caec7..67482a903bb15e2cdab2610e0b18409a0608a884 100644 (file)
@@ -33,16 +33,15 @@ class HYDROGUI_ImportLandCoverDlg : public HYDROGUI_InputPanel
 public:
   HYDROGUI_ImportLandCoverDlg( HYDROGUI_Module* theModule, const QString& theTitle );
   virtual ~HYDROGUI_ImportLandCoverDlg();
-  void setImageName( const QString& theName );
 
   void reset();
 
-  void setPolylineNames( const QStringList& theNames );
-  void removePolylineNames( const QStringList& theNames );
+  void setPolygonNames( const QStringList& theNames );
+  void removePolygonNames( const QStringList& theNames );
 
-  void setSelectedPolylineNames( const QStringList& theNames );
+  void setSelectedPolygonNames( const QStringList& theNames );
 
-  QStringList getSelectedtPolylineNames() const;
+  QStringList getSelectedPolygonNames() const;
 
   void                       setObjectName( const QString& theName );
   QString                    getObjectName() const;
@@ -62,20 +61,14 @@ signals:
 public slots:
   void onItemSelectionChanged();
 
-public:
-  
-  QLineEdit*                 myFileName; //temp
 private:
-  QLineEdit*                 myImageName;
+  QLineEdit*                 myFileName; 
   QGroupBox*                 myFileNameGroup;
-//  QLineEdit*                 myFileName;
-
-  QListWidget* myPolylines;    
+  QListWidget*               myPolygons;       
 
   QGroupBox*                 myObjectNameGroup;
   QLineEdit*                 myObjectName;
 
-
 };
 
 #endif