plugin.h

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

H
107
字号
/***************************************************************************  plugin.cpp  Plugin to draw scale bar on mapFunctions:-------------------begin                : Jun 1, 2004copyright            : (C) 2004 by Peter Breweremail                : sbr00pwb@users.sourceforge.net ***************************************************************************//*************************************************************************** *                                                                         * *   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 7797 2007-12-16 22:14:48Z homann $ */#ifndef QGSCALEBARPLUGIN#define QGSCALEBARPLUGIN#include "../qgisplugin.h"class QgisInterface;class QAction;class QToolBar;class QPainter;#include <QColor>#include <QObject>/*** \class Plugin* \brief OpenModeller plugin for QGIS**/class QgsScaleBarPlugin:public QObject, public QgisPlugin{  Q_OBJECT public:      /**       * Constructor for a plugin. The QgisInterface pointer is passed by       * QGIS when it attempts to instantiate the plugin.       * @param qI Pointer to the QgisInterface object.       */      QgsScaleBarPlugin(QgisInterface * );  //! Destructor  virtual ~ QgsScaleBarPlugin();  public slots:  //! init the gui  virtual void initGui();  //!set values on the gui when a project is read or the gui first loaded  void projectRead();  //!this does the meaty bit of the work  void renderScaleBar(QPainter *);  //! Show the dialog box  void run();  //! Refresh the map display using the mapcanvas exported via the plugin interface  void refreshCanvas();  //! unload the plugin  void unload();  //! show the help document  void help();  //! set scale bar placement.  void setPlacement(int);  //! set preferred size of scale bar  void setPreferredSize(int);  //! set whether the scale bar length should snap to the closest A*10^B  void setSnapping(bool);  //! set whether scale bar is enabled  void setEnabled(bool);  //! set the scale bar style  void setStyle(int);  //! set the scale bar colour  void setColour(QColor);    private:  int pluginType;  //! Placement of the scale bar. An index and the translated text  int mPlacementIndex;  QStringList mPlacementLabels;  //! The size preferred size of the scale bar  int mPreferredSize;  //! Should we snap to integer times power of 10?  bool mSnapping;  //! Scale bar enabled?  bool mEnabled;  //! Style of scale bar. An index and the translated text  int mStyleIndex;  QStringList mStyleLabels;  //! The scale bar colour  QColor mColour;  //! Pointer to the QGIS interface object  QgisInterface *qGisInterface;  //! Pointer to the QAction object used in the menu and toolbar  QAction *myQActionPointer;};#endif

⌨️ 快捷键说明

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