2020-01-03 18:11:03 +01:00
|
|
|
// Copyright (C) 2019-2020 Jakub Melka
|
2019-01-27 17:55:22 +01:00
|
|
|
//
|
|
|
|
// 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"
|
2019-11-09 17:27:17 +01:00
|
|
|
#include "pdfprogress.h"
|
2019-12-23 15:58:40 +01:00
|
|
|
#include "pdfdocument.h"
|
2019-09-06 19:07:52 +02:00
|
|
|
#include "pdfviewersettings.h"
|
2019-12-23 15:58:40 +01:00
|
|
|
#include "pdfdocumentreader.h"
|
2019-12-20 18:56:03 +01:00
|
|
|
#include "pdfdocumentpropertiesdialog.h"
|
2020-01-12 18:46:59 +01:00
|
|
|
#include "pdfwidgettool.h"
|
2020-02-01 11:56:40 +01:00
|
|
|
#include "pdfrecentfilemanager.h"
|
2019-09-06 19:07:52 +02:00
|
|
|
|
2019-12-23 15:58:40 +01:00
|
|
|
#include <QFuture>
|
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>
|
2019-11-09 17:27:17 +01:00
|
|
|
#include <QWinTaskbarButton>
|
|
|
|
#include <QWinTaskbarProgress>
|
2019-12-23 15:58:40 +01:00
|
|
|
#include <QFutureWatcher>
|
2020-01-01 18:23:18 +01:00
|
|
|
#include <QProgressDialog>
|
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;
|
2020-01-03 18:11:03 +01:00
|
|
|
class PDFAdvancedFindWidget;
|
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;
|
2019-11-09 17:27:17 +01:00
|
|
|
virtual void showEvent(QShowEvent* event) override;
|
2019-01-27 17:55:22 +01:00
|
|
|
|
2019-12-23 15:58:40 +01:00
|
|
|
signals:
|
|
|
|
void queryPasswordRequest(QString* password, bool* ok);
|
|
|
|
|
2019-02-03 13:57:37 +01:00
|
|
|
private slots:
|
2019-12-23 15:58:40 +01:00
|
|
|
void onQueryPasswordRequest(QString* password, bool* ok);
|
|
|
|
|
2019-02-03 13:57:37 +01:00
|
|
|
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();
|
2019-12-20 18:56:03 +01:00
|
|
|
void on_actionProperties_triggered();
|
2019-12-22 18:03:19 +01:00
|
|
|
void on_actionSend_by_E_Mail_triggered();
|
|
|
|
|
2020-02-01 17:28:02 +01:00
|
|
|
void on_actionRotateRight_triggered();
|
|
|
|
|
|
|
|
void on_actionRotateLeft_triggered();
|
|
|
|
|
2020-02-03 19:45:17 +01:00
|
|
|
void on_actionPrint_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
|
|
|
|
2020-01-01 18:23:18 +01:00
|
|
|
void onProgressStarted(pdf::ProgressStartupInfo info);
|
2019-11-09 17:27:17 +01:00
|
|
|
void onProgressStep(int percentage);
|
|
|
|
void onProgressFinished();
|
|
|
|
|
2019-12-23 15:58:40 +01:00
|
|
|
void onDocumentReadingFinished();
|
|
|
|
|
2019-01-27 17:55:22 +01:00
|
|
|
void readSettings();
|
2019-12-16 19:46:29 +01:00
|
|
|
void readActionSettings();
|
2019-01-27 17:55:22 +01:00
|
|
|
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-12-23 15:58:40 +01:00
|
|
|
void updateActionsAvailability();
|
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-12-16 19:46:29 +01:00
|
|
|
QList<QAction*> getActions() const;
|
2019-07-06 15:55:37 +02:00
|
|
|
|
2019-11-06 18:25:46 +01:00
|
|
|
int adjustDpiX(int value);
|
|
|
|
|
2019-12-23 15:58:40 +01:00
|
|
|
struct AsyncReadingResult
|
|
|
|
{
|
|
|
|
QSharedPointer<pdf::PDFDocument> document;
|
|
|
|
QString errorMessage;
|
|
|
|
pdf::PDFDocumentReader::Result result = pdf::PDFDocumentReader::Result::Cancelled;
|
|
|
|
};
|
|
|
|
|
2018-11-21 19:30:15 +01:00
|
|
|
Ui::PDFViewerMainWindow* ui;
|
2019-12-24 17:29:40 +01:00
|
|
|
pdf::PDFCMSManager* m_CMSManager;
|
2020-02-01 11:56:40 +01:00
|
|
|
PDFRecentFileManager* m_recentFileManager;
|
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;
|
2020-01-03 18:11:03 +01:00
|
|
|
PDFAdvancedFindWidget* m_advancedFindWidget;
|
|
|
|
QDockWidget* m_advancedFindDockWidget;
|
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;
|
2019-11-09 17:27:17 +01:00
|
|
|
pdf::PDFProgress* m_progress;
|
|
|
|
QWinTaskbarButton* m_taskbarButton;
|
|
|
|
QWinTaskbarProgress* m_progressTaskbarIndicator;
|
2019-12-20 18:56:03 +01:00
|
|
|
PDFFileInfo m_fileInfo;
|
2019-12-23 15:58:40 +01:00
|
|
|
|
|
|
|
QFuture<AsyncReadingResult> m_future;
|
|
|
|
QFutureWatcher<AsyncReadingResult> m_futureWatcher;
|
2020-01-01 18:23:18 +01:00
|
|
|
|
|
|
|
QProgressDialog* m_progressDialog;
|
|
|
|
bool m_isBusy;
|
2020-01-26 17:06:50 +01:00
|
|
|
bool m_isChangingProgressStep;
|
2020-01-12 18:46:59 +01:00
|
|
|
|
|
|
|
pdf::PDFToolManager* m_toolManager;
|
2018-11-21 19:30:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace pdfviewer
|
|
|
|
|
|
|
|
#endif // PDFVIEWERMAINWINDOW_H
|