add label dialog

This commit is contained in:
Luis Ángel San Martín
2014-10-31 14:33:53 +01:00
parent 9250f02474
commit ac38de88e8
6 changed files with 82 additions and 2 deletions

View File

@ -0,0 +1,22 @@
#ifndef ADD_LABEL_DIALOG_H
#define ADD_LABEL_DIALOG_H
#include <QtWidgets>
class AddLabelDialog : public QDialog
{
Q_OBJECT
public:
explicit AddLabelDialog(QWidget *parent = 0);
signals:
public slots:
protected:
QLineEdit * edit;
QListWidget * list;
};
#endif // ADD_LABEL_DIALOG_H