-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpqAbstractActivateEventPlayer.cxx
198 lines (173 loc) · 4.44 KB
/
pqAbstractActivateEventPlayer.cxx
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
// SPDX-FileCopyrightText: Copyright (c) Sandia Corporation
// SPDX-License-Identifier: BSD-3-Clause
#include "pqAbstractActivateEventPlayer.h"
#include <QAction>
#include <QApplication>
#include <QKeyEvent>
#include <QMenu>
#include <QMenuBar>
#include <QPushButton>
#include <QToolButton>
#include <QtDebug>
#include "pqEventDispatcher.h"
pqAbstractActivateEventPlayer::pqAbstractActivateEventPlayer(QObject* p)
: pqWidgetEventPlayer(p)
{
}
bool pqAbstractActivateEventPlayer::playEvent(
QObject* Object, const QString& Command, const QString& Arguments, bool& Error)
{
if (Command != "activate" && Command != "longActivate")
return false;
if (QMenuBar* const menu_bar = qobject_cast<QMenuBar*>(Object))
{
QAction* action = findAction(menu_bar, Arguments);
if (action)
{
menu_bar->setActiveAction(action);
return true;
}
qCritical() << "couldn't find action " << Arguments;
Error = true;
return true;
}
if (QMenu* qmenu = qobject_cast<QMenu*>(Object))
{
QAction* action = findAction(qmenu, Arguments);
if (!action)
{
Error = true;
return true;
}
// get a list of menus that must be navigated to
// click on the action
QObjectList menus;
for (QObject* p = qmenu; qobject_cast<QMenu*>(p) || qobject_cast<QMenuBar*>(p); p = p->parent())
{
menus.push_front(p);
}
// unfold menus to make action visible
int i;
int numMenus = menus.size() - 1;
for (i = 0; i < numMenus; ++i)
{
QObject* p = menus[i];
QMenu* next = qobject_cast<QMenu*>(menus[i + 1]);
if (QMenuBar* menu_bar = qobject_cast<QMenuBar*>(p))
{
menu_bar->setActiveAction(next->menuAction());
int max_wait = 0;
while (!next->isVisible() && (++max_wait) <= 2)
{
pqEventDispatcher::processEventsAndWait(100);
}
}
else if (QMenu* menu = qobject_cast<QMenu*>(p))
{
menu->setActiveAction(next->menuAction());
int max_wait = 0;
while (!next->isVisible() && (++max_wait) <= 2)
{
pqEventDispatcher::processEventsAndWait(100);
}
}
}
// set active action, will cause scrollable menus to scroll
// to make action visible
qmenu->setActiveAction(action);
// activate the action item
QKeyEvent keyDown(QEvent::KeyPress, Qt::Key_Enter, Qt::NoModifier);
QKeyEvent keyUp(QEvent::KeyRelease, Qt::Key_Enter, Qt::NoModifier);
qApp->notify(qmenu, &keyDown);
qApp->notify(qmenu, &keyUp);
// QApplication::processEvents();
return true;
}
if (QAbstractButton* const object = qobject_cast<QAbstractButton*>(Object))
{
if (Command == "activate")
{
object->click();
// QApplication::processEvents();
return true;
}
if (Command == "longActivate")
{
QToolButton* tButton = qobject_cast<QToolButton*>(Object);
if (tButton)
{
tButton->showMenu();
return true;
}
}
}
if (QAction* const action = qobject_cast<QAction*>(Object))
{
action->activate(QAction::Trigger);
// QApplication::processEvents();
return true;
}
qCritical() << "calling activate on unhandled type " << Object;
Error = true;
return true;
}
QAction* pqAbstractActivateEventPlayer::findAction(QMenuBar* p, const QString& name)
{
QList<QAction*> actions = p->actions();
QAction* action = NULL;
Q_FOREACH (QAction* a, actions)
{
if (a->menu()->objectName() == name)
{
action = a;
break;
}
}
if (!action)
{
Q_FOREACH (QAction* a, actions)
{
if (a->text() == name)
{
action = a;
break;
}
}
}
return action;
}
QAction* pqAbstractActivateEventPlayer::findAction(QMenu* p, const QString& name)
{
QStringList checked;
QList<QAction*> actions = p->actions();
QAction* action = NULL;
Q_FOREACH (QAction* a, actions)
{
checked.append(a->objectName());
if (checked.back() == name)
{
action = a;
break;
}
}
if (!action)
{
Q_FOREACH (QAction* a, actions)
{
checked.append(a->text());
if (checked.back() == name)
{
action = a;
break;
}
}
}
if (!action)
{
checked.removeDuplicates();
qCritical() << "Unable to find action " << name << " in " << p->objectName()
<< ". Available actions: " << checked.join(", ");
}
return action;
}