mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
41 lines
1.4 KiB
C++
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
|