~ubuntu-branches/ubuntu/quantal/qgis/quantal

« back to all changes in this revision

Viewing changes to src/plugins/grid_maker/plugingui.h

  • Committer: Bazaar Package Importer
  • Author(s): William Grant
  • Date: 2007-05-06 13:42:32 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070506134232-pyli6t388w5asd8x
Tags: 0.8.0-3ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/rules, debian/qgis.install, debian/qgis.dirs debian/qgis.desktop:
    Add and install .desktop.
* debian/qgis.desktop: Remove Applications category; it's not real.
* Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2003 by Tim Sutton                                      *
 
3
 *   tim@linfiniti.com                                                     *
 
4
 *                                                                         *
 
5
 *   This is a plugin generated from the QGIS plugin template              *
 
6
 *                                                                         *
 
7
 *   This program is free software; you can redistribute it and/or modify  *
 
8
 *   it under the terms of the GNU General Public License as published by  *
 
9
 *   the Free Software Foundation; either version 2 of the License, or     *
 
10
 *   (at your option) any later version.                                   *
 
11
 ***************************************************************************/
 
12
#ifndef QGSGRIDMAKERPLUGINGUI_H
 
13
#define QGSGRIDMAKERPLUGINGUI_H
 
14
 
 
15
#include <ui_pluginguibase.h>
 
16
#include <QDialog>
 
17
 
 
18
/**
 
19
@author Tim Sutton
 
20
*/
 
21
class QgsGridMakerPluginGui : public QDialog, private Ui::QgsGridMakerPluginGuiBase
 
22
{
 
23
  Q_OBJECT
 
24
public:
 
25
  QgsGridMakerPluginGui();
 
26
  QgsGridMakerPluginGui(QWidget* parent, Qt::WFlags);
 
27
  ~QgsGridMakerPluginGui();
 
28
 
 
29
public slots:
 
30
  
 
31
  void on_pbnSelectOutputFile_clicked();
 
32
  void on_pbnCancel_clicked();
 
33
  void on_pbnOK_clicked();
 
34
 
 
35
signals:
 
36
  void drawRasterLayer(QString);
 
37
  void drawVectorLayer(QString,QString,QString);
 
38
};
 
39
 
 
40
#endif