85 lines
2.0 KiB
C++
85 lines
2.0 KiB
C++
|
#include "vshortcutproperty.h"
|
||
|
#include <QFileInfo>
|
||
|
#include <QAbstractItemDelegate>
|
||
|
|
||
|
#include "vshortcutpropertyeditor.h"
|
||
|
|
||
|
#include "vproperty_p.h"
|
||
|
|
||
|
|
||
|
using namespace VPE;
|
||
|
|
||
|
VShortcutProperty::VShortcutProperty(const QString& name)
|
||
|
: VProperty(name, QVariant::String)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
VShortcutProperty::~VShortcutProperty()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
QVariant VShortcutProperty::data (int column, int role) const
|
||
|
{
|
||
|
if(column == DPC_Data && (Qt::DisplayRole == role || Qt::EditRole == role))
|
||
|
{
|
||
|
return d_ptr->VariantValue;
|
||
|
}
|
||
|
else
|
||
|
return VProperty::data(column, role);
|
||
|
}
|
||
|
|
||
|
|
||
|
QWidget* VShortcutProperty::createEditor(QWidget * parent, const QStyleOptionViewItem& options,
|
||
|
const QAbstractItemDelegate* delegate)
|
||
|
{
|
||
|
Q_UNUSED(options);
|
||
|
|
||
|
VShortcutEditWidget* tmpWidget = new VShortcutEditWidget(parent);
|
||
|
if(delegate)
|
||
|
VShortcutEditWidget::connect(tmpWidget, SIGNAL(commitData(QWidget*)), delegate, SIGNAL(commitData(QWidget*)));
|
||
|
|
||
|
return tmpWidget;
|
||
|
return nullptr;
|
||
|
}
|
||
|
|
||
|
|
||
|
bool VShortcutProperty::setEditorData(QWidget* editor)
|
||
|
{
|
||
|
VShortcutEditWidget* tmpWidget = qobject_cast<VShortcutEditWidget*>(editor);
|
||
|
if(tmpWidget)
|
||
|
tmpWidget->setShortcut(d_ptr->VariantValue.toString(), false);
|
||
|
else
|
||
|
return false;
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
|
||
|
QVariant VShortcutProperty::getEditorData(QWidget* editor) const
|
||
|
{
|
||
|
VShortcutEditWidget* tmpWidget = qobject_cast<VShortcutEditWidget*>(editor);
|
||
|
if(tmpWidget)
|
||
|
return tmpWidget->getShortcutAsString();
|
||
|
|
||
|
return QVariant();
|
||
|
}
|
||
|
|
||
|
|
||
|
QString VShortcutProperty::type() const
|
||
|
{
|
||
|
return "shortcut";
|
||
|
}
|
||
|
|
||
|
VProperty* VShortcutProperty::clone(bool include_children, VProperty* container) const
|
||
|
{
|
||
|
return VProperty::clone(include_children, container ? container : new VShortcutProperty(getName()));
|
||
|
}
|
||
|
|
||
|
void VShortcutProperty::setValue(const QVariant &value)
|
||
|
{
|
||
|
VProperty::setValue(QKeySequence::fromString(value.toString()).toString());
|
||
|
}
|
||
|
|