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
|
/*
standardpathswidget.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2012 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Volker Krause <volker.krause@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include "standardpathswidget.h"
#include "ui_standardpathswidget.h"
#include <common/objectbroker.h>
#include <QApplication>
#include <QIdentityProxyModel>
#include <QStyledItemDelegate>
#include <QPainter>
#include <QDebug>
using namespace GammaRay;
namespace GammaRay {
class StandardPathsProxy : public QIdentityProxyModel
{
Q_OBJECT
public:
explicit StandardPathsProxy(QObject *parent = nullptr)
: QIdentityProxyModel(parent)
{
}
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const override
{
if (section == 2 && role == Qt::DisplayRole)
return tr("Locations Standard / Writable");
return QIdentityProxyModel::headerData(section, orientation, role);
}
};
class StandardPathsDelegate : public QStyledItemDelegate
{
Q_OBJECT
public:
explicit StandardPathsDelegate(QObject *parent = nullptr)
: QStyledItemDelegate(parent)
{
}
void paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const override
{
if (index.column() == 2) {
QStyleOptionViewItem opt = option;
initStyleOption(&opt, index);
const QWidget *widget = opt.widget;
QStyle *style = widget ? widget->style() : QApplication::style();
style->drawControl(QStyle::CE_ItemViewItem, &opt, painter, widget);
const int textMargin = style->pixelMetric(QStyle::PM_FocusFrameHMargin, nullptr, widget) + 1;
const QRect textRect = style->subElementRect(QStyle::SE_ItemViewItemText, &opt, widget)
.adjusted(textMargin, 1, -textMargin, -1);
painter->setPen(((opt.state
& QStyle::State_Selected)
? opt.palette.highlightedText()
: opt.palette.text())
.color());
painter->drawText(textRect, Qt::AlignBottom | Qt::AlignLeft,
index.sibling(index.row(), 3).data().toString());
} else {
QStyledItemDelegate::paint(painter, option, index);
}
}
QSize sizeHint(const QStyleOptionViewItem &option,
const QModelIndex &index) const override
{
if (index.column() == 2) {
QSize s1 = QStyledItemDelegate::sizeHint(option, index.sibling(index.row(), 2));
QSize s2 = QStyledItemDelegate::sizeHint(option, index.sibling(index.row(), 3));
return { qMax(s1.width(), s2.width()),
s1.height() + s2.height() + option.fontMetrics.height() };
} else {
return QStyledItemDelegate::sizeHint(option, index);
}
}
};
}
StandardPathsWidget::StandardPathsWidget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::StandardPathsWidget)
, m_stateManager(this)
{
ui->setupUi(this);
auto *proxy = new StandardPathsProxy(this);
proxy->setSourceModel(ObjectBroker::model(QStringLiteral(
"com.kdab.GammaRay.StandardPathsModel")));
ui->pathView->header()->setObjectName("pathViewHeader");
ui->pathView->setUniformRowHeights(false);
ui->pathView->setDeferredResizeMode(0, QHeaderView::ResizeToContents);
ui->pathView->setDeferredResizeMode(1, QHeaderView::ResizeToContents);
ui->pathView->setDeferredHidden(3, true);
ui->pathView->setItemDelegateForColumn(2, new StandardPathsDelegate(this));
ui->pathView->setModel(proxy);
}
StandardPathsWidget::~StandardPathsWidget() = default;
#include "standardpathswidget.moc"
|