plugin.h

来自「一个非常好的GIS开源新版本」· C头文件 代码 · 共 117 行

H
117
字号
/****************************************************************************  File Name:               plugin.h * *  The georeferencer plugin is a tool for adding projection info to rasters**--------------------------------------------------------------------------*    begin                : Jan 21, 2004*    copyright            : (C) 2004 by Tim Sutton*    email                : tim@linfiniti.com****************************************************************************//*************************************************************************** *                                                                         * *   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.                                   * *                                                                         * ***************************************************************************//*  $Id: plugin.h 7309 2007-11-01 08:08:13Z mhugent $ *//*************************************************************************** *   QGIS Programming conventions: *    *   mVariableName - a class level member variable *   sVariableName - a static class level member variable *   variableName() - accessor for a class member (no 'get' in front of name) *   setVariableName() - mutator for a class member (prefix with 'set') * *   Additional useful conventions: * *   theVariableName - a method parameter (prefix with 'the') *   myVariableName - a locally declared variable within a method ('my' prefix) *  *   DO: Use mixed case variable names - myVariableName *   DON'T: separate variable names using underscores: my_variable_name (NO!) * * **************************************************************************/#ifndef QGSGEOREFPLUGIN#define QGSGEOREFPLUGIN////QGIS Includes//#include <qgisplugin.h>class QgisInterface;////QT Includes//#include <QWidget>/*** \class Plugin* \brief [name] plugin for QGIS* [description]*/class QgsGeorefPlugin:public QObject, public QgisPlugin{  Q_OBJECT public:        //////////////////////////////////////////////////////////////////////  //  //                MANDATORY PLUGIN METHODS FOLLOW  //  //////////////////////////////////////////////////////////////////////  /**   * Constructor for a plugin. The QgisApp and QgisIface pointers are passed by   * QGIS when it attempts to instantiate the plugin.  * @param Pointer to the QgisApp object  * @param Pointer to the QgisIface object.    */  QgsGeorefPlugin(QgisInterface * );  //! Destructor  virtual ~ QgsGeorefPlugin();public slots:  //! init the gui  virtual void initGui();  //! Show the dialog box  void run();  //! unload the plugin  void unload();  //! show the help document  void help();  //////////////////////////////////////////////////////////////////////  //  //                  END OF MANDATORY PLUGIN METHODS  //  //////////////////////////////////////////////////////////////////////  private:  ////////////////////////////////////////////////////////////////////  //  // MANDATORY PLUGIN MEMBER DECLARATIONS  .....  //  ////////////////////////////////////////////////////////////////////    int mPluginType;  //! Pointer to the QGIS interface object  QgisInterface *mQGisIface;  //!pointer to the qaction for this plugin  QAction * mQActionPointer;  ////////////////////////////////////////////////////////////////////  //  // ADD YOUR OWN MEMBER DECLARATIONS AFTER THIS POINT.....  //  ////////////////////////////////////////////////////////////////////};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?