|
|
|
/*
|
|
|
|
* 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 "layoutscombobox.h"
|
|
|
|
|
|
|
|
// local
|
|
|
|
#include "generictools.h"
|
|
|
|
|
|
|
|
// Qt
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QPalette>
|
|
|
|
#include <QStyleOptionComboBox>
|
|
|
|
#include <QStylePainter>
|
|
|
|
|
|
|
|
namespace Latte {
|
|
|
|
namespace Settings {
|
|
|
|
|
|
|
|
const int MARGIN = 2;
|
|
|
|
const int VERTMARGIN = 3;
|
|
|
|
|
|
|
|
LayoutsComboBox::LayoutsComboBox(QWidget *parent)
|
|
|
|
: QComboBox (parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Latte::Data::LayoutIcon LayoutsComboBox::layoutIcon() const
|
|
|
|
{
|
|
|
|
return m_layoutIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayoutsComboBox::setLayoutIcon(const Latte::Data::LayoutIcon &icon)
|
|
|
|
{
|
|
|
|
if (m_layoutIcon == icon) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_layoutIcon = icon;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayoutsComboBox::paintEvent(QPaintEvent *event)
|
|
|
|
{
|
|
|
|
QStylePainter painter(this);
|
|
|
|
painter.setPen(palette().color(QPalette::Text));
|
|
|
|
|
|
|
|
// draw the combobox frame, focusrect and selected etc.
|
|
|
|
QStyleOptionComboBox opt;
|
|
|
|
initStyleOption(&opt);
|
|
|
|
painter.drawComplexControl(QStyle::CC_ComboBox, opt);
|
|
|
|
|
|
|
|
//! Adjust text and layout icon accordingly
|
|
|
|
int thick = opt.rect.height() - 2 * VERTMARGIN;
|
|
|
|
QStyleOptionComboBox iconOpt = opt;
|
|
|
|
iconOpt.rect = QRect(opt.rect.x() + MARGIN, opt.rect.y() + VERTMARGIN, opt.rect.width() - 2*MARGIN, opt.rect.height() - 2 * VERTMARGIN);
|
|
|
|
QRect remained = Latte::remainedFromLayoutIcon(iconOpt, Qt::AlignLeft);
|
|
|
|
|
|
|
|
Latte::drawLayoutIcon(&painter, iconOpt, m_layoutIcon.isBackgroundFile, m_layoutIcon.name, Qt::AlignLeft);
|
|
|
|
|
|
|
|
QRect textRect;
|
|
|
|
|
|
|
|
if (qApp->layoutDirection() == Qt::LeftToRight) {
|
|
|
|
textRect = QRect(remained.x() - 2*MARGIN, opt.rect.y(), remained.width() + 4*MARGIN, opt.rect.height());
|
|
|
|
} else {
|
|
|
|
textRect = QRect(remained.x(), opt.rect.y(), remained.width() + 4*MARGIN, opt.rect.height());
|
|
|
|
}
|
|
|
|
|
|
|
|
QStyleOptionComboBox adjOpt = opt;
|
|
|
|
adjOpt.rect = textRect;
|
|
|
|
painter.drawControl(QStyle::CE_ComboBoxLabel, adjOpt);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|