summaryrefslogtreecommitdiffstats
path: root/framework/actions/action.h
diff options
context:
space:
mode:
Diffstat (limited to 'framework/actions/action.h')
-rw-r--r--framework/actions/action.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/framework/actions/action.h b/framework/actions/action.h
index 47e41138..dda8c987 100644
--- a/framework/actions/action.h
+++ b/framework/actions/action.h
@@ -37,6 +37,7 @@ class Action : public QObject
37public: 37public:
38 Action(QObject *parent = 0); 38 Action(QObject *parent = 0);
39 Action(const QByteArray &actionId, Context &context, QObject *parent = 0); 39 Action(const QByteArray &actionId, Context &context, QObject *parent = 0);
40 ~Action();
40 41
41 void setContext(Context *); 42 void setContext(Context *);
42 Context *context() const; 43 Context *context() const;
@@ -52,6 +53,8 @@ public:
52 void addPreHandler(ActionHandler *handler); 53 void addPreHandler(ActionHandler *handler);
53 void addPostHandler(ActionHandler *handler); 54 void addPostHandler(ActionHandler *handler);
54 55
56 bool eventFilter(QObject *obj, QEvent *e) Q_DECL_OVERRIDE;
57
55Q_SIGNALS: 58Q_SIGNALS:
56 void readyChanged(); 59 void readyChanged();
57 60