mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-24 00:33:02 +03:00
0fca7169d3
except those placed in 3rdparty directories.
27 lines
865 B
C++
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
|