⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qgspggeoprocessing.h

📁 一个非常好的GIS开源新版本
💻 H
字号:
/***************************************************************************                          qgspggeoprocessing.h  Geoprocessing plugin for PostgreSQL/PostGIS layers Functions:   Buffer                             -------------------    begin                : Jan 21, 2004    copyright            : (C) 2004 by Gary E.Sherman    email                : sherman at mrcc.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: qgspggeoprocessing.h 6415 2007-01-09 02:39:15Z wonder $ */#ifndef QGISQgsPgGeoprocessing_H#define QGISQgsPgGeoprocessing_H#include "../qgisplugin.h"extern "C"{#include <libpq-fe.h>}class QAction;#include <QObject>//#include "qgsworkerclass.h"/*** \class QgsPgGeoprocessing* \brief PostgreSQL/PostGIS plugin for QGIS**/class QgsPgGeoprocessing: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. */    QgsPgGeoprocessing(QgisInterface * qI);    //! Destructor      virtual ~ QgsPgGeoprocessing();    public slots:    //! init the gui    virtual void initGui();      //! buffer features in a layer    void buffer();    //! unload the plugin    void unload();  private:  //! get postgis version string   QString postgisVersion(PGconn *);  //! get status of GEOS capability  bool hasGEOS(PGconn *);  //! get status of GIST capability  bool hasGIST(PGconn *);  //! get status of PROJ4 capability  bool hasPROJ(PGconn *);    QString postgisVersionInfo;  bool geosAvailable;  bool gistAvailable;  bool projAvailable;      //! Pionter to QGIS main application object    QWidget *qgisMainWindow;    //! Pointer to the QGIS interface object    QgisInterface *qI;    //! Pointer to the QAction used for the menu and toolbar (needed to enable unloading of the plugin)    QAction *bufferAction;};#endif

⌨️ 快捷键说明

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