gsherman 9e6fe39e1d Initial checkin of delmited text plugin files
git-svn-id: http://svn.osgeo.org/qgis/trunk@1005 c8812cc2-4d05-0410-92ff-de0c093fc19c
2004-03-10 23:16:52 +00:00

41 lines
1.4 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 "pluginguibase.h"
/**
* \class PluginGui
*/
class PluginGui : public PluginGuiBase
{
Q_OBJECT
public:
PluginGui();
PluginGui( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
~PluginGui();
public slots:
void pbnOK_clicked();
void updateFieldLists();
void getOpenFileName();
void enableBrowseButton(const QString &);
private:
signals:
void drawRasterLayer(QString);
void drawVectorLayer(QString,QString,QString);
};
#endif