viewsdialog provide custom menu items
parent
e9b90a1fc1
commit
b5f483abf8
@ -0,0 +1,82 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2021 Michail Vourlakos <mvourlakos@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of Latte-Dock
|
||||||
|
*
|
||||||
|
* Latte-Dock is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License as
|
||||||
|
* published by the Free Software Foundation; either version 2 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Latte-Dock 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "custommenuitemwidget.h"
|
||||||
|
|
||||||
|
// local
|
||||||
|
#include "../../generic/generictools.h"
|
||||||
|
|
||||||
|
// Qt
|
||||||
|
#include <QDebug>
|
||||||
|
#include <QHBoxLayout>
|
||||||
|
#include <QPainter>
|
||||||
|
#include <QStyleOptionMenuItem>
|
||||||
|
|
||||||
|
namespace Latte {
|
||||||
|
namespace Settings {
|
||||||
|
namespace View {
|
||||||
|
namespace Widget {
|
||||||
|
|
||||||
|
CustomMenuItemWidget::CustomMenuItemWidget(QAction* action, QWidget *parent)
|
||||||
|
: QWidget(parent),
|
||||||
|
m_action(action)
|
||||||
|
{
|
||||||
|
setMouseTracking(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
QSize CustomMenuItemWidget::minimumSizeHint() const
|
||||||
|
{
|
||||||
|
QStyleOptionMenuItem opt;
|
||||||
|
QSize contentSize = fontMetrics().size(Qt::TextSingleLine | Qt::TextShowMnemonic, m_action->text());
|
||||||
|
contentSize.setHeight(contentSize.height() + 9);
|
||||||
|
return style()->sizeFromContents(QStyle::CT_MenuItem, &opt, contentSize, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CustomMenuItemWidget::paintEvent(QPaintEvent* e)
|
||||||
|
{
|
||||||
|
QPainter painter(this);
|
||||||
|
painter.save();
|
||||||
|
QStyleOptionMenuItem opt;
|
||||||
|
opt.initFrom(this);
|
||||||
|
opt.text = m_action->text();
|
||||||
|
opt.menuItemType = QStyleOptionMenuItem::Normal;
|
||||||
|
opt.menuHasCheckableItems = false;
|
||||||
|
|
||||||
|
if (rect().contains(mapFromGlobal(QCursor::pos()))) {
|
||||||
|
opt.state |= QStyle::State_Selected;
|
||||||
|
}
|
||||||
|
|
||||||
|
QRect remained = Latte::remainedFromIcon(opt);
|
||||||
|
|
||||||
|
Latte::drawIconBackground(&painter, style(), opt);
|
||||||
|
|
||||||
|
if (!m_action->icon().name().isEmpty()) {
|
||||||
|
Latte::drawIcon(&painter, opt, m_action->icon().name());
|
||||||
|
}
|
||||||
|
|
||||||
|
opt.rect = remained;
|
||||||
|
style()->drawControl(QStyle::CE_MenuItem, &opt, &painter, this);
|
||||||
|
|
||||||
|
painter.restore();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2021 Michail Vourlakos <mvourlakos@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of Latte-Dock
|
||||||
|
*
|
||||||
|
* Latte-Dock is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License as
|
||||||
|
* published by the Free Software Foundation; either version 2 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Latte-Dock 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef CUSTOMMENUITEMWIDGET_H
|
||||||
|
#define CUSTOMMENUITEMWIDGET_H
|
||||||
|
|
||||||
|
// Qt
|
||||||
|
#include <QAction>
|
||||||
|
#include <QWidget>
|
||||||
|
#include <QWidgetAction>
|
||||||
|
#include <QPaintEvent>
|
||||||
|
|
||||||
|
namespace Latte {
|
||||||
|
namespace Settings {
|
||||||
|
namespace View {
|
||||||
|
namespace Widget {
|
||||||
|
|
||||||
|
class CustomMenuItemWidget : public QWidget {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
CustomMenuItemWidget(QAction* action, QWidget *parent);
|
||||||
|
|
||||||
|
QSize minimumSizeHint() const override;
|
||||||
|
void paintEvent(QPaintEvent* e) override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
QAction *m_action{nullptr};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue