AudioBook Plugin: Item selection by text, regular expression, page indices

This commit is contained in:
Jakub Melka
2021-08-21 20:18:47 +02:00
parent 1aa60dca40
commit 8ccfbe291d
8 changed files with 199 additions and 2 deletions

View File

@@ -19,6 +19,7 @@
#define PDFDOCUMENTTEXTFLOWEDITORMODEL_H
#include "pdfglobal.h"
#include "pdfutils.h"
#include <QAbstractTableModel>
@@ -63,6 +64,9 @@ public:
void setSelectionActivated(bool activate);
void selectByRectangle(QRectF rectangle);
void selectByContainedText(QString text);
void selectByRegularExpression(const QRegularExpression& expression);
void selectByPageIndices(const pdf::PDFClosedIntervalSet& indices);
private:
PDFDocumentTextFlowEditor* m_editor;