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

136 lines
3.7 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file vstringproperty.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 27 8, 2014
**
** @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 "vstringproperty.h"
#include <QLineEdit>
#include <QSizePolicy>
2014-09-14 11:16:59 +02:00
#include "../vproperty_p.h"
using namespace VPE;
VPE::VStringProperty::VStringProperty(const QString &name, const QMap<QString, QVariant> &settings)
: VProperty(name, QVariant::String), readOnly(false), typeForParent(0)
{
VProperty::setSettings(settings);
d_ptr->VariantValue.setValue(QString());
d_ptr->VariantValue.convert(QVariant::String);
}
VPE::VStringProperty::VStringProperty(const QString &name)
: VProperty(name), readOnly(false), typeForParent(0)
{
d_ptr->VariantValue.setValue(QString());
d_ptr->VariantValue.convert(QVariant::String);
}
QWidget *VPE::VStringProperty::createEditor(QWidget *parent, const QStyleOptionViewItem &options,
const QAbstractItemDelegate *delegate)
{
Q_UNUSED(options);
Q_UNUSED(delegate);
QLineEdit* tmpEditor = new QLineEdit(parent);
tmpEditor->setLocale(parent->locale());
tmpEditor->setReadOnly(readOnly);
tmpEditor->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
tmpEditor->setText(d_ptr->VariantValue.toString());
d_ptr->editor = tmpEditor;
return d_ptr->editor;
}
2014-09-14 11:16:59 +02:00
QVariant VPE::VStringProperty::getEditorData(const QWidget *editor) const
{
2014-09-14 11:16:59 +02:00
const QLineEdit* tmpEditor = qobject_cast<const QLineEdit*>(editor);
2014-09-10 19:57:08 +02:00
if (tmpEditor)
{
return tmpEditor->text();
2014-09-10 19:57:08 +02:00
}
return QVariant(QString());
}
void VPE::VStringProperty::setReadOnly(bool readOnly)
{
this->readOnly = readOnly;
}
void VPE::VStringProperty::setSetting(const QString &key, const QVariant &value)
{
2014-09-10 19:57:08 +02:00
if (key == QLatin1String("ReadOnly"))
{
setReadOnly(value.toBool());
2014-09-10 19:57:08 +02:00
}
if (key == QLatin1String("TypeForParent"))
{
setTypeForParent(value.toInt());
2014-09-10 19:57:08 +02:00
}
}
QVariant VPE::VStringProperty::getSetting(const QString &key) const
{
2014-09-10 19:57:08 +02:00
if (key == QLatin1String("ReadOnly"))
{
return readOnly;
2014-09-10 19:57:08 +02:00
}
else if (key == QLatin1String("TypeForParent"))
2014-09-10 19:57:08 +02:00
{
return typeForParent;
2014-09-10 19:57:08 +02:00
}
else
return VProperty::getSetting(key);
}
QStringList VPE::VStringProperty::getSettingKeys() const
{
QStringList settings;
settings << QStringLiteral("ReadOnly") << QStringLiteral("TypeForParent");
return settings;
}
QString VPE::VStringProperty::type() const
{
return QStringLiteral("string");
}
VPE::VProperty *VPE::VStringProperty::clone(bool include_children, VPE::VProperty *container) const
{
return VProperty::clone(include_children, container ? container : new VStringProperty(getName(), getSettings()));
}
void VStringProperty::UpdateParent(const QVariant &value)
{
emit childChanged(value, typeForParent);
}
2015-04-15 14:44:57 +02:00
// cppcheck-suppress unusedFunction
int VStringProperty::getTypeForParent() const
{
return typeForParent;
}
void VStringProperty::setTypeForParent(int value)
{
typeForParent = value;
}