PDF4QT/PdfForQtViewer/pdfviewermainwindow.h

139 lines
3.9 KiB
C
Raw Normal View History

2019-01-27 17:55:22 +01:00
// Copyright (C) 2019 Jakub Melka
//
// This file is part of PdfForQt.
//
// PdfForQt is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// PdfForQt is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with PDFForQt. If not, see <https://www.gnu.org/licenses/>.
2018-11-21 19:30:15 +01:00
#ifndef PDFVIEWERMAINWINDOW_H
#define PDFVIEWERMAINWINDOW_H
2019-02-03 13:57:37 +01:00
#include "pdfcatalog.h"
2019-02-24 19:42:00 +01:00
#include "pdfrenderer.h"
#include "pdfprogress.h"
2019-09-06 19:07:52 +02:00
#include "pdfviewersettings.h"
2019-07-01 19:53:38 +02:00
#include <QTreeView>
2018-11-21 19:30:15 +01:00
#include <QMainWindow>
2019-01-27 17:55:22 +01:00
#include <QSharedPointer>
#include <QWinTaskbarButton>
#include <QWinTaskbarProgress>
2018-11-21 19:30:15 +01:00
2019-11-06 18:25:46 +01:00
class QLabel;
class QSpinBox;
2019-07-06 15:55:37 +02:00
class QSettings;
2019-11-06 18:25:46 +01:00
class QDoubleSpinBox;
2019-07-06 15:55:37 +02:00
2018-11-21 19:30:15 +01:00
namespace Ui
{
class PDFViewerMainWindow;
}
2019-01-27 17:55:22 +01:00
namespace pdf
{
2019-11-29 19:10:29 +01:00
class PDFAction;
2019-01-27 17:55:22 +01:00
class PDFWidget;
class PDFDocument;
2019-07-01 19:53:38 +02:00
class PDFOptionalContentTreeItemModel;
2019-01-27 17:55:22 +01:00
}
2018-11-21 19:30:15 +01:00
namespace pdfviewer
{
2019-11-28 18:20:32 +01:00
class PDFSidebarWidget;
2018-11-21 19:30:15 +01:00
class PDFViewerMainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit PDFViewerMainWindow(QWidget *parent = nullptr);
virtual ~PDFViewerMainWindow() override;
2019-01-27 17:55:22 +01:00
virtual void closeEvent(QCloseEvent* event) override;
virtual void showEvent(QShowEvent* event) override;
2019-01-27 17:55:22 +01:00
2019-02-03 13:57:37 +01:00
private slots:
void on_actionPageLayoutSinglePage_triggered();
void on_actionPageLayoutContinuous_triggered();
void on_actionPageLayoutTwoPages_triggered();
void on_actionPageLayoutTwoColumns_triggered();
void on_actionFirstPageOnRightSide_triggered();
2019-02-24 19:42:00 +01:00
void on_actionRendering_Errors_triggered();
2019-09-06 19:07:52 +02:00
void on_actionOptions_triggered();
2019-11-10 14:17:54 +01:00
void on_actionAbout_triggered();
2019-12-01 13:02:25 +01:00
void on_actionFitPage_triggered();
void on_actionFitWidth_triggered();
void on_actionFitHeight_triggered();
2018-11-21 19:30:15 +01:00
private:
void onActionOpenTriggered();
2019-01-27 17:55:22 +01:00
void onActionCloseTriggered();
void onActionQuitTriggered();
2019-02-24 19:42:00 +01:00
void onPageRenderingErrorsChanged(pdf::PDFInteger pageIndex, int errorsCount);
2019-11-06 18:25:46 +01:00
void onDrawSpaceChanged();
void onPageLayoutChanged();
2019-11-09 15:11:57 +01:00
void onPageNumberSpinboxEditingFinished();
void onPageZoomSpinboxEditingFinished();
2019-11-29 19:10:29 +01:00
void onActionTriggered(const pdf::PDFAction* action);
2019-01-27 17:55:22 +01:00
void onProgressStarted();
void onProgressStep(int percentage);
void onProgressFinished();
2019-01-27 17:55:22 +01:00
void readSettings();
void writeSettings();
void updateTitle();
2019-02-03 13:57:37 +01:00
void updatePageLayoutActions();
2019-07-06 15:55:37 +02:00
void updateRenderingOptionActions();
2019-11-06 18:25:46 +01:00
void updateUI(bool fullUpdate);
2019-07-06 15:55:37 +02:00
void onViewerSettingsChanged();
void onRenderingOptionTriggered(bool checked);
2019-01-27 17:55:22 +01:00
void openDocument(const QString& fileName);
void setDocument(const pdf::PDFDocument* document);
void closeDocument();
2018-11-21 19:30:15 +01:00
2019-02-03 13:57:37 +01:00
void setPageLayout(pdf::PageLayout pageLayout);
2019-07-06 15:55:37 +02:00
std::vector<QAction*> getRenderingOptionActions() const;
2019-11-06 18:25:46 +01:00
int adjustDpiX(int value);
2018-11-21 19:30:15 +01:00
Ui::PDFViewerMainWindow* ui;
2019-07-06 15:55:37 +02:00
PDFViewerSettings* m_settings;
2019-01-27 17:55:22 +01:00
pdf::PDFWidget* m_pdfWidget;
QSharedPointer<pdf::PDFDocument> m_pdfDocument;
QString m_currentFile;
2019-11-28 18:20:32 +01:00
PDFSidebarWidget* m_sidebarWidget;
QDockWidget* m_sidebarDockWidget;
2019-07-02 16:20:12 +02:00
pdf::PDFOptionalContentActivity* m_optionalContentActivity;
2019-11-06 18:25:46 +01:00
QSpinBox* m_pageNumberSpinBox;
QLabel* m_pageNumberLabel;
QDoubleSpinBox* m_pageZoomSpinBox;
bool m_isLoadingUI;
pdf::PDFProgress* m_progress;
QWinTaskbarButton* m_taskbarButton;
QWinTaskbarProgress* m_progressTaskbarIndicator;
2018-11-21 19:30:15 +01:00
};
} // namespace pdfviewer
#endif // PDFVIEWERMAINWINDOW_H