27 lines
385 B
C
27 lines
385 B
C
|
#ifndef GUIDEDEDITOR_H
|
||
|
#define GUIDEDEDITOR_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "flowlayout.h"
|
||
|
#include "guidededitorelement.h"
|
||
|
|
||
|
class GuidedEditor : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit GuidedEditor(QWidget *parent = 0);
|
||
|
~GuidedEditor();
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
void addElement();
|
||
|
|
||
|
private:
|
||
|
FlowLayout* editorLayout;
|
||
|
QList<EditorElement*>* list;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // GUIDEDEDITOR_H
|