/usr/include/qgis/qgsactionmenu.h is in libqgis-dev 2.8.6+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | /***************************************************************************
qgsactionmenu.h
--------------------------------------
Date : 11.8.2014
Copyright : (C) 2014 Matthias Kuhn
Email : matthias dot kuhn at gmx dot 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. *
* *
***************************************************************************/
#ifndef QGSACTIONMENU_H
#define QGSACTIONMENU_H
#include <QMenu>
#include <QSignalMapper>
#include "qgsattributeaction.h"
#include "qgsmaplayeractionregistry.h"
/**
* This class is a menu that is populated automatically with the actions defined for a given layer.
*/
class QgsActionMenu : public QMenu
{
Q_OBJECT
public:
enum ActionType
{
Invalid, //!< Invalid
MapLayerAction, //!< Standard actions (defined by core or plugins)
AttributeAction //!< Custom actions (manually defined in layer properties)
};
struct ActionData
{
ActionData()
: actionType( Invalid )
, actionId( 0 )
, featureId( 0 )
, mapLayer( NULL )
{}
ActionData( int actionId, QgsFeatureId featureId, QgsMapLayer* mapLayer )
: actionType( AttributeAction )
, actionId( actionId )
, featureId( featureId )
, mapLayer( mapLayer )
{}
ActionData( QgsMapLayerAction* action, QgsFeatureId featureId, QgsMapLayer* mapLayer )
: actionType( MapLayerAction )
, actionId( action )
, featureId( featureId )
, mapLayer( mapLayer )
{}
ActionType actionType;
union aid
{
aid( int i ) : id( i ) {}
aid( QgsMapLayerAction* a ) : action( a ) {}
int id;
QgsMapLayerAction* action;
} actionId;
QgsFeatureId featureId;
QgsMapLayer* mapLayer;
};
public:
/**
* Constructs a new QgsActionMenu
*
* @param layer The layer that this action will be run upon.
* @param feature The feature that this action will be run upon. Make sure that this feature is available
* for the lifetime of this object.
* @param parent The usual QWidget parent.
*/
explicit QgsActionMenu( QgsVectorLayer* layer, const QgsFeature* feature, QWidget* parent = 0 );
/**
* Constructs a new QgsActionMenu
*
* @param layer The layer that this action will be run upon.
* @param fid The feature id of the feature for which this action will be run.
* @param parent The usual QWidget parent.
*/
explicit QgsActionMenu( QgsVectorLayer* layer, const QgsFeatureId fid, QWidget* parent = 0 );
/**
* Destructor
*/
~QgsActionMenu();
/**
* Change the feature on which actions are performed
*
* @param feature A feature. Will not take ownership. It's the callers responsibility to keep the feature
* as long as the menu is displayed and the action is running.
*/
void setFeature( QgsFeature* feature );
/**
* @brief setFeature
* @param feature
*/
void setFeature( QgsFeatureId feature );
private slots:
void triggerAction();
void reloadActions();
signals:
void reinit();
private:
void init();
const QgsFeature* feature();
QgsVectorLayer* mLayer;
QgsAttributeAction* mActions;
const QgsFeature* mFeature;
QgsFeatureId mFeatureId;
bool mOwnsFeature;
};
Q_DECLARE_METATYPE( QgsActionMenu::ActionData )
#endif // QGSACTIONMENU_H
|