📄 qgsgrassplugin.h
字号:
/*************************************************************************** qgsgrassplugin.h - GRASS menu ------------------- begin : March, 2004 copyright : (C) 2004 by Radim Blazek email : blazek@itc.it ***************************************************************************//*************************************************************************** * * * 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: qgsgrassplugin.h 6415 2007-01-09 02:39:15Z wonder $ */#ifndef QGSGRASSPLUGIN_H#define QGSGRASSPLUGIN_H#include "../qgisplugin.h"#include <qwidget.h>#include <qpen.h>#include <vector>class QgisInterface;class QgsMapCanvas;class QgsRubberBand;class QgsGrassTools;class QgsGrassNewMapset;class QgsGrassRegion;class QToolBar;/*** \class QgsGrassPlugin* \brief OpenModeller plugin for QGIS**/class QgsGrassPlugin: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. */ QgsGrassPlugin(QgisInterface * qI); /** * Virtual function to return the name of the plugin. The name will be used when presenting a list * of installable plugins to the user */ virtual QString name(); /** * Virtual function to return the version of the plugin. */ virtual QString version(); /** * Virtual function to return a description of the plugins functions */ virtual QString description(); /** * Return the plugin type */ virtual int type(); //! Destructor virtual ~ QgsGrassPlugin(); //! Get Region Pen QPen & regionPen(void); //! Set Region Pen void setRegionPen(QPen &);public slots: //! init the gui virtual void initGui(); //! Show the dialog box for new vector void addVector(); //! Show the dialog box for new raster void addRaster(); //! Start vector editing void edit(); //! unload the plugin void unload(); //! show the help document void help(); //! Display current region void displayRegion(); //! Switch region on/off void switchRegion(bool on); //! Change region void changeRegion(void); //! Region dialog closed void regionClosed(); //! Redraw region void redrawRegion(void); //! Post render void postRender(QPainter *); //! Open tools void openTools(void); //! Create new mapset void newMapset(); //! Open existing mapset void openMapset(); //! Close mapset void closeMapset(); //! Current mapset changed (opened/closed) void mapsetChanged(); //! Create new vector void newVector(); //! Read project void projectRead(); //! New project void newProject(); //! Save mapset to project void saveMapset(); //! Set edit action void setEditAction();private: //! Name of the plugin QString pluginNameQString; //! Version QString pluginVersionQString; //! Descrption of the plugin QString pluginDescriptionQString; //! Plugin type as defined in QgisPlugin::PLUGINTYPE int pluginType; //! Pointer to our toolbar QToolBar *toolBarPointer; //! Pointer to the QGIS interface object QgisInterface *qGisInterface; //! Pointer to canvas QgsMapCanvas *mCanvas; //! Pointer to Display region acction QAction *mRegionAction; //! Region width QPen mRegionPen; //! Region dialog QgsGrassRegion *mRegion; // Region rubber band QgsRubberBand *mRegionBand; //! GRASS tools QgsGrassTools *mTools; //! Pointer to QgsGrassNewMapset QgsGrassNewMapset *mNewMapset; // Actions QAction *mOpenMapsetAction; QAction *mNewMapsetAction; QAction *mCloseMapsetAction; QAction *mAddVectorAction; QAction *mAddRasterAction; QAction *mOpenToolsAction; QAction *mEditRegionAction; QAction *mEditAction; QAction *mNewVectorAction;};#endif // QGSGRASSPLUGIN_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -