~ubuntu-branches/ubuntu/hardy/qgis/hardy

« back to all changes in this revision

Viewing changes to src/plugins/georeferencer/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) 2005 by Lars Luthman
 
3
 *   larsl@users.sourceforge.net
 
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 PLUGINGUI_H
 
13
#define PLUGINGUI_H
 
14
 
 
15
#include <ui_pluginguibase.h>
 
16
#include <QDialog>
 
17
 
 
18
class QgisIface;
 
19
 
 
20
/**
 
21
@author Tim Sutton
 
22
*/
 
23
class QgsGeorefPluginGui : public QDialog, private Ui::QgsGeorefPluginGuiBase
 
24
{
 
25
Q_OBJECT
 
26
public:
 
27
    QgsGeorefPluginGui();
 
28
    QgsGeorefPluginGui(QgisIface* theQgisInterface, QWidget* parent = 0, Qt::WFlags fl = 0);
 
29
    ~QgsGeorefPluginGui();
 
30
    
 
31
public slots:
 
32
    void on_pbnClose_clicked();
 
33
    void on_pbnEnterWorldCoords_clicked();
 
34
    void on_pbnSelectRaster_clicked();
 
35
    
 
36
private:
 
37
    
 
38
   QString mProjBehaviour, mProjectSRS;
 
39
   int mProjectSRSID;
 
40
   QgisIface* mIface;
 
41
 
 
42
};
 
43
 
 
44
#endif