mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
36 lines
588 B
C++
36 lines
588 B
C++
#ifndef COMIC_VINE_DIALOG_H
|
|
#define COMIC_VINE_DIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class QPushButton;
|
|
class QStackedWidget;
|
|
|
|
class ComicVineDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ComicVineDialog(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
private:
|
|
QPushButton * nextButton;
|
|
QPushButton * closeButton;
|
|
|
|
//stacked widgets
|
|
QStackedWidget * content;
|
|
|
|
QWidget * infoNotFound;
|
|
QWidget * singleComicBrowser;
|
|
|
|
void doLayout();
|
|
void doStackedWidgets();
|
|
void doSeriesQuestion();
|
|
void doConnections();
|
|
};
|
|
|
|
#endif // COMIC_VINE_DIALOG_H
|