Files
qt-creator/src/plugins/scxmleditor/plugin_interface/scattributeitemdelegate.h

25 lines
875 B
C
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include "attributeitemdelegate.h"
namespace ScxmlEditor {
namespace PluginInterface {
class SCAttributeItemDelegate : public AttributeItemDelegate
{
public:
SCAttributeItemDelegate(QObject *parent = nullptr);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const override;
void setEditorData(QWidget *editor, const QModelIndex &index) const override;
void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override;
};
} // namespace PluginInterface
} // namespace ScxmlEditor