propertyeditorfactory.cpp
This file is part of GammaRay, the Qt application inspection and
manipulation tool.
Copyright (C) 2011-2021 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
Author: Volker Krause <volker.krause@kdab.com>
Licensees holding valid commercial KDAB GammaRay licenses may use this file in
accordance with GammaRay Commercial License Agreement provided with the Software.
Contact info@kdab.com if any conditions of this licensing are not clear to you.
This program 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.
This program 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 "propertyeditorfactory.h"
#include "propertycoloreditor.h"
#include "propertyenumeditor.h"
#include "propertyfonteditor.h"
#include "propertyintpaireditor.h"
#include "propertydoublepaireditor.h"
#include "propertypaletteeditor.h"
#include "propertymatrixeditor.h"
#include "propertytexteditor.h"
#include "propertyrecteditor.h"
#include <QItemEditorFactory>
#include <algorithm>
using namespace GammaRay;
PropertyEditorFactory::PropertyEditorFactory()
{
initBuiltInTypes();
addEditor(QVariant::Color, new QStandardItemEditorCreator<PropertyColorEditor>());
addEditor(QVariant::ByteArray, new QStandardItemEditorCreator<PropertyByteArrayEditor>(), true);
addEditor(QVariant::Font, new QStandardItemEditorCreator<PropertyFontEditor>());
addEditor(QVariant::Palette, new QStandardItemEditorCreator<PropertyPaletteEditor>(), true);
addEditor(QVariant::Point, new QStandardItemEditorCreator<PropertyPointEditor>());
addEditor(QVariant::PointF, new QStandardItemEditorCreator<PropertyPointFEditor>());
addEditor(QVariant::Rect, new QStandardItemEditorCreator<PropertyRectEditor>());
addEditor(QVariant::RectF, new QStandardItemEditorCreator<PropertyRectFEditor>());
addEditor(QVariant::Size, new QStandardItemEditorCreator<PropertySizeEditor>());
addEditor(QVariant::SizeF, new QStandardItemEditorCreator<PropertySizeFEditor>());
addEditor(QVariant::String, new QStandardItemEditorCreator<PropertyTextEditor>(), true);
addEditor(QVariant::Transform, new QStandardItemEditorCreator<PropertyMatrixEditor>());
addEditor(QVariant::Matrix, new QStandardItemEditorCreator<PropertyMatrixEditor>());
addEditor(QVariant::Matrix4x4, new QStandardItemEditorCreator<PropertyMatrixEditor>());
addEditor(QVariant::Vector2D, new QStandardItemEditorCreator<PropertyMatrixEditor>());
addEditor(QVariant::Vector3D, new QStandardItemEditorCreator<PropertyMatrixEditor>());
addEditor(QVariant::Vector4D, new QStandardItemEditorCreator<PropertyMatrixEditor>());
addEditor(QVariant::Quaternion, new QStandardItemEditorCreator<PropertyMatrixEditor>());
registerEditor(static_cast<TypeId>(qMetaTypeId<EnumValue>()), new QStandardItemEditorCreator<PropertyEnumEditor>());
}
PropertyEditorFactory *PropertyEditorFactory::instance()
{
static auto *s_instance = new PropertyEditorFactory;
return s_instance;
}
QWidget *PropertyEditorFactory::createEditor(TypeId type, QWidget *parent) const
{
if (type == QMetaType::Float) {
type = QVariant::Double;
}
QWidget *w = QItemEditorFactory::createEditor(type, parent);
if (!w)
return nullptr;
w->setAutoFillBackground(true);
return w;
}
QVector< int > PropertyEditorFactory::supportedTypes()
{
return instance()->m_supportedTypes;
}
void PropertyEditorFactory::initBuiltInTypes()
{
m_supportedTypes
<< QVariant::Bool
<< QVariant::Double
<< QVariant::Int
<< QVariant::UInt
<< QVariant::Date
<< QVariant::DateTime
<< QVariant::Time;
m_supportedTypes << QMetaType::Float;
}
void PropertyEditorFactory::addEditor(PropertyEditorFactory::TypeId type, QItemEditorCreatorBase *creator, bool extended)
{
registerEditor(type, creator);
m_supportedTypes.push_back(type);
if (extended) {
auto it = std::lower_bound(m_extendedTypes.begin(), m_extendedTypes.end(), type);
m_extendedTypes.insert(it, type);
}
}
bool PropertyEditorFactory::hasExtendedEditor(int typeId)
{
return std::binary_search(instance()->m_extendedTypes.constBegin(), instance()->m_extendedTypes.constEnd(), typeId);
}