QGIS API Documentation  2.0.1-Dufour
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsattributeaction.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsattributeaction.h
3 
4  These classes store and control the managment and execution of actions
5  associated with particulay Qgis layers. Actions are defined to be
6  external programs that are run with user-specified inputs that can
7  depend on the contents of layer attributes.
8 
9  -------------------
10  begin : Oct 24 2004
11  copyright : (C) 2004 by Gavin Macaulay
12  email : gavin at macaulay dot co dot nz
13  ***************************************************************************/
14 
15 /***************************************************************************
16  * *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or *
20  * (at your option) any later version. *
21  * *
22  ***************************************************************************/
23 
24 #ifndef QGSATTRIBUTEACTION_H
25 #define QGSATTRIBUTEACTION_H
26 
27 #include <QString>
28 #include <QObject>
29 
30 #include <qgsfeature.h>
31 
32 class QDomNode;
33 class QDomDocument;
34 class QgsPythonUtils;
35 class QgsVectorLayer;
36 
40 class CORE_EXPORT QgsAction
41 {
42  public:
44  {
47  Mac,
51  };
52 
53  QgsAction( ActionType type, QString name, QString action, bool capture ) :
54  mType( type ), mName( name ), mAction( action ), mCaptureOutput( capture ) {}
55 
57  QString name() const { return mName; }
58 
60  QString action() const { return mAction; }
61 
63  ActionType type() const { return mType; }
64 
66  bool capture() const { return mCaptureOutput; }
67 
69  bool runable() const
70  {
71  return mType == Generic ||
72  mType == GenericPython ||
73  mType == OpenUrl ||
74 #if defined(Q_OS_WIN)
75  mType == Windows
76 #elif defined(Q_OS_MAC)
77  mType == Mac
78 #else
79  mType == Unix
80 #endif
81  ;
82  }
83 
84  private:
86  QString mName;
87  QString mAction;
89 };
90 
96 class CORE_EXPORT QgsAttributeAction
97 {
98  public:
100  QgsAttributeAction( QgsVectorLayer *layer ) : mLayer( layer ) {}
101 
103  virtual ~QgsAttributeAction() {}
104 
106  // Will happily have duplicate names and actions. If
107  // capture is true, when running the action using doAction(),
108  // any stdout from the process will be captured and displayed in a
109  // dialog box.
110  void addAction( QgsAction::ActionType type, QString name, QString action, bool capture = false );
111 
113  void removeAction( int index );
114 
120  void doAction( int index,
121  QgsFeature &feat,
122  int defaultValueIndex = 0 );
123 
131  void doAction( int index,
132  QgsFeature &feat,
133  const QMap<QString, QVariant> *substitutionMap = 0 );
134 
136  void clearActions() { mActions.clear(); }
137 
139  QgsVectorLayer *layer() { return mLayer; }
140 
144  QString expandAction( QString action, const QgsAttributeMap &attributes, uint defaultValueIndex );
145 
156  QString expandAction( QString action,
157  QgsFeature &feat,
158  const QMap<QString, QVariant> *substitutionMap = 0 );
159 
160 
162  bool writeXML( QDomNode& layer_node, QDomDocument& doc ) const;
163 
165  bool readXML( const QDomNode& layer_node );
166 
167  int size() const { return mActions.size(); }
168  QgsAction &at( int idx ) { return mActions[idx]; }
169  QgsAction &operator[]( int idx ) { return mActions[idx]; }
170 
172  static void setPythonExecute( void ( * )( const QString & ) );
173 
175  int defaultAction() const { return mDefaultAction < 0 || mDefaultAction >= size() ? 0 : mDefaultAction; }
176  void setDefaultAction( int actionNumber ) { mDefaultAction = actionNumber ; }
177 
178  private:
179  QList<QgsAction> mActions;
181  static void ( *smPythonExecute )( const QString & );
182 
183  void runAction( const QgsAction &action,
184  void ( *executePython )( const QString & ) = 0 );
185 
187 };
188 
189 #endif