You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
5.0 KiB
C++
150 lines
5.0 KiB
C++
/*
|
|
* Copyright 2017-2018 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 "checkboxdelegate.h"
|
|
|
|
// local
|
|
#include "../settingsdialog.h"
|
|
#include "../models/layoutsmodel.h"
|
|
#include "../tools/settingstools.h"
|
|
|
|
// Qt
|
|
#include <QApplication>
|
|
#include <QDebug>
|
|
#include <QEvent>
|
|
#include <QKeyEvent>
|
|
#include <QMouseEvent>
|
|
#include <QPainter>
|
|
#include <QStandardItemModel>
|
|
|
|
namespace Latte {
|
|
namespace Settings {
|
|
namespace Layouts {
|
|
namespace Delegates {
|
|
|
|
CheckBox::CheckBox(QObject *parent)
|
|
: QStyledItemDelegate(parent)
|
|
{
|
|
auto *settingsDialog = qobject_cast<Latte::SettingsDialog *>(parent);
|
|
|
|
if (settingsDialog) {
|
|
m_settingsDialog = settingsDialog;
|
|
}
|
|
}
|
|
|
|
void CheckBox::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
|
|
{
|
|
QStyleOptionViewItem adjustedOption = option;
|
|
//! Remove the focus dotted lines
|
|
adjustedOption.state = (adjustedOption.state & ~QStyle::State_HasFocus);
|
|
adjustedOption.displayAlignment = Qt::AlignHCenter;
|
|
|
|
if (adjustedOption.state & QStyle::State_Enabled) {
|
|
QStandardItemModel *model = (QStandardItemModel *) index.model();
|
|
QStyledItemDelegate::paint(painter, adjustedOption, model->index(index.row(), Model::Layouts::HIDDENTEXTCOLUMN));
|
|
|
|
QStyledItemDelegate::paint(painter, adjustedOption, index);
|
|
} else {
|
|
// Disabled
|
|
bool isSelected{Latte::isSelected(option)};
|
|
QPalette::ColorRole backColorRole = isSelected ? QPalette::Highlight : QPalette::Base;
|
|
QPalette::ColorRole textColorRole = isSelected ? QPalette::HighlightedText : QPalette::Text;
|
|
|
|
// background
|
|
painter->fillRect(option.rect, option.palette.brush(Latte::colorGroup(option), backColorRole));
|
|
|
|
// text
|
|
QPen pen(Qt::DashDotDotLine);
|
|
pen.setWidth(2); pen.setColor(option.palette.brush(Latte::colorGroup(option), textColorRole).color());
|
|
int y = option.rect.y()+option.rect.height()/2;
|
|
|
|
bool inMenu = m_settingsDialog->isMenuCell(index.column());
|
|
int space = inMenu ? option.rect.height() / 2 : 0;
|
|
|
|
painter->setPen(pen);
|
|
|
|
if (qApp->layoutDirection() == Qt::LeftToRight) {
|
|
painter->drawLine(option.rect.x() + space, y,
|
|
option.rect.x() + option.rect.width(), y);
|
|
|
|
if (inMenu) {
|
|
int xm = option.rect.x() + space;
|
|
int thick = option.rect.height() / 2;
|
|
int ym = option.rect.y() + ((option.rect.height() - thick) / 2);
|
|
|
|
pen.setStyle(Qt::SolidLine);
|
|
painter->setPen(pen);
|
|
painter->drawLine(xm, ym, xm, ym + thick);
|
|
}
|
|
|
|
} else {
|
|
painter->drawLine(option.rect.x(), y,
|
|
option.rect.x()+option.rect.width() - space, y);
|
|
|
|
if (inMenu) {
|
|
int xm = option.rect.x() + option.rect.width() - space;
|
|
int thick = option.rect.height() / 2;
|
|
int ym = option.rect.y() + ((option.rect.height() - thick) / 2);
|
|
|
|
pen.setStyle(Qt::SolidLine);
|
|
painter->setPen(pen);
|
|
painter->drawLine(xm, ym, xm, ym + thick);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool CheckBox::editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option,
|
|
const QModelIndex &index)
|
|
{
|
|
Q_ASSERT(event);
|
|
Q_ASSERT(model);
|
|
|
|
// // make sure that the item is checkable
|
|
// Qt::ItemFlags flags = model->flags(index);
|
|
//
|
|
// if (!(flags & Qt::ItemIsUserCheckable) || !(flags & Qt::ItemIsEnabled))
|
|
// return false;
|
|
//
|
|
// // make sure that we have a check state
|
|
QString value{index.data().toString()};
|
|
//
|
|
// if (!value.isValid())
|
|
// return false;
|
|
|
|
// make sure that we have the right event type
|
|
if (event->type() == QEvent::MouseButtonDblClick) {
|
|
if (!option.rect.contains(static_cast<QMouseEvent *>(event)->pos()))
|
|
return false;
|
|
} else if (event->type() == QEvent::KeyPress) {
|
|
if (static_cast<QKeyEvent *>(event)->key() != Qt::Key_Space && static_cast<QKeyEvent *>(event)->key() != Qt::Key_Select)
|
|
return false;
|
|
} else {
|
|
return false;
|
|
}
|
|
|
|
const QChar CheckMark{0x2714};
|
|
return model->setData(index, value == CheckMark ? false : true, Qt::DisplayRole);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|