32 lines
512 B
C
32 lines
512 B
C
|
#ifndef GUIDEDEDITORLAYER_H
|
||
|
#define GUIDEDEDITORLAYER_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QString>
|
||
|
#include <QColor>
|
||
|
|
||
|
class GuidedEditorLayer : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit GuidedEditorLayer(QObject *parent = 0);
|
||
|
GuidedEditorLayer(QString title, QObject *parent = 0);
|
||
|
|
||
|
QString getTitle() const;
|
||
|
void setTitle(const QString &value);
|
||
|
|
||
|
QColor getColor() const;
|
||
|
void setColor(const QColor &value);
|
||
|
|
||
|
private:
|
||
|
QString title;
|
||
|
QColor color;
|
||
|
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
};
|
||
|
|
||
|
#endif // GUIDEDEDITORLAYER_H
|