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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
|
/* This file is part of the KDE project
Copyright (C) 2002 Matthias Hölzer-Klüpfel <mhk@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "acceleratormanager.h"
#include "dialog.h"
#include "pathrequester.h"
#include <QApplication>
#include <QCheckBox>
#include <QComboBox>
#include <QDockWidget>
#include <QDoubleSpinBox>
#include <QGroupBox>
#include <QLabel>
#include <QLineEdit>
#include <QList>
#include <QMainWindow>
#include <QMenuBar>
#include <QMetaClassInfo>
#include <QObject>
#include <QPushButton>
#include <QRadioButton>
#include <QStackedWidget>
#include <QTabBar>
#include <QTextDocument>
#include <QTextEdit>
#include <QWidget>
//#include <kstandardaction.h>
//#include <kdebug.h>
//#include <kdeversion.h>
//#include <kglobal.h>
#include "acceleratormanager_private.h"
//#include <kstandardaction_p.h>
/*********************************************************************
class Item - helper class containing widget information
This class stores information about the widgets the need accelerators,
as well as about their relationship.
*********************************************************************/
/*********************************************************************
class AcceleratorManagerPrivate - internal helper class
This class does all the work to find accelerators for a hierarchy of
widgets.
*********************************************************************/
static inline QString esc(const QString& orig)
{
return orig.toHtmlEscaped();
}
class AcceleratorManagerPrivate {
public:
static void manage(QWidget* widget);
static bool programmers_mode;
static bool standardName(const QString& str);
static bool checkChange(const AccelString& as)
{
QString t2 = as.accelerated();
QString t1 = as.originalText();
if (t1 != t2) {
if (as.accel() == -1) {
removed_string += "<tr><td>" + esc(t1) + "</td></tr>";
}
else if (as.originalAccel() == -1) {
added_string += "<tr><td>" + esc(t2) + "</td></tr>";
}
else {
changed_string += "<tr><td>" + esc(t1) + "</td>";
changed_string += "<td>" + esc(t2) + "</td></tr>";
}
return true;
}
return false;
}
static QString changed_string;
static QString added_string;
static QString removed_string;
static QMap<QWidget*, int> ignored_widgets;
private:
class Item;
public:
typedef QList<Item*> ItemList;
private:
static void traverseChildren(QWidget* widget, Item* item);
static void manageWidget(QWidget* widget, Item* item);
static void manageMenuBar(QMenuBar* mbar, Item* item);
static void manageTabBar(QTabBar* bar, Item* item);
static void manageDockWidget(QDockWidget* dock, Item* item);
static void calculateAccelerators(Item* item, QString& used);
class Item {
public:
Item() : m_widget(nullptr), m_children(nullptr), m_index(-1) {}
~Item();
void addChild(Item* item);
QWidget* m_widget;
AccelString m_content;
ItemList* m_children;
int m_index;
};
};
bool AcceleratorManagerPrivate::programmers_mode = false;
QString AcceleratorManagerPrivate::changed_string;
QString AcceleratorManagerPrivate::added_string;
QString AcceleratorManagerPrivate::removed_string;
//K_GLOBAL_STATIC_WITH_ARGS(QStringList, kaccmp_sns, (KStandardAction::internal_stdNames()))
QMap<QWidget*, int> AcceleratorManagerPrivate::ignored_widgets;
bool AcceleratorManagerPrivate::standardName(const QString& str)
{
return StdGuiItem::standardNames().contains(str);
// return kaccmp_sns->contains(str);
}
AcceleratorManagerPrivate::Item::~Item()
{
if (m_children)
while (!m_children->isEmpty())
delete m_children->takeFirst();
delete m_children;
}
void AcceleratorManagerPrivate::Item::addChild(Item* item)
{
if (!m_children) {
m_children = new ItemList;
}
m_children->append(item);
}
void AcceleratorManagerPrivate::manage(QWidget* widget)
{
if (!widget) {
// kDebug(240) << "null pointer given to manage";
return;
}
if (AcceleratorManagerPrivate::ignored_widgets.contains(widget)) {
return;
}
if (qobject_cast<QMenu*>(widget)) {
// create a popup accel manager that can deal with dynamic menus
PopupAccelManager::manage(static_cast<QMenu*>(widget));
return;
}
Item* root = new Item;
manageWidget(widget, root);
QString used;
calculateAccelerators(root, used);
delete root;
}
void AcceleratorManagerPrivate::calculateAccelerators(Item* item, QString& used)
{
if (!item->m_children)
return;
// collect the contents
AccelStringList contents;
for (Item* it : *item->m_children) {
contents << it->m_content;
}
// find the right accelerators
AccelManagerAlgorithm::findAccelerators(contents, used);
// write them back into the widgets
int cnt = -1;
for (Item* it : *item->m_children) {
cnt++;
QDockWidget* dock = qobject_cast<QDockWidget*>(it->m_widget);
if (dock) {
if (checkChange(contents[cnt]))
dock->setWindowTitle(contents[cnt].accelerated());
continue;
}
QTabBar* tabBar = qobject_cast<QTabBar*>(it->m_widget);
if (tabBar) {
if (checkChange(contents[cnt]))
tabBar->setTabText(it->m_index, contents[cnt].accelerated());
continue;
}
QMenuBar* menuBar = qobject_cast<QMenuBar*>(it->m_widget);
if (menuBar) {
if (it->m_index >= 0) {
QAction* maction = menuBar->actions()[it->m_index];
if (maction) {
checkChange(contents[cnt]);
maction->setText(contents[cnt].accelerated());
}
continue;
}
}
// we possibly reserved an accel, but we won't set it as it looks silly
QGroupBox* groupBox = qobject_cast<QGroupBox*>(it->m_widget);
if (groupBox && !groupBox->isCheckable())
continue;
int tprop = it->m_widget->metaObject()->indexOfProperty("text");
if (tprop != -1) {
if (checkChange(contents[cnt]))
it->m_widget->setProperty("text", contents[cnt].accelerated());
}
else {
tprop = it->m_widget->metaObject()->indexOfProperty("title");
if (tprop != -1 && checkChange(contents[cnt]))
it->m_widget->setProperty("title", contents[cnt].accelerated());
}
}
// calculate the accelerators for the children
for (Item* it : *item->m_children) {
if (it->m_widget && it->m_widget->isVisibleTo(item->m_widget))
calculateAccelerators(it, used);
}
}
void AcceleratorManagerPrivate::traverseChildren(QWidget* widget, Item* item)
{
QList<QWidget*> childList = widget->findChildren<QWidget*>();
for (QWidget* w : childList) {
// Ignore unless we have the direct parent
if (qobject_cast<QWidget*>(w->parent()) != widget) continue;
if (!w->isVisibleTo(widget) || (w->isWindow() && qobject_cast<QMenu*>(w) == nullptr))
continue;
if (AcceleratorManagerPrivate::ignored_widgets.contains(w))
continue;
manageWidget(w, item);
}
}
void AcceleratorManagerPrivate::manageWidget(QWidget* w, Item* item)
{
// first treat the special cases
QTabBar* tabBar = qobject_cast<QTabBar*>(w);
if (tabBar) {
manageTabBar(tabBar, item);
return;
}
QStackedWidget* wds = qobject_cast<QStackedWidget*>(w);
if (wds) {
QWidgetStackAccelManager::manage(wds);
// return;
}
QDockWidget* dock = qobject_cast<QDockWidget*>(w);
if (dock) {
//QWidgetStackAccelManager::manage( wds );
manageDockWidget(dock, item);
}
QMenu* popupMenu = qobject_cast<QMenu*>(w);
if (popupMenu) {
// create a popup accel manager that can deal with dynamic menus
PopupAccelManager::manage(popupMenu);
return;
}
QStackedWidget* wdst = qobject_cast<QStackedWidget*>(w);
if (wdst) {
QWidgetStackAccelManager::manage(wdst);
// return;
}
QMenuBar* menuBar = qobject_cast<QMenuBar*>(w);
if (menuBar) {
manageMenuBar(menuBar, item);
return;
}
if (qobject_cast<QComboBox*>(w) || qobject_cast<QLineEdit*>(w) || w->inherits("Q3TextEdit") || qobject_cast<QTextEdit*>(w) || qobject_cast<QAbstractSpinBox*>(w) || w->inherits("KMultiTabBar"))
return;
if (w->inherits("KUrlRequester")) {
traverseChildren(w, item);
return;
}
if (qobject_cast<PathRequester*>(w)) {
traverseChildren(w, item);
return;
}
// now treat 'ordinary' widgets
QLabel* label = qobject_cast<QLabel*>(w);
if (label) {
if (!label->buddy())
return;
else {
if (label->textFormat() == Qt::RichText || (label->textFormat() == Qt::AutoText && Qt::mightBeRichText(label->text())))
return;
}
}
if (w->focusPolicy() != Qt::NoFocus || label || qobject_cast<QGroupBox*>(w) || qobject_cast<QRadioButton*>(w)) {
QString content;
QVariant variant;
int tprop = w->metaObject()->indexOfProperty("text");
if (tprop != -1) {
QMetaProperty p = w->metaObject()->property(tprop);
if (p.isValid() && p.isWritable())
variant = p.read(w);
else
tprop = -1;
}
if (tprop == -1) {
tprop = w->metaObject()->indexOfProperty("title");
if (tprop != -1) {
QMetaProperty p = w->metaObject()->property(tprop);
if (p.isValid() && p.isWritable())
variant = p.read(w);
}
}
if (variant.isValid())
content = variant.toString();
if (!content.isEmpty()) {
Item* i = new Item;
i->m_widget = w;
// put some more weight on the usual action elements
int weight = AccelManagerAlgorithm::DEFAULT_WEIGHT;
if (qobject_cast<QPushButton*>(w) || qobject_cast<QCheckBox*>(w) || qobject_cast<QRadioButton*>(w) || qobject_cast<QLabel*>(w))
weight = AccelManagerAlgorithm::ACTION_ELEMENT_WEIGHT;
// don't put weight on non-checkable group boxes,
// as usually the contents are more important
QGroupBox* groupBox = qobject_cast<QGroupBox*>(w);
if (groupBox) {
if (groupBox->isCheckable())
weight = AccelManagerAlgorithm::CHECKABLE_GROUP_BOX_WEIGHT;
else
weight = AccelManagerAlgorithm::GROUP_BOX_WEIGHT;
}
i->m_content = AccelString(content, weight);
item->addChild(i);
}
}
traverseChildren(w, item);
}
void AcceleratorManagerPrivate::manageTabBar(QTabBar* bar, Item* item)
{
// ignore QTabBar for QDockWidgets, because QDockWidget on its title change
// also updates its tabbar entry, so on the next run of KChecAccelerators
// this looks like a conflict and triggers a new reset of the shortcuts -> endless loop
QWidget* parentWidget = bar->parentWidget();
if (parentWidget) {
QMainWindow* mainWindow = qobject_cast<QMainWindow*>(parentWidget);
// TODO: find better hints that this is a QTabBar for QDockWidgets
if (mainWindow)// && (mainWindow->layout()->indexOf(bar) != -1)) QMainWindowLayout lacks proper support
return;
}
for (int i = 0; i < bar->count(); i++) {
QString content = bar->tabText(i);
if (content.isEmpty())
continue;
Item* it = new Item;
item->addChild(it);
it->m_widget = bar;
it->m_index = i;
it->m_content = AccelString(content);
}
}
void AcceleratorManagerPrivate::manageDockWidget(QDockWidget* dock, Item* item)
{
// As of Qt 4.4.3 setting a shortcut to a QDockWidget has no effect,
// because a QDockWidget does not grab it, even while displaying an underscore
// in the title for the given shortcut letter.
// Still it is useful to set the shortcut, because if QDockWidgets are tabbed,
// the tab automatically gets the same text as the QDockWidget title, including the shortcut.
// And for the QTabBar the shortcut does work, it gets grabbed as usual.
// Having the QDockWidget without a shortcut and resetting the tab text with a title including
// the shortcut does not work, the tab text is instantly reverted to the QDockWidget title
// (see also manageTabBar()).
// All in all QDockWidgets and shortcuts are a little broken for now.
QString content = dock->windowTitle();
if (content.isEmpty())
return;
Item* it = new Item;
item->addChild(it);
it->m_widget = dock;
it->m_content = AccelString(content, AccelManagerAlgorithm::STANDARD_ACCEL);
}
void AcceleratorManagerPrivate::manageMenuBar(QMenuBar* mbar, Item* item)
{
QAction* maction;
QString s;
for (int i = 0; i < mbar->actions().count(); ++i) {
maction = mbar->actions()[i];
if (!maction)
continue;
// nothing to do for separators
if (maction->isSeparator())
continue;
s = maction->text();
if (!s.isEmpty()) {
Item* it = new Item;
item->addChild(it);
it->m_content =
AccelString(s,
// menu titles are important, so raise the weight
AccelManagerAlgorithm::MENU_TITLE_WEIGHT);
it->m_widget = mbar;
it->m_index = i;
}
// have a look at the popup as well, if present
if (maction->menu())
PopupAccelManager::manage(maction->menu());
}
}
/*********************************************************************
class AcceleratorManager - main entry point
This class is just here to provide a clean public API...
*********************************************************************/
void AcceleratorManager::manage(QWidget* widget, bool programmers_mode)
{
AcceleratorManagerPrivate::changed_string.clear();
AcceleratorManagerPrivate::added_string.clear();
AcceleratorManagerPrivate::removed_string.clear();
AcceleratorManagerPrivate::programmers_mode = programmers_mode;
AcceleratorManagerPrivate::manage(widget);
}
void AcceleratorManager::last_manage(QString& added, QString& changed, QString& removed)
{
added = AcceleratorManagerPrivate::added_string;
changed = AcceleratorManagerPrivate::changed_string;
removed = AcceleratorManagerPrivate::removed_string;
}
/*********************************************************************
class AccelString - a string with weighted characters
*********************************************************************/
AccelString::AccelString(const QString& input, int initialWeight)
: m_pureText(input), m_weight()
{
m_orig_accel = m_pureText.indexOf("(!)&");
if (m_orig_accel != -1)
m_pureText.remove(m_orig_accel, 4);
m_orig_accel = m_pureText.indexOf("(&&)");
if (m_orig_accel != -1)
m_pureText.replace(m_orig_accel, 4, "&");
m_origText = m_pureText;
if (m_pureText.contains('\t'))
m_pureText = m_pureText.left(m_pureText.indexOf('\t'));
m_orig_accel = m_accel = stripAccelerator(m_pureText);
if (initialWeight == -1)
initialWeight = AccelManagerAlgorithm::DEFAULT_WEIGHT;
calculateWeights(initialWeight);
// dump();
}
QString AccelString::accelerated() const
{
QString result = m_origText;
if (result.isEmpty())
return result;
if (AcceleratorManagerPrivate::programmers_mode) {
if (m_accel != m_orig_accel) {
int oa = m_orig_accel;
if (m_accel >= 0) {
result.insert(m_accel, "(!)&");
if (m_accel < m_orig_accel)
oa += 4;
}
if (m_orig_accel >= 0)
result.replace(oa, 1, "(&&)");
}
}
else {
if (m_accel >= 0 && m_orig_accel != m_accel) {
if (m_orig_accel != -1)
result.remove(m_orig_accel, 1);
result.insert(m_accel, "&");
}
}
return result;
}
QChar AccelString::accelerator() const
{
if ((m_accel < 0) || (m_accel > (int)m_pureText.length()))
return QChar();
return m_pureText[m_accel].toLower();
}
void AccelString::calculateWeights(int initialWeight)
{
m_weight.resize(m_pureText.length());
int pos = 0;
bool start_character = true;
while (pos < m_pureText.length()) {
QChar c = m_pureText[pos];
int weight = initialWeight + 1;
// add special weight to first character
if (pos == 0)
weight += AccelManagerAlgorithm::FIRST_CHARACTER_EXTRA_WEIGHT;
// add weight to word beginnings
if (start_character) {
weight += AccelManagerAlgorithm::WORD_BEGINNING_EXTRA_WEIGHT;
start_character = false;
}
// add decreasing weight to left characters
if (pos < 50)
weight += (50 - pos);
// try to preserve the wanted accelarators
if ((int)pos == accel()) {
weight += AccelManagerAlgorithm::WANTED_ACCEL_EXTRA_WEIGHT;
// kDebug(240) << "wanted " << m_pureText << " " << AcceleratorManagerPrivate::standardName(m_origText);
if (AcceleratorManagerPrivate::standardName(m_origText)) {
weight += AccelManagerAlgorithm::STANDARD_ACCEL;
}
}
// skip non typeable characters
if (!c.isLetterOrNumber()) {
weight = 0;
start_character = true;
}
m_weight[pos] = weight;
++pos;
}
}
int AccelString::stripAccelerator(QString& text)
{
// Note: this code is derived from QAccel::shortcutKey
int p = 0;
while (p >= 0) {
p = text.indexOf('&', p) + 1;
if (p <= 0 || p >= (int)text.length())
break;
if (text[p] != '&') {
QChar c = text[p];
if (c.isPrint()) {
text.remove(p - 1, 1);
return p - 1;
}
}
p++;
}
return -1;
}
int AccelString::maxWeight(int& index, const QString& used) const
{
int max = 0;
index = -1;
for (int pos = 0; pos < m_pureText.length(); ++pos)
if (used.indexOf(m_pureText[pos], 0, Qt::CaseInsensitive) == -1 && m_pureText[pos].toLatin1() != 0)
if (m_weight[pos] > max) {
max = m_weight[pos];
index = pos;
}
return max;
}
void AccelString::dump()
{
QString s;
for (int i = 0; i < m_weight.count(); ++i)
s += QString("%1(%2) ").arg(pure()[i]).arg(m_weight[i]);
// kDebug() << "s " << s;
}
/*********************************************************************
findAccelerators - the algorithm determining the new accelerators
The algorithm is very crude:
* each character in each widget text is assigned a weight
* the character with the highest weight over all is picked
* that widget is removed from the list
* the weights are recalculated
* the process is repeated until no more accelerators can be found
The algorithm has some advantages:
* it favors 'nice' accelerators (first characters in a word, etc.)
* it is quite fast, O(N²)
* it is easy to understand :-)
The disadvantages:
* it does not try to find as many accelerators as possible
TODO:
* The result is always correct, but not necessarily optimal. Perhaps
it would be a good idea to add another algorithm with higher complexity
that gets used when this one fails, i.e. leaves widgets without
accelerators.
* The weights probably need some tweaking so they make more sense.
*********************************************************************/
void AccelManagerAlgorithm::findAccelerators(AccelStringList& result, QString& used)
{
AccelStringList accel_strings = result;
// initially remove all accelerators
for (AccelStringList::Iterator it = result.begin(); it != result.end(); ++it) {
(*it).setAccel(-1);
}
// pick the highest bids
for (int cnt = 0; cnt < accel_strings.count(); ++cnt) {
int max = 0, index = -1, accel = -1;
// find maximum weight
for (int i = 0; i < accel_strings.count(); ++i) {
int a;
int m = accel_strings[i].maxWeight(a, used);
if (m > max) {
max = m;
index = i;
accel = a;
}
}
// stop if no more accelerators can be found
if (index < 0)
return;
// insert the accelerator
if (accel >= 0) {
result[index].setAccel(accel);
used.append(result[index].accelerator());
}
// make sure we don't visit this one again
accel_strings[index] = AccelString();
}
}
/*********************************************************************
class PopupAccelManager - managing QPopupMenu widgets dynamically
*********************************************************************/
PopupAccelManager::PopupAccelManager(QMenu* popup)
: QObject(popup), m_popup(popup), m_count(-1)
{
aboutToShow();// do one check and then connect to show
connect(popup, SIGNAL(aboutToShow()), SLOT(aboutToShow()));
}
void PopupAccelManager::aboutToShow()
{
// Note: we try to be smart and avoid recalculating the accelerators
// whenever possible. Unfortunately, there is no way to know if an
// item has been added or removed, so we can not do much more than
// to compare the items each time the menu is shown :-(
if (m_count != (int)m_popup->actions().count()) {
findMenuEntries(m_entries);
calculateAccelerators();
m_count = m_popup->actions().count();
}
else {
AccelStringList entries;
findMenuEntries(entries);
if (entries != m_entries) {
m_entries = entries;
calculateAccelerators();
}
}
}
void PopupAccelManager::calculateAccelerators()
{
// find the new accelerators
QString used;
AccelManagerAlgorithm::findAccelerators(m_entries, used);
// change the menu entries
setMenuEntries(m_entries);
}
void PopupAccelManager::findMenuEntries(AccelStringList& list)
{
QString s;
list.clear();
// read out the menu entries
for (QAction* maction : m_popup->actions()) {
if (maction->isSeparator())
continue;
s = maction->text();
// in full menus, look at entries with global accelerators last
int weight = 50;
if (s.contains('\t'))
weight = 0;
list.append(AccelString(s, weight));
// have a look at the popup as well, if present
if (maction->menu())
PopupAccelManager::manage(maction->menu());
}
}
void PopupAccelManager::setMenuEntries(const AccelStringList& list)
{
uint cnt = 0;
for (QAction* maction : m_popup->actions()) {
if (maction->isSeparator())
continue;
if (AcceleratorManagerPrivate::checkChange(list[cnt]))
maction->setText(list[cnt].accelerated());
cnt++;
}
}
void PopupAccelManager::manage(QMenu* popup)
{
// don't add more than one manager to a popup
if (popup->findChild<PopupAccelManager*>(QString()) == nullptr)
new PopupAccelManager(popup);
}
void QWidgetStackAccelManager::manage(QStackedWidget* stack)
{
if (stack->findChild<QWidgetStackAccelManager*>(QString()) == nullptr)
new QWidgetStackAccelManager(stack);
}
QWidgetStackAccelManager::QWidgetStackAccelManager(QStackedWidget* stack)
: QObject(stack), m_stack(stack)
{
currentChanged(stack->currentIndex());// do one check and then connect to show
connect(stack, SIGNAL(currentChanged(int)), SLOT(currentChanged(int)));
}
bool QWidgetStackAccelManager::eventFilter(QObject* watched, QEvent* e)
{
// 'Paint' seems to be required for Cantata's PageWidget???
if ((e->type() == QEvent::Show || e->type() == QEvent::Paint) && qApp->activeWindow()) {
AcceleratorManager::manage(qApp->activeWindow());
watched->removeEventFilter(this);
}
return false;
}
void QWidgetStackAccelManager::currentChanged(int child)
{
if (child < 0 || child >= static_cast<QStackedWidget*>(parent())->count()) {
// NOTE: QStackedWidget emits currentChanged(-1) when it is emptied
return;
}
static_cast<QStackedWidget*>(parent())->widget(child)->installEventFilter(this);
}
void AcceleratorManager::setNoAccel(QWidget* widget)
{
AcceleratorManagerPrivate::ignored_widgets[widget] = 1;
}
#include "moc_acceleratormanager_private.cpp"
|