// Copyright (C) 2020-2021 Jakub Melka // // This file is part of PDF4QT. // // PDF4QT 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 // with the written consent of the copyright owner, any later version. // // PDF4QT 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 PDF4QT. If not, see . #ifndef PDFPROGRAMCONTROLLER_H #define PDFPROGRAMCONTROLLER_H #include "pdfviewerglobal.h" #include "pdfdocument.h" #include "pdfsignaturehandler.h" #include "pdfdocumentreader.h" #include "pdfdocumentpropertiesdialog.h" #include "pdfplugin.h" #include #include #include #include #include class QMainWindow; class QToolBar; namespace pdf { class PDFAction; class PDFWidget; class PDFCMSManager; class PDFToolManager; class PDFFormManager; class PDFWidgetAnnotationManager; } namespace pdfviewer { class PDFViewerSettings; class PDFUndoRedoManager; class PDFRecentFileManager; class PDFTextToSpeech; class IMainWindow { public: explicit IMainWindow() = default; virtual ~IMainWindow() = default; virtual void updateUI(bool fullUpdate) = 0; virtual QMenu* addToolMenu(QString name) = 0; virtual void setStatusBarMessage(QString message, int time) = 0; virtual void setDocument(const pdf::PDFModifiedDocument& document) = 0; virtual void adjustToolbar(QToolBar* toolbar) = 0; virtual pdf::PDFTextSelection getSelectedText() const = 0; }; class PDF4QTVIEWERLIBSHARED_EXPORT PDFActionManager : public QObject { Q_OBJECT private: using BaseClass = QObject; public: explicit PDFActionManager(QObject* parent); enum Action { Open, Close, Quit, ZoomIn, ZoomOut, Find, FindPrevious, FindNext, SelectTextAll, DeselectText, CopyText, RotateRight, RotateLeft, Print, Undo, Redo, Save, SaveAs, Properties, Options, GetSource, About, SendByMail, RenderToImages, Optimize, Encryption, FitPage, FitWidth, FitHeight, ShowRenderingErrors, GoToDocumentStart, GoToDocumentEnd, GoToNextPage, GoToPreviousPage, GoToNextLine, GoToPreviousLine, CreateStickyNoteComment, CreateStickyNoteHelp, CreateStickyNoteInsert, CreateStickyNoteKey, CreateStickyNoteNewParagraph, CreateStickyNoteNote, CreateStickyNoteParagraph, CreateTextHighlight, CreateTextUnderline, CreateTextStrikeout, CreateTextSquiggly, CreateHyperlink, CreateInlineText, CreateStraightLine, CreatePolyline, CreatePolygon, CreateEllipse, CreateFreehandCurve, CreateStampApproved, CreateStampAsIs, CreateStampConfidential, CreateStampDepartmental, CreateStampDraft, CreateStampExperimental, CreateStampExpired, CreateStampFinal, CreateStampForComment, CreateStampForPublicRelease, CreateStampNotApproved, CreateStampNotForPublicRelease, CreateStampSold, CreateStampTopSecret, RenderOptionAntialiasing, RenderOptionTextAntialiasing, RenderOptionSmoothPictures, RenderOptionIgnoreOptionalContentSettings, RenderOptionDisplayAnnotations, RenderOptionInvertColors, RenderOptionShowTextBlocks, RenderOptionShowTextLines, PageLayoutSinglePage, PageLayoutContinuous, PageLayoutTwoPages, PageLayoutTwoColumns, PageLayoutFirstPageOnRightSide, ToolSelectText, ToolMagnifier, ToolScreenshot, ToolExtractImage, DeveloperCreateInstaller, LastAction }; enum ActionGroup { CreateStickyNoteGroup, CreateTextHighlightGroup, CreateStampGroup, LastActionGroup }; inline void setAction(Action type, QAction* action) { m_actions[type] = action; } inline QAction* getAction(Action type) const { return m_actions[type]; } inline QActionGroup* getActionGroup(ActionGroup group) const { return m_actionGroups[group]; } /// Creates a tool button with menu for action group. If action group /// doesn't exist, then nullptr is returned. /// \param group Action group /// \param parent Tool button's parent QToolButton* createToolButtonForActionGroup(ActionGroup group, QWidget* parent) const; /// Sets shortcut for given action. If action is nullptr, /// then nothing happens. /// \param type Action type /// \param sequence Key sequence void setShortcut(Action type, QKeySequence sequence); /// Sets action data. If action is nullptr, then nothing happens. /// \param type Action type /// \param userData User data void setUserData(Action type, QVariant userData); /// Sets enabled state of the action. If action is nullptr, the nothing happens. /// \param type Action type /// \param enabled Enabled void setEnabled(Action type, bool enabled); /// Sets check state of the action. If action is nullptr, the nothing happens. /// \param type Action type /// \param enabled Enabled void setChecked(Action type, bool checked); /// Returns a list of rendering option actions std::vector getRenderingOptionActions() const; /// Returns a list of all actions std::vector getActions() const; /// Adds additional action to action manager void addAdditionalAction(QAction* action); void initActions(QSize iconSize, bool initializeStampActions); private: bool hasActions(const std::initializer_list& actionTypes) const; std::vector getActionList(const std::initializer_list& actionTypes) const; std::array m_actions; std::array m_actionGroups; std::vector m_additionalActions; }; class PDF4QTVIEWERLIBSHARED_EXPORT PDFProgramController : public QObject, public pdf::IPluginDataExchange { Q_OBJECT private: using BaseClass = QObject; public: explicit PDFProgramController(QObject* parent); virtual ~PDFProgramController() override; enum Feature { None = 0x0000, ///< No feature Tools = 0x0001, ///< Tools Forms = 0x0002, ///< Forms UndoRedo = 0x0004, ///< Undo/redo Plugins = 0x0008, ///< Plugins TextToSpeech = 0x0010, ///< Text to speech AllFeatures = 0xFFFF, ///< All features enabled }; Q_DECLARE_FLAGS(Features, Feature) void openDocument(const QString& fileName); void setDocument(pdf::PDFModifiedDocument document); void closeDocument(); pdf::PDFWidget* getPdfWidget() const { return m_pdfWidget; } pdf::PDFToolManager* getToolManager() const { return m_toolManager; } PDFRecentFileManager* getRecentFileManager() const { return m_recentFileManager; } PDFViewerSettings* getSettings() const { return m_settings; } pdf::PDFDocument* getDocument() const { return m_pdfDocument.data(); } pdf::PDFCertificateStore* getCertificateStore() const { return const_cast(&m_certificateStore); } PDFTextToSpeech* getTextToSpeech() const { return m_textToSpeech; } const std::vector* getSignatures() const { return &m_signatures; } void initialize(Features features, QMainWindow* mainWindow, IMainWindow* mainWindowInterface, PDFActionManager* actionManager, pdf::PDFProgress* progress); void finishInitialization(); void writeSettings(); void performPrint(); void performSave(); void performSaveAs(); void onActionTriggered(const pdf::PDFAction* action); void updateActionsAvailability(); bool getIsBusy() const; void setIsBusy(bool isBusy); bool canClose() const; virtual QString getOriginalFileName() const override; virtual pdf::PDFTextSelection getSelectedText() const override; virtual QMainWindow* getMainWindow() const override; virtual VoiceSettings getVoiceSettings() const override; signals: void queryPasswordRequest(QString* password, bool* ok); private: struct AsyncReadingResult { pdf::PDFDocumentPointer document; QString errorMessage; pdf::PDFDocumentReader::Result result = pdf::PDFDocumentReader::Result::Cancelled; std::vector signatures; }; void initializeToolManager(); void initializeAnnotationManager(); void initializeFormManager(); void onActionGoToDocumentStartTriggered(); void onActionGoToDocumentEndTriggered(); void onActionGoToNextPageTriggered(); void onActionGoToPreviousPageTriggered(); void onActionGoToNextLineTriggered(); void onActionGoToPreviousLineTriggered(); void onActionZoomIn(); void onActionZoomOut(); void onActionRotateRightTriggered(); void onActionRotateLeftTriggered(); void onActionRenderingOptionTriggered(bool checked); void onActionPropertiesTriggered(); void onActionAboutTriggered(); void onActionSendByEMailTriggered(); void onActionRenderToImagesTriggered(); void onActionOptimizeTriggered(); void onActionEncryptionTriggered(); void onActionFitPageTriggered(); void onActionFitWidthTriggered(); void onActionFitHeightTriggered(); void onActionRenderingErrorsTriggered(); void onActionPageLayoutSinglePageTriggered(); void onActionPageLayoutContinuousTriggered(); void onActionPageLayoutTwoPagesTriggered(); void onActionPageLayoutTwoColumnsTriggered(); void onActionFirstPageOnRightSideTriggered(); void onActionFindTriggered(); void onActionOptionsTriggered(); void onActionOpenTriggered(); void onActionCloseTriggered(); void onActionDeveloperCreateInstaller(); void onActionGetSource(); void onDrawSpaceChanged(); void onPageLayoutChanged(); void onDocumentReadingFinished(); void onDocumentModified(pdf::PDFModifiedDocument document); void onDocumentUndoRedo(pdf::PDFModifiedDocument document); void onQueryPasswordRequest(QString* password, bool* ok); void onPageRenderingErrorsChanged(pdf::PDFInteger pageIndex, int errorsCount); void onViewerSettingsChanged(); void onColorManagementSystemChanged(); void updateMagnifierToolSettings(); void updateUndoRedoSettings(); void updateUndoRedoActions(); void updateTitle(); void updatePageLayoutActions(); void updateRenderingOptionActions(); void setPageLayout(pdf::PageLayout pageLayout); void updateFileInfo(const QString& fileName); enum SettingFlag { NoSettings = 0x0000, ///< No feature WindowSettings = 0x0001, ///< Window settings GeneralSettings = 0x0002, ///< General settings PluginsSettings = 0x0004, ///< Enabled plugin settings ActionSettings = 0x0008, ///< Action settings RecentFileSettings = 0x0010, ///< Recent files settings CertificateSettings = 0x0020, ///< Certificate settings }; Q_DECLARE_FLAGS(Settings, SettingFlag) void loadPlugins(); void readSettings(Settings settings); void saveDocument(const QString& fileName); PDFActionManager* m_actionManager; QMainWindow* m_mainWindow; IMainWindow* m_mainWindowInterface; pdf::PDFWidget* m_pdfWidget; PDFViewerSettings* m_settings; PDFUndoRedoManager* m_undoRedoManager; PDFRecentFileManager* m_recentFileManager; pdf::PDFOptionalContentActivity* m_optionalContentActivity; pdf::PDFDocumentPointer m_pdfDocument; PDFTextToSpeech* m_textToSpeech; QFuture m_future; QFutureWatcher* m_futureWatcher; pdf::PDFCMSManager* m_CMSManager; pdf::PDFToolManager* m_toolManager; pdf::PDFWidgetAnnotationManager* m_annotationManager; pdf::PDFFormManager* m_formManager; PDFFileInfo m_fileInfo; pdf::PDFCertificateStore m_certificateStore; std::vector m_signatures; bool m_isBusy; pdf::PDFProgress* m_progress; QStringList m_enabledPlugins; pdf::PDFPluginInfos m_plugins; std::vector> m_loadedPlugins; }; } // namespace pdfviewer #endif // PDFPROGRAMCONTROLLER_H