2017-08-09 16:33:20 +02:00
|
|
|
#ifndef DIALOGEDITLABEL_H
|
|
|
|
#define DIALOGEDITLABEL_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2017-08-09 18:32:14 +02:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class DialogEditLabel;
|
2017-08-09 16:33:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class DialogEditLabel : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-08-09 18:32:14 +02:00
|
|
|
explicit DialogEditLabel(QWidget *parent = nullptr);
|
|
|
|
virtual ~DialogEditLabel();
|
2017-08-09 16:33:20 +02:00
|
|
|
|
|
|
|
private:
|
2017-08-09 18:32:14 +02:00
|
|
|
Q_DISABLE_COPY(DialogEditLabel)
|
2017-08-09 16:33:20 +02:00
|
|
|
Ui::DialogEditLabel *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DIALOGEDITLABEL_H
|