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

« back to all changes in this revision

Viewing changes to plugins/plugin_template/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:
9
9
 *   the Free Software Foundation; either version 2 of the License, or     *
10
10
 *   (at your option) any later version.                                   *
11
11
 ***************************************************************************/
12
 
#ifndef PLUGINGUI_H
13
 
#define PLUGINGUI_H
 
12
#ifndef [pluginname]GUI_H
 
13
#define [pluginname]GUI_H
14
14
 
15
15
#include <pluginguibase.h>
16
16
 
17
17
/**
18
18
@author Tim Sutton
19
19
*/
20
 
class PluginGui : public PluginGuiBase
 
20
class [pluginname]Gui : public [pluginname]GuiBase
21
21
{
22
22
Q_OBJECT
23
23
public:
24
 
    PluginGui();
25
 
    PluginGui( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
26
 
    ~PluginGui();
 
24
    [pluginname]Gui();
 
25
    [pluginname]Gui( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
 
26
    ~[pluginname]Gui();
27
27
    void pbnOK_clicked();
28
28
    void pbnCancel_clicked();
29
29
private: