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
|
/*
propertymatrixdialog.cpp
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2011 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Tobias Koenig <tobias.koenig@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#include "propertymatrixdialog.h"
#include "ui_propertymatrixdialog.h"
#include "propertymatrixmodel.h"
using namespace GammaRay;
PropertyMatrixDialog::PropertyMatrixDialog(QWidget *parent)
: QDialog(parent)
, ui(new Ui::PropertyMatrixDialog)
, m_model(new PropertyMatrixModel(this))
{
ui->setupUi(this);
ui->tableView->setModel(m_model);
}
PropertyMatrixDialog::~PropertyMatrixDialog()
{
delete ui;
}
void PropertyMatrixDialog::setMatrix(const QVariant &matrix)
{
m_model->setMatrix(matrix);
QString windowTitle = tr("Edit Matrix");
switch (matrix.typeId()) {
case QMetaType::QMatrix4x4:
windowTitle = tr("Edit 4x4 Matrix");
break;
case QMetaType::QTransform:
windowTitle = tr("Edit Transform");
break;
case QMetaType::QVector2D:
windowTitle = tr("Edit 2D Vector");
break;
case QMetaType::QVector3D:
windowTitle = tr("Edit 3D Vector");
break;
case QMetaType::QVector4D:
windowTitle = tr("Edit 4D Vector");
break;
case QMetaType::QQuaternion:
windowTitle = tr("Edit Quaternion");
break;
default:
windowTitle = tr("Edit Unsupported Type");
break;
}
setWindowTitle(windowTitle);
}
QVariant PropertyMatrixDialog::matrix() const
{
return m_model->matrix();
}
|