|
|
|
|
@ -356,7 +356,7 @@ void AnnotationActionHandlerPrivate::populateQuickAnnotations() |
|
|
|
|
QAction *annFav = new QAction(toolIcon, itemText, q); |
|
|
|
|
aQuickTools->addAction(annFav); |
|
|
|
|
if (shortcutNumber != numberKeys.end()) |
|
|
|
|
annFav->setShortcut(QKeySequence(Qt::ALT + *(shortcutNumber++))); |
|
|
|
|
annFav->setShortcut(QKeySequence(*(shortcutNumber++))); |
|
|
|
|
QObject::connect(annFav, &QAction::triggered, q, [this, favToolId]() { slotQuickToolSelected(favToolId); }); |
|
|
|
|
|
|
|
|
|
QDomElement engineElement = favToolElement.firstChildElement(QStringLiteral("engine")); |
|
|
|
|
@ -688,16 +688,16 @@ AnnotationActionHandler::AnnotationActionHandler(PageViewAnnotator *parent, KAct |
|
|
|
|
ac->addAction(QStringLiteral("annotation_settings_advanced"), d->aAdvancedSettings); |
|
|
|
|
|
|
|
|
|
ac->setDefaultShortcut(d->aShowToolBar, Qt::Key_F6); |
|
|
|
|
ac->setDefaultShortcut(aHighlighter, Qt::Key_1); |
|
|
|
|
ac->setDefaultShortcut(aUnderline, Qt::Key_2); |
|
|
|
|
ac->setDefaultShortcut(aSquiggle, Qt::Key_3); |
|
|
|
|
ac->setDefaultShortcut(aStrikeout, Qt::Key_4); |
|
|
|
|
ac->setDefaultShortcut(aTypewriter, Qt::Key_5); |
|
|
|
|
ac->setDefaultShortcut(aInlineNote, Qt::Key_6); |
|
|
|
|
ac->setDefaultShortcut(aPopupNote, Qt::Key_7); |
|
|
|
|
ac->setDefaultShortcut(aFreehandLine, Qt::Key_8); |
|
|
|
|
ac->setDefaultShortcut(aArrow, Qt::Key_9); |
|
|
|
|
ac->setDefaultShortcut(aRectangle, Qt::Key_0); |
|
|
|
|
ac->setDefaultShortcut(aHighlighter, Qt::ALT + Qt::Key_1); |
|
|
|
|
ac->setDefaultShortcut(aUnderline, Qt::ALT + Qt::Key_2); |
|
|
|
|
ac->setDefaultShortcut(aSquiggle, Qt::ALT + Qt::Key_3); |
|
|
|
|
ac->setDefaultShortcut(aStrikeout, Qt::ALT + Qt::Key_4); |
|
|
|
|
ac->setDefaultShortcut(aTypewriter, Qt::ALT + Qt::Key_5); |
|
|
|
|
ac->setDefaultShortcut(aInlineNote, Qt::ALT + Qt::Key_6); |
|
|
|
|
ac->setDefaultShortcut(aPopupNote, Qt::ALT + Qt::Key_7); |
|
|
|
|
ac->setDefaultShortcut(aFreehandLine, Qt::ALT + Qt::Key_8); |
|
|
|
|
ac->setDefaultShortcut(aArrow, Qt::ALT + Qt::Key_9); |
|
|
|
|
ac->setDefaultShortcut(aRectangle, Qt::ALT + Qt::Key_0); |
|
|
|
|
ac->setDefaultShortcut(d->aAddToQuickTools, QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_B)); |
|
|
|
|
d->updateConfigActions(); |
|
|
|
|
} |
|
|
|
|
|