代码拉取完成,页面将自动刷新
#include "CStringProperty.h"
#include <QDebug>
#include <QLineEdit>
CStringProperty::CStringProperty(const QByteArray &id, const QString &name, const QString &value, const QString &defaultValue):
CBaseProperty(id, name),
m_value(value),
m_defaultValue(defaultValue)
{
setValue(value);
}
CStringProperty::CStringProperty(CBaseProperty *top, const QByteArray &id, const QString &name, const QString &value, const QString &defaultValue):
CBaseProperty(top, id, name),
m_value(value),
m_defaultValue(defaultValue)
{
setValue(value);
}
void CStringProperty::setValue(const QString &value)
{
m_value = value;
CBaseProperty::setValue();
}
const QString &CStringProperty::getValue() const
{
m_value = text(1);
return m_value;
}
QVariant CStringProperty::getVariantValue() const
{
return getValue();
}
void CStringProperty::displayValue()
{
setText(1, m_value);
}
void CStringProperty::startEdit()
{
setFlags(flags() | Qt::ItemIsEditable);
treeWidget()->editItem(this, 1);
QLineEdit* editor = dynamic_cast<QLineEdit*>(getActiveEditor());
if (editor != NULL)
{
editor->selectAll();
}
}
void CStringProperty::finishEdit(bool cancel)
{
// qDebug() << "CStringProperty::finishEdit() " << text(1) << " : " << getActiveEditor();
if (!cancel)
{
QLineEdit* editor = dynamic_cast<QLineEdit*>(getActiveEditor());
if (editor != NULL)
{
setValue(editor->text());
}
}
setFlags(flags() & ~Qt::ItemIsEditable);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。