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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
/*
propertyeditordelegate.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2013 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 "propertyeditordelegate.h"
#include "propertyeditorfactory.h"
#include "propertyextendededitor.h"
#include <common/sourcelocation.h>
#include <QApplication>
#include <QDebug>
#include <QMatrix4x4>
#include <QPainter>
#include <QQuaternion>
#include <QVector2D>
#include <QVector3D>
#include <QVector4D>
using namespace GammaRay;
namespace {
template<typename T>
struct matrix_trait
{
};
template<>
struct matrix_trait<QMatrix4x4>
{
static const int rows = 4;
static const int columns = 4;
static qreal value(const QMatrix4x4 &matrix, int r, int c)
{
return matrix(r, c);
}
};
template<>
struct matrix_trait<QTransform>
{
static const int rows = 3;
static const int columns = 3;
static qreal value(const QTransform &matrix, int r, int c)
{
switch (r << 4 | c) {
case 0x00:
return matrix.m11();
case 0x01:
return matrix.m12();
case 0x02:
return matrix.m13();
case 0x10:
return matrix.m21();
case 0x11:
return matrix.m22();
case 0x12:
return matrix.m23();
case 0x20:
return matrix.m31();
case 0x21:
return matrix.m32();
case 0x22:
return matrix.m33();
}
Q_ASSERT(false);
return 0.0;
}
};
template<>
struct matrix_trait<QVector2D>
{
static const int rows = 2;
static const int columns = 1;
static qreal value(const QVector2D &vec, int r, int)
{
return vec[r];
}
};
template<>
struct matrix_trait<QVector3D>
{
static const int rows = 3;
static const int columns = 1;
static qreal value(const QVector3D &vec, int r, int)
{
return vec[r];
}
};
template<>
struct matrix_trait<QVector4D>
{
static const int rows = 4;
static const int columns = 1;
static qreal value(const QVector4D &vec, int r, int)
{
return vec[r];
}
};
template<>
struct matrix_trait<QQuaternion>
{
static const int rows = 3;
static const int columns = 1;
static qreal value(const QQuaternion &quaternion, int r, int)
{
float pitch, yaw, roll;
quaternion.getEulerAngles(&pitch, &yaw, &roll);
switch (r) {
case 0:
return pitch;
case 1:
return yaw;
case 2:
return roll;
}
Q_ASSERT(false);
return 0.0;
}
};
}
PropertyEditorDelegate::PropertyEditorDelegate(QObject *parent)
: QStyledItemDelegate(parent)
{
setItemEditorFactory(PropertyEditorFactory::instance());
}
PropertyEditorDelegate::~PropertyEditorDelegate() = default;
void PropertyEditorDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const
{
editor->setProperty("displayString", index.data(Qt::DisplayRole));
QStyledItemDelegate::setEditorData(editor, index);
}
void PropertyEditorDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
const QVariant value = index.data(Qt::EditRole);
if (value.canConvert<QMatrix4x4>()) {
paint(painter, option, index, value.value<QMatrix4x4>());
} else if (value.typeId() == QMetaType::QTransform) {
paint(painter, option, index, value.value<QTransform>());
} else if (value.canConvert<QVector2D>()) {
paint(painter, option, index, value.value<QVector2D>());
} else if (value.canConvert<QVector3D>()) {
paint(painter, option, index, value.value<QVector3D>());
} else if (value.canConvert<QVector4D>()) {
paint(painter, option, index, value.value<QVector4D>());
} else if (value.typeId() == QMetaType::QQuaternion) {
paint(painter, option, index, value.value<QQuaternion>());
} else {
QStyledItemDelegate::paint(painter, option, index);
}
}
QSize PropertyEditorDelegate::sizeHint(const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
const QVariant value = index.data(Qt::EditRole);
if (value.canConvert<QMatrix4x4>()) {
return sizeHint(option, index, value.value<QMatrix4x4>());
} else if (value.typeId() == QMetaType::QTransform) {
return sizeHint(option, index, value.value<QTransform>());
} else if (value.canConvert<QVector2D>()) {
return sizeHint(option, index, value.value<QVector2D>());
} else if (value.canConvert<QVector3D>()) {
return sizeHint(option, index, value.value<QVector3D>());
} else if (value.canConvert<QVector4D>()) {
return sizeHint(option, index, value.value<QVector4D>());
} else if (value.typeId() == QMetaType::QQuaternion) {
return sizeHint(option, index, value.value<QQuaternion>());
}
// We don't want multiline texts for String values
if (value.typeId() == QMetaType::QString || value.typeId() == QMetaType::QByteArray) {
QStyleOptionViewItem opt = option;
QSize sh = QStyledItemDelegate::sizeHint(opt, index);
initStyleOption(&opt, index);
return sh.boundedTo(QSize(sh.width(), opt.fontMetrics.height()));
}
return QStyledItemDelegate::sizeHint(option, index);
}
template<typename Matrix>
void PropertyEditorDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option,
const QModelIndex &index, const Matrix &matrix) const
{
QStyleOptionViewItem opt = option;
initStyleOption(&opt, index);
opt.text.clear();
QApplication::style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter, opt.widget);
QRect textRect = QApplication::style()->subElementRect(QStyle::SE_ItemViewItemText, &opt,
opt.widget);
const int textHMargin = QApplication::style()->pixelMetric(QStyle::PM_FocusFrameHMargin, nullptr,
opt.widget)
+ 1;
static const int textVMargin = 1;
textRect = textRect.adjusted(textHMargin, textVMargin, -textHMargin, -textVMargin);
static const int parenthesisLineWidth = 1;
const int matrixSpacing = opt.fontMetrics.horizontalAdvance(QStringLiteral("x"));
const int matrixHMargin = matrixSpacing / 2;
const int parenthesisWidth = qMax(matrixHMargin, 3);
painter->save();
painter->setClipRect(textRect);
painter->translate(textRect.topLeft());
painter->setPen(opt.palette.color(opt.state
& QStyle::State_Selected
? QPalette::HighlightedText
: QPalette::Text));
int xOffset = 0;
painter->drawLine(xOffset, 0, xOffset, textRect.height());
painter->drawLine(xOffset, 0, xOffset + parenthesisWidth, 0);
painter->drawLine(xOffset, textRect.height() - 1, xOffset + parenthesisWidth,
textRect.height() - 1);
xOffset += matrixHMargin + parenthesisLineWidth;
for (int col = 0; col < matrix_trait<Matrix>::columns; ++col) {
const int colWidth = columnWidth(opt, matrix, col);
for (int row = 0; row < matrix_trait<Matrix>::rows; ++row) {
const QRect r(xOffset,
row * opt.fontMetrics.lineSpacing(), colWidth,
opt.fontMetrics.lineSpacing());
painter->drawText(r, Qt::AlignHCenter | Qt::AlignRight,
QString::number(matrix_trait<Matrix>::value(matrix, row, col)));
}
xOffset += colWidth + matrixSpacing;
}
xOffset += -matrixSpacing + matrixHMargin;
painter->drawLine(xOffset, 0, xOffset, textRect.height());
painter->drawLine(xOffset, 0, xOffset - parenthesisWidth, 0);
painter->drawLine(xOffset, textRect.height() - 1, xOffset - parenthesisWidth,
textRect.height() - 1);
painter->restore();
}
template<typename Matrix>
QSize PropertyEditorDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index,
const Matrix &matrix) const
{
QStyleOptionViewItem opt = option;
initStyleOption(&opt, index);
static const int parenthesisLineWidth = 1;
const int textHMargin = QApplication::style()->pixelMetric(QStyle::PM_FocusFrameHMargin, nullptr,
opt.widget)
+ 1;
static const int textVMargin = 1;
int width = 0;
for (int col = 0; col < matrix_trait<Matrix>::columns; ++col) {
width += columnWidth(opt, matrix, col);
}
width += opt.fontMetrics.horizontalAdvance(QStringLiteral("x"))
* matrix_trait<Matrix>::columns
+ 2 * parenthesisLineWidth + 2 * textHMargin;
const int height = opt.fontMetrics.lineSpacing() * matrix_trait<Matrix>::rows + 2 * textVMargin;
return { width, height };
}
template<typename Matrix>
int PropertyEditorDelegate::columnWidth(const QStyleOptionViewItem &option, const Matrix &matrix,
int column) const
{
int width = 0;
for (int row = 0; row < matrix_trait<Matrix>::rows; ++row) {
width = qMax(width, option.fontMetrics.horizontalAdvance(QString::number(matrix_trait<Matrix>::value(matrix, row, column))));
}
return width;
}
bool PropertyEditorDelegate::editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index)
{
// if this is a read-only cell containing a complex type we have a suitable editor for, we'll show that in read-only mode
if (index.isValid() && event->type() == QEvent::MouseButtonDblClick && ((index.flags() & Qt::ItemIsEditable) == 0) && (index.flags() & Qt::ItemIsEnabled)) {
const auto value = index.data(Qt::EditRole);
if (value.isNull() || !PropertyEditorFactory::hasExtendedEditor(value.userType()))
return QStyledItemDelegate::editorEvent(event, model, option, index);
// special cases for strings, short ones don't benefit from the external editor
if (value.typeId() == QMetaType::QString && !value.toString().contains(QLatin1Char('\n')))
return QStyledItemDelegate::editorEvent(event, model, option, index);
else if (value.typeId() == QMetaType::QByteArray && !value.toByteArray().contains('\n'))
return QStyledItemDelegate::editorEvent(event, model, option, index);
const auto editor = qobject_cast<PropertyExtendedEditor *>(PropertyEditorFactory::instance()->createEditor(value.userType(), nullptr));
if (editor) {
editor->setReadOnly(true);
editor->setValue(value);
connect(editor, &PropertyExtendedEditor::editorClosed, editor, &QObject::deleteLater);
editor->showEditor(const_cast<QWidget *>(option.widget));
}
}
return QStyledItemDelegate::editorEvent(event, model, option, index);
}
QString PropertyEditorDelegate::displayText(const QVariant &value, const QLocale &locale) const
{
if (value.userType() == qMetaTypeId<SourceLocation>())
return value.value<SourceLocation>().displayString();
return QStyledItemDelegate::displayText(value, locale);
}
|