OverrideAction.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package MemoryX::gui-plugins::SceneEditor
19  * @date 2015
20  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
21  * GNU General Public License
22  */
23 
24 #include "OverrideAction.h"
25 
26 #include <QShortcutEvent>
27 
28 bool
30 {
31  if (e->type() == QEvent::Shortcut)
32  {
33  activate(Trigger);
34  return true;
35  }
36 
37  return QObject::event(e);
38 }
39 
40 gui::OverrideAction::OverrideAction(const QIcon& icon, const QString& text, QObject* parent) :
41  QAction(icon, text, parent)
42 {
43 }
44 
45 gui::OverrideAction::OverrideAction(const QString& text, QObject* parent) : QAction(text, parent)
46 {
47 }
48 
49 bool
51 {
52  return event(e);
53 }
OverrideAction.h
gui::OverrideAction::publicEvent
bool publicEvent(QEvent *e)
Passes the Event to protected method event.
Definition: OverrideAction.cpp:50
gui::OverrideAction::event
bool event(QEvent *e) override
Event triggered.
Definition: OverrideAction.cpp:29
gui::OverrideAction::OverrideAction
OverrideAction(const QIcon &icon, const QString &text, QObject *parent)
Constructor.
Definition: OverrideAction.cpp:40