Issue #21: Export table as CSV

This commit is contained in:
Jakub Melka
2022-07-30 17:22:05 +02:00
parent e0b67cefde
commit 900745580d
4 changed files with 238 additions and 1 deletions

View File

@ -381,6 +381,19 @@ public:
/// \param pageIndex Index of the page
QString getTextFromSelection(const PDFTextSelection& selection, PDFInteger pageIndex) const;
/// Creates text selection for whole block
/// \param blockIndex Text block index
/// \param pageIndex pageIndex
/// \param color Selection color
PDFTextSelection selectBlock(const size_t blockIndex, PDFInteger pageIndex, QColor color) const;
/// Creates text selection for signle line of text block
/// \param blockIndex Text block index
/// \param lineIndex Line index
/// \param pageIndex pageIndex
/// \param color Selection color
PDFTextSelection selectLineInBlock(const size_t blockIndex, const size_t lineIndex, PDFInteger pageIndex, QColor color) const;
friend QDataStream& operator<<(QDataStream& stream, const PDFTextLayout& layout);
friend QDataStream& operator>>(QDataStream& stream, PDFTextLayout& layout);