28 lines
499 B
C
28 lines
499 B
C
|
#ifndef GUIDEDEDITORELEMENTVIEW_H
|
||
|
#define GUIDEDEDITORELEMENTVIEW_H
|
||
|
|
||
|
#include "guidededitorelement.h"
|
||
|
#include <QWidget>
|
||
|
|
||
|
|
||
|
class GuidedEditorElementView : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit GuidedEditorElementView(GuidedEditorElement* element, QWidget *parent = 0);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
private:
|
||
|
// widget container
|
||
|
// title label
|
||
|
// example/regex label
|
||
|
// mouseover description?
|
||
|
// input field based on element type
|
||
|
// layer information
|
||
|
};
|
||
|
|
||
|
#endif // GUIDEDEDITORELEMENTVIEW_H
|