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

« back to all changes in this revision

Viewing changes to plugins/community_reg_plugin/plugingui.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve Halasz
  • Date: 2005-11-05 16:04:45 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051105160445-l0g4isz5bc9yehet
Tags: 0.7.4-1
* New upstream release
* Build GRASS support in qgis-plugin-grass package (Closes: #248649)

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 QGSCOMMUNTYREGPLUGINGUI_H
 
13
#define QGSCOMMUNTYREGPLUGINGUI_H
 
14
 
 
15
#include <pluginguibase.h>
 
16
class QUrl;
 
17
class  QHttp;
 
18
/**
 
19
@author Tim Sutton
 
20
*/
 
21
class QgsCommunityRegPluginGui : public QgsCommunityRegPluginGuiBase
 
22
{
 
23
Q_OBJECT
 
24
public:
 
25
    QgsCommunityRegPluginGui();
 
26
    QgsCommunityRegPluginGui( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
 
27
    ~QgsCommunityRegPluginGui();
 
28
public slots:
 
29
    void pbnOK_clicked();
 
30
    void pbnCancel_clicked();
 
31
    void submit();
 
32
    void submitDone( bool error );
 
33
    void pbnGetCoords_clicked();
 
34
private:
 
35
    QHttp * mConnection;  
 
36
    QHttp * mHttp;
 
37
signals:
 
38
   void drawRasterLayer(QString);
 
39
   void drawVectorrLayer(QString,QString,QString);
 
40
};
 
41
 
 
42
#endif