valentina/src/libs/vpropertyexplorer/plugins/vcolorproperty.cpp

111 lines
3.2 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file vcolorproperty.cpp
** @author hedgeware <internal(at)hedgeware.net>
** @date
**
** @brief
** @copyright
** All rights reserved. This program and the accompanying materials
** are made available under the terms of the GNU Lesser General Public License
** (LGPL) version 2.1 which accompanies this distribution, and is available at
** http://www.gnu.org/licenses/lgpl-2.1.html
**
** This library 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
** Lesser General Public License for more details.
**
*************************************************************************/
#include "vcolorproperty.h"
#include <QColor>
#include <QLocale>
#include <QPixmap>
#include <QWidget>
2014-09-14 11:16:59 +02:00
#include "../vproperty_p.h"
#include "vcolorpropertyeditor.h"
VPE::VColorProperty::VColorProperty(const QString &name) :
2023-02-09 15:09:10 +01:00
VProperty(name,
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
QMetaType::QColor)
#else
QVariant::Color)
#endif
{
}
//! Get the data how it should be displayed
2023-05-03 13:07:02 +02:00
auto VPE::VColorProperty::data(int column, int role) const -> QVariant
{
2014-09-10 19:57:08 +02:00
if (column == DPC_Data && (Qt::DisplayRole == role))
{
2015-02-03 11:17:04 +01:00
return VColorPropertyEditor::GetColorString(d_ptr->VariantValue.value<QColor>());
2014-09-10 19:57:08 +02:00
}
2023-05-03 13:07:02 +02:00
if (Qt::EditRole == role)
2014-09-10 19:57:08 +02:00
{
2023-05-03 13:07:02 +02:00
return {};
2014-09-10 19:57:08 +02:00
}
2023-05-03 13:07:02 +02:00
if (column == DPC_Data && (Qt::DecorationRole == role))
2014-09-10 19:57:08 +02:00
{
2015-02-03 11:17:04 +01:00
return VColorPropertyEditor::GetColorPixmap(d_ptr->VariantValue.value<QColor>());
2014-09-10 19:57:08 +02:00
}
2023-05-03 13:07:02 +02:00
return VProperty::data(column, role);
}
//! Returns an editor widget, or NULL if it doesn't supply one
2023-05-03 13:07:02 +02:00
auto VPE::VColorProperty::createEditor(QWidget *parent, const QStyleOptionViewItem &options,
const QAbstractItemDelegate *delegate) -> QWidget *
{
Q_UNUSED(options)
Q_UNUSED(delegate)
VColorPropertyEditor* tmpWidget = new VColorPropertyEditor(parent);
tmpWidget->setLocale(parent->locale());
2015-02-03 11:17:04 +01:00
tmpWidget->SetColor(d_ptr->VariantValue.value<QColor>());
return tmpWidget;
}
//! Sets the property's data to the editor (returns false, if the standard delegate should do that)
2023-05-03 13:07:02 +02:00
auto VPE::VColorProperty::setEditorData(QWidget *editor) -> bool
{
VColorPropertyEditor* tmpWidget = qobject_cast<VColorPropertyEditor*>(editor);
2014-09-10 19:57:08 +02:00
if (tmpWidget)
{
2015-02-03 11:17:04 +01:00
tmpWidget->SetColor(d_ptr->VariantValue.value<QColor>());
2014-09-10 19:57:08 +02:00
}
else
return false;
return true;
}
//! Gets the data from the widget
2023-05-03 13:07:02 +02:00
auto VPE::VColorProperty::getEditorData(const QWidget *editor) const -> QVariant
{
2014-09-14 11:16:59 +02:00
const VColorPropertyEditor* tmpWidget = qobject_cast<const VColorPropertyEditor*>(editor);
2014-09-10 19:57:08 +02:00
if (tmpWidget)
{
2015-02-03 11:17:04 +01:00
return tmpWidget->GetColor();
2014-09-10 19:57:08 +02:00
}
return QVariant();
}
2023-05-03 13:07:02 +02:00
auto VPE::VColorProperty::type() const -> QString
{
return "color";
}
2023-05-03 13:07:02 +02:00
auto VPE::VColorProperty::clone(bool include_children, VProperty *container) const -> VPE::VProperty *
{
return VProperty::clone(include_children, container ? container : new VColorProperty(getName()));
}