mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 15:04:40 -04:00
added 'add new label' support
This commit is contained in:
@ -3,16 +3,22 @@
|
||||
|
||||
#include <QtWidgets>
|
||||
|
||||
#include "yacreader_global.h"
|
||||
|
||||
class AddLabelDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit AddLabelDialog(QWidget *parent = 0);
|
||||
|
||||
YACReader::LabelColors selectedColor();
|
||||
QString name();
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
void open();
|
||||
int exec();
|
||||
|
||||
protected slots:
|
||||
void validateName(const QString & name);
|
||||
|
||||
protected:
|
||||
QLineEdit * edit;
|
||||
|
Reference in New Issue
Block a user