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
|
/* BEGIN_COMMON_COPYRIGHT_HEADER
* (c)LGPL2+
*
* LXQt - a lightweight, Qt based, desktop toolset
* https://lxqt.org
*
* Copyright: 2010-2012 Razor team
* Authors:
* Alexander Sokoloff <sokoloff.a@gmail.com>
*
* This program or library is free software; you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* END_COMMON_COPYRIGHT_HEADER */
#include "popupmenu.h"
#include <QWidgetAction>
#include <QToolButton>
#include <QEvent>
#include <QKeyEvent>
static const char POPUPMENU_TITLE[] = "POPUP_MENU_TITLE_OBJECT_NAME";
/************************************************
************************************************/
QAction* PopupMenu::addTitle(const QIcon &icon, const QString &text)
{
QAction *buttonAction = new QAction(this);
QFont font = buttonAction->font();
font.setBold(true);
buttonAction->setText(QString(text).replace(QLatin1String("&"), QLatin1String("&&")));
buttonAction->setFont(font);
buttonAction->setIcon(icon);
QWidgetAction *action = new QWidgetAction(this);
action->setObjectName(QLatin1String(POPUPMENU_TITLE));
QToolButton *titleButton = new QToolButton(this);
titleButton->installEventFilter(this); // prevent clicks on the title of the menu
titleButton->setDefaultAction(buttonAction);
titleButton->setDown(true); // prevent hover style changes in some styles
titleButton->setCheckable(true);
titleButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
action->setDefaultWidget(titleButton);
addAction(action);
return action;
}
/************************************************
************************************************/
QAction* PopupMenu::addTitle(const QString &text)
{
return addTitle(QIcon(), text);
}
/************************************************
************************************************/
bool PopupMenu::eventFilter(QObject *object, QEvent *event)
{
Q_UNUSED(object);
if (event->type() == QEvent::Paint ||
event->type() == QEvent::KeyPress ||
event->type() == QEvent::KeyRelease
)
{
return false;
}
event->accept();
return true;
}
/************************************************
************************************************/
void PopupMenu::keyPressEvent(QKeyEvent* e)
{
if (e->key() == Qt::Key_Up || e->key() == Qt::Key_Down)
{
QMenu::keyPressEvent(e);
QWidgetAction *action = qobject_cast<QWidgetAction*>(this->activeAction());
QWidgetAction *firstAction = action;
while (action && action->objectName() == QLatin1String(POPUPMENU_TITLE))
{
this->keyPressEvent(e);
action = qobject_cast<QWidgetAction*>(this->activeAction());
if (firstAction == action) // we looped and only found titles
{
this->setActiveAction(nullptr);
break;
}
}
return;
}
QMenu::keyPressEvent(e);
}
|