#ifndef CPDF_MAINWINDOW_H #define CPDF_MAINWINDOW_H #include namespace Poppler { class Document; } namespace Ui { class MainWindow; } class InfoForm; class ContentsForm; class MainWindow : public QMainWindow { Q_OBJECT public: explicit MainWindow(QWidget *parent = nullptr, Qt::WindowFlags flags = Qt::WindowFlags()); ~MainWindow(); public slots: void open(const QString &path); void showPage(int pageNumber); private: Ui::MainWindow *ui = nullptr; InfoForm *info = nullptr; ContentsForm *contents = nullptr; Poppler::Document *document = nullptr; }; #endif // CPDF_MAINWINDOW_H