29 lines
423 B
C++
29 lines
423 B
C++
#ifndef EDITORELEMENT_H
|
|
#define EDITORELEMENT_H
|
|
#include <QBoxLayout>
|
|
#include <QObject>
|
|
#include <QWidget>
|
|
#include <QtGui>
|
|
#include <QLineEdit>
|
|
#include <QLabel>
|
|
|
|
class EditorElement : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit EditorElement(QWidget *parent = 0);
|
|
~EditorElement();
|
|
private:
|
|
QBoxLayout*layout;
|
|
QLabel * label;
|
|
QLabel * hint;
|
|
QLineEdit* edit;
|
|
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // EDITORELEMENT_H
|