QGIS/plugins/delimited_text/qgsdelimitedtextplugingui.h
gsherman 4db696924a Added Parse button to reparse the header row if the delimiter is changed
Added layer name field to specify the name as it will appear in the legend
Added WhatsThis help and tooltips for all widgets on the dialog


git-svn-id: http://svn.osgeo.org/qgis/trunk@1034 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-13 17:00:37 +00:00

44 lines
1.6 KiB
C++

/***************************************************************************
* Copyright (C) 2003 by Tim Sutton *
* Copyright (C) 2004 by Gary Sherman *
* tim@linfiniti.com *
* *
* This is a plugin generated from the QGIS plugin template *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef PLUGINGUI_H
#define PLUGINGUI_H
#include "qgsdelimitedtextpluginguibase.h"
class QgisIface;
/**
* \class QgsDelimitedTextPluginGui
*/
class QgsDelimitedTextPluginGui : public QgsDelimitedTextPluginGuiBase
{
Q_OBJECT
public:
QgsDelimitedTextPluginGui();
QgsDelimitedTextPluginGui( QgisIface * _qI, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
~QgsDelimitedTextPluginGui();
public slots:
void pbnOK_clicked();
void updateFieldLists();
void getOpenFileName();
void enableBrowseButton(const QString &);
void help();
private:
QgisIface * qI;
signals:
void drawRasterLayer(QString);
void drawVectorLayer(QString,QString,QString);
};
#endif