mirror of
https://github.com/YACReader/yacreader
synced 2025-07-21 06:24:39 -04:00
added retina icons for YACReader
This commit is contained in:
25
YACReaderLibrary/add_label_dialog.h
Normal file
25
YACReaderLibrary/add_label_dialog.h
Normal file
@ -0,0 +1,25 @@
|
||||
#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:
|
||||
void open();
|
||||
|
||||
protected:
|
||||
QLineEdit * edit;
|
||||
QListWidget * list;
|
||||
|
||||
QPushButton * acceptButton;
|
||||
QPushButton * cancelButton;
|
||||
};
|
||||
|
||||
#endif // ADD_LABEL_DIALOG_H
|
Reference in New Issue
Block a user