0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 00:33:02 +03:00
LimeReport/limereport/objectinspector/propertyItems/lrsvgpropitem.h
Андрей Лухнов 0fca7169d3 Define code style and format all source file using clang-format-14
except those placed in 3rdparty directories.
2024-09-19 21:09:38 +03:00

27 lines
865 B
C++

#ifndef SVGPROPITEM_H
#define SVGPROPITEM_H
#include "lrobjectpropitem.h"
namespace LimeReport {
class SvgPropItem: public ObjectPropItem {
Q_OBJECT
public:
SvgPropItem(): ObjectPropItem() { }
SvgPropItem(QObject* object, ObjectsList* objects, const QString& name,
const QString& displayName, const QVariant& value, ObjectPropItem* parent,
bool readonly):
ObjectPropItem(object, objects, name, displayName, value, parent, readonly)
{
}
QWidget* createProperyEditor(QWidget* parent) const;
QString displayValue() const;
void setPropertyEditorData(QWidget* propertyEditor, const QModelIndex&) const;
void setModelData(QWidget* propertyEditor, QAbstractItemModel* model, const QModelIndex& index);
virtual QIcon iconValue() const;
};
} // namespace LimeReport
#endif // SVGPROPITEM_H