mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
when plugin only has a single action Affected actions: - Database -> DB Manager -> DB Manager - Coordinate Capture -> Coordinate Capture - Vector -> Geometry Tools -> Geometry Checker - Raster -> Georeferencer -> Georeferencer - Vector -> Topology Checker -> Topology Checker These are now just top level actions, e.g. - Database -> DB Manager
110 lines
3.4 KiB
C++
110 lines
3.4 KiB
C++
/***************************************************************************
|
|
* qgsgeometrycheckerplugin.cpp *
|
|
* ------------------- *
|
|
* copyright : (C) 2014 by Sandro Mani / Sourcepole AG *
|
|
* email : smani@sourcepole.ch *
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "qgsgeometrycheckerplugin.h"
|
|
#include "qgisinterface.h"
|
|
#include "qgsgeometrycheckerdialog.h"
|
|
#include <QMenu>
|
|
|
|
QgsGeometryCheckerPlugin::QgsGeometryCheckerPlugin( QgisInterface *iface )
|
|
: QgisPlugin( sName, sDescription, sCategory, sPluginVersion, sPluginType )
|
|
, mIface( iface )
|
|
{
|
|
}
|
|
|
|
void QgsGeometryCheckerPlugin::initGui()
|
|
{
|
|
mDialog = new QgsGeometryCheckerDialog( mIface, mIface->mainWindow() );
|
|
mDialog->setWindowModality( Qt::NonModal );
|
|
mMenuAction = new QAction( QIcon( ":/geometrychecker/icons/geometrychecker.png" ), QApplication::translate( "QgsGeometryCheckerPlugin", "Check Geometries…" ), this );
|
|
connect( mMenuAction, &QAction::triggered, mDialog, &QWidget::show );
|
|
connect( mMenuAction, &QAction::triggered, mDialog, &QWidget::raise );
|
|
mIface->addPluginToVectorMenu( QString(), mMenuAction );
|
|
}
|
|
|
|
void QgsGeometryCheckerPlugin::unload()
|
|
{
|
|
delete mDialog;
|
|
mDialog = nullptr;
|
|
delete mMenuAction;
|
|
mMenuAction = nullptr;
|
|
mIface->vectorMenu()->removeAction( mMenuAction );
|
|
}
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
// THE FOLLOWING CODE IS AUTOGENERATED BY THE PLUGIN BUILDER SCRIPT
|
|
// YOU WOULD NORMALLY NOT NEED TO MODIFY THIS, AND YOUR PLUGIN
|
|
// MAY NOT WORK PROPERLY IF YOU MODIFY THIS INCORRECTLY
|
|
//
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
/**
|
|
* Required extern functions needed for every plugin
|
|
* These functions can be called prior to creating an instance
|
|
* of the plugin class
|
|
*/
|
|
// Class factory to return a new instance of the plugin class
|
|
QGISEXTERN QgisPlugin *classFactory( QgisInterface *qgisInterfacePointer )
|
|
{
|
|
return new QgsGeometryCheckerPlugin( qgisInterfacePointer );
|
|
}
|
|
// Return the name of the plugin - note that we do not user class members as
|
|
// the class may not yet be insantiated when this method is called.
|
|
QGISEXTERN QString name()
|
|
{
|
|
return sName;
|
|
}
|
|
|
|
// Return the description
|
|
QGISEXTERN QString description()
|
|
{
|
|
return sDescription;
|
|
}
|
|
|
|
// Return the category
|
|
QGISEXTERN QString category()
|
|
{
|
|
return sCategory;
|
|
}
|
|
|
|
// Return the type (either UI or MapLayer plugin)
|
|
QGISEXTERN int type()
|
|
{
|
|
return sPluginType;
|
|
}
|
|
|
|
// Return the version number for the plugin
|
|
QGISEXTERN QString version()
|
|
{
|
|
return sPluginVersion;
|
|
}
|
|
|
|
QGISEXTERN QString icon()
|
|
{
|
|
return sPluginIcon;
|
|
}
|
|
|
|
// Delete ourself
|
|
QGISEXTERN void unload( QgisPlugin *pluginPointer )
|
|
{
|
|
delete pluginPointer;
|
|
}
|