PDF4QT/Pdf4QtViewer/pdfviewermainwindow.h

131 lines
3.9 KiB
C
Raw Normal View History

2021-04-30 20:12:10 +02:00
// Copyright (C) 2019-2021 Jakub Melka
2019-01-27 17:55:22 +01:00
//
2020-12-20 19:03:58 +01:00
// This file is part of Pdf4Qt.
2019-01-27 17:55:22 +01:00
//
2020-12-20 19:03:58 +01:00
// Pdf4Qt is free software: you can redistribute it and/or modify
2019-01-27 17:55:22 +01:00
// 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
2021-04-30 20:12:10 +02:00
// with the written consent of the copyright owner, any later version.
2019-01-27 17:55:22 +01:00
//
2020-12-20 19:03:58 +01:00
// Pdf4Qt is distributed in the hope that it will be useful,
2019-01-27 17:55:22 +01:00
// 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
2020-12-20 19:03:58 +01:00
// along with Pdf4Qt. If not, see <https://www.gnu.org/licenses/>.
2019-01-27 17:55:22 +01:00
2018-11-21 19:30:15 +01:00
#ifndef PDFVIEWERMAINWINDOW_H
#define PDFVIEWERMAINWINDOW_H
2020-12-20 19:03:58 +01:00
#include "pdfviewerglobal.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-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"
2020-02-18 20:21:18 +01:00
#include "pdftexttospeech.h"
2020-03-07 17:38:50 +01:00
#include "pdfannotation.h"
2020-04-22 20:00:44 +02:00
#include "pdfform.h"
2020-05-03 18:52:22 +02:00
#include "pdfundoredomanager.h"
2020-11-17 18:28:34 +01:00
#include "pdfplugin.h"
2020-12-20 16:36:07 +01:00
#include "pdfprogramcontroller.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>
#include <QWinTaskbarButton>
#include <QWinTaskbarProgress>
2019-12-23 15:58:40 +01:00
#include <QFutureWatcher>
#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
2020-12-20 19:03:58 +01:00
class Pdf4QtVIEWERLIBSHARED_EXPORT PDFViewerMainWindow : public QMainWindow, public IMainWindow
2018-11-21 19:30:15 +01:00
{
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
2020-12-20 16:36:07 +01:00
PDFProgramController* getProgramController() const { return m_programController; }
2020-12-20 16:36:07 +01:00
virtual void updateUI(bool fullUpdate) override;
virtual QMenu* addToolMenu(QString name) override;
virtual void setStatusBarMessage(QString message, int time) override;
virtual void setDocument(const pdf::PDFModifiedDocument& document) override;
virtual void adjustToolbar(QToolBar* toolbar) override;
2020-12-30 18:26:45 +01:00
virtual pdf::PDFTextSelection getSelectedText() const override;
2019-12-23 15:58:40 +01:00
protected:
virtual void dragEnterEvent(QDragEnterEvent* event) override;
virtual void dragMoveEvent(QDragMoveEvent* event) override;
virtual void dropEvent(QDropEvent* event) override;
2018-11-21 19:30:15 +01:00
private:
2019-01-27 17:55:22 +01:00
void onActionQuitTriggered();
2020-12-20 16:36:07 +01:00
2019-11-09 15:11:57 +01:00
void onPageNumberSpinboxEditingFinished();
void onPageZoomSpinboxEditingFinished();
2019-01-27 17:55:22 +01:00
void onProgressStarted(pdf::ProgressStartupInfo info);
void onProgressStep(int percentage);
void onProgressFinished();
2021-05-04 18:40:51 +02:00
void updateDeveloperMenu();
QIcon createStickyNoteIcon(QString key) const;
2018-11-21 19:30:15 +01:00
Ui::PDFViewerMainWindow* ui;
2020-12-20 16:36:07 +01:00
PDFActionManager* m_actionManager;
PDFProgramController* m_programController;
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-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;
QProgressDialog* m_progressDialog;
bool m_isChangingProgressStep;
2018-11-21 19:30:15 +01:00
};
} // namespace pdfviewer
#endif // PDFVIEWERMAINWINDOW_H