mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
36 lines
570 B
C++
36 lines
570 B
C++
#ifndef EXPORT_COMICS_INFO_DIALOG_H
|
|
#define EXPORT_COMICS_INFO_DIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
|
|
|
|
class ExportComicsInfoDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ExportComicsInfoDialog(QWidget *parent = 0);
|
|
~ExportComicsInfoDialog();
|
|
QString source;
|
|
|
|
public slots:
|
|
void findPath();
|
|
void exportComicsInfo();
|
|
void close();
|
|
|
|
private:
|
|
QLabel * progress;
|
|
QLabel * textLabel;
|
|
QLineEdit * path;
|
|
QPushButton * find;
|
|
QPushButton * accept;
|
|
QPushButton * cancel;
|
|
|
|
|
|
};
|
|
|
|
#endif // EXPORT_COMICS_INFO_DIALOG_H
|