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 
29 {
30  if (e->type() == QEvent::Shortcut)
31  {
32  activate(Trigger);
33  return true;
34  }
35 
36  return QObject::event(e);
37 }
38 
39 gui::OverrideAction::OverrideAction(const QIcon& icon, const QString& text, QObject* parent)
40  : QAction(icon, text, parent)
41 {
42 }
43 
44 gui::OverrideAction::OverrideAction(const QString& text, QObject* parent)
45  : QAction(text, parent)
46 {
47 }
48 
50 {
51  return event(e);
52 }
OverrideAction.h
gui::OverrideAction::publicEvent
bool publicEvent(QEvent *e)
Passes the Event to protected method event.
Definition: OverrideAction.cpp:49
gui::OverrideAction::event
bool event(QEvent *e) override
Event triggered.
Definition: OverrideAction.cpp:28
gui::OverrideAction::OverrideAction
OverrideAction(const QIcon &icon, const QString &text, QObject *parent)
Constructor.
Definition: OverrideAction.cpp:39