mirror of
				https://github.com/JakubMelka/PDF4QT.git
				synced 2025-06-05 21:59:17 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			119 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| //    Copyright (C) 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 <https://www.gnu.org/licenses/>.
 | |
| 
 | |
| #ifndef AUDIOBOOKPLUGIN_H
 | |
| #define AUDIOBOOKPLUGIN_H
 | |
| 
 | |
| #include "pdfplugin.h"
 | |
| #include "pdfdocumenttextflow.h"
 | |
| #include "pdfdocumenttextfloweditormodel.h"
 | |
| #include "pdfdocumentdrawinterface.h"
 | |
| #include "audiotextstreameditordockwidget.h"
 | |
| 
 | |
| #include <QObject>
 | |
| 
 | |
| namespace pdfplugin
 | |
| {
 | |
| 
 | |
| class AudioBookPlugin : public pdf::PDFPlugin,
 | |
|                         public pdf::IDocumentDrawInterface,
 | |
|                         public pdf::IDrawWidgetInputInterface
 | |
| {
 | |
|     Q_OBJECT
 | |
|     Q_PLUGIN_METADATA(IID "PDF4QT.AudioBookPlugin" FILE "AudioBookPlugin.json")
 | |
| 
 | |
| private:
 | |
|     using BaseClass = pdf::PDFPlugin;
 | |
| 
 | |
| public:
 | |
|     AudioBookPlugin();
 | |
|     virtual ~AudioBookPlugin() override;
 | |
| 
 | |
|     virtual void setWidget(pdf::PDFWidget* widget) override;
 | |
|     virtual void setDocument(const pdf::PDFModifiedDocument& document) override;
 | |
|     virtual std::vector<QAction*> getActions() const override;
 | |
| 
 | |
|     virtual void drawPage(QPainter* painter,
 | |
|                           pdf::PDFInteger pageIndex,
 | |
|                           const pdf::PDFPrecompiledPage* compiledPage,
 | |
|                           pdf::PDFTextLayoutGetter& layoutGetter,
 | |
|                           const QMatrix& pagePointToDevicePointMatrix,
 | |
|                           QList<pdf::PDFRenderError>& errors) const override;
 | |
| 
 | |
|     // IDrawWidgetInputInterface interface
 | |
| public:
 | |
|     virtual void shortcutOverrideEvent(QWidget* widget, QKeyEvent* event) override;
 | |
|     virtual void keyPressEvent(QWidget* widget, QKeyEvent* event) override;
 | |
|     virtual void keyReleaseEvent(QWidget* widget, QKeyEvent* event) override;
 | |
|     virtual void mousePressEvent(QWidget* widget, QMouseEvent* event) override;
 | |
|     virtual void mouseDoubleClickEvent(QWidget* widget, QMouseEvent* event) override;
 | |
|     virtual void mouseReleaseEvent(QWidget* widget, QMouseEvent* event) override;
 | |
|     virtual void mouseMoveEvent(QWidget* widget, QMouseEvent* event) override;
 | |
|     virtual void wheelEvent(QWidget* widget, QWheelEvent* event) override;
 | |
|     virtual QString getTooltip() const override;
 | |
|     virtual const std::optional<QCursor>& getCursor() const override;
 | |
|     virtual int getInputPriority() const override;
 | |
| 
 | |
| private:
 | |
|     void onCreateTextStreamTriggered();
 | |
|     void onActivateSelection();
 | |
|     void onDeactivateSelection();
 | |
|     void onSelectByRectangle();
 | |
|     void onSelectByContainedText();
 | |
|     void onSelectByRegularExpression();
 | |
|     void onSelectByPageList();
 | |
|     void onRestoreOriginalText();
 | |
|     void onEditedTextFlowChanged();
 | |
|     void onTextStreamTableSelectionChanged();
 | |
|     void onClear();
 | |
|     void onMoveSelectionUp();
 | |
|     void onMoveSelectionDown();
 | |
|     void onCreateAudioBook();
 | |
| 
 | |
|     void onRectanglePicked(pdf::PDFInteger pageIndex, QRectF rectangle);
 | |
| 
 | |
|     void updateActions();
 | |
| 
 | |
|     std::optional<size_t> getItemIndexForPagePoint(QPoint pos) const;
 | |
| 
 | |
|     QAction* m_actionCreateTextStream;
 | |
|     QAction* m_actionSynchronizeFromTableToGraphics;
 | |
|     QAction* m_actionSynchronizeFromGraphicsToTable;
 | |
|     QAction* m_actionActivateSelection;
 | |
|     QAction* m_actionDeactivateSelection;
 | |
|     QAction* m_actionSelectByRectangle;
 | |
|     QAction* m_actionSelectByContainedText;
 | |
|     QAction* m_actionSelectByRegularExpression;
 | |
|     QAction* m_actionSelectByPageList;
 | |
|     QAction* m_actionRestoreOriginalText;
 | |
|     QAction* m_actionMoveSelectionUp;
 | |
|     QAction* m_actionMoveSelectionDown;
 | |
|     QAction* m_actionCreateAudioBook;
 | |
|     QAction* m_actionClear;
 | |
| 
 | |
|     pdf::PDFDocumentTextFlowEditor m_textFlowEditor;
 | |
|     AudioTextStreamEditorDockWidget* m_audioTextStreamDockWidget;
 | |
|     pdf::PDFDocumentTextFlowEditorModel* m_audioTextStreamEditorModel;
 | |
| 
 | |
|     QString m_toolTip;
 | |
|     std::optional<QCursor> m_cursor;
 | |
| };
 | |
| 
 | |
| }   // namespace pdfplugin
 | |
| 
 | |
| #endif // AUDIOBOOKPLUGIN_H
 |