50#ifndef __POPPLER_QT_H__
51#define __POPPLER_QT_H__
57#include "poppler-annotation.h"
58#include "poppler-link.h"
59#include "poppler-optcontent.h"
60#include "poppler-page-transition.h"
61#include "poppler-converter.h"
63#include <QtCore/QByteArray>
64#include <QtCore/QDateTime>
65#include <QtCore/QIODevice>
67#include "poppler-export.h"
91struct OutlineItemData;
179 friend class Document;
210 explicit FontInfo(
const FontInfoData &fid);
279 FontInfoData *m_data;
282class FontIteratorData;
299class POPPLER_QT6_EXPORT FontIterator
301 friend class Document;
302 friend class DocumentData;
328 Q_DISABLE_COPY(FontIterator)
329 FontIterator(
int, DocumentData *dd);
334class EmbeddedFileData;
338class POPPLER_QT6_EXPORT EmbeddedFile
340 friend class DocumentData;
341 friend class AnnotationPrivate;
345 explicit EmbeddedFile(EmbFile *embfile);
410 Q_DISABLE_COPY(EmbeddedFile)
411 explicit EmbeddedFile(EmbeddedFileData &dd);
413 EmbeddedFileData *m_embeddedFile;
424class POPPLER_QT6_EXPORT Page
426 friend class Document;
469 NoPainterFlags = 0x00000000,
479 Q_DECLARE_FLAGS(PainterFlags, PainterFlag)
584 const QVariant &payload) const;
687 bool renderToPainter(QPainter *painter,
double xres = 72.0,
double yres = 72.0,
int x = -1,
int y = -1,
int w = -1,
int h = -1,
Rotation rotate =
Rotate0, PainterFlags flags = NoPainterFlags) const;
714 QString
text(const QRectF &rect) const;
740 NoSearchFlags = 0x00000000,
750 Q_DECLARE_FLAGS(SearchFlags, SearchFlag)
860 void defaultCTM(
double *CTM,
double dpiX,
double dpiY,
int rotate,
bool upsideDown);
865 std::vector<std::unique_ptr<Link>>
links()
const;
883 std::vector<std::unique_ptr<Annotation>>
annotations(
const QSet<Annotation::SubType> &subtypes)
const;
925 Page(DocumentData *doc,
int index);
936 friend class Document;
1003 OutlineItemData *m_data;
1056class POPPLER_QT6_EXPORT Document
1059 friend class DocumentData;
1113 Q_DECLARE_FLAGS(RenderHints, RenderHint)
1177 static std::unique_ptr<Document>
load(
const QString &filePath,
const QByteArray &ownerPassword = QByteArray(),
const QByteArray &userPassword = QByteArray());
1196 static std::unique_ptr<Document>
load(QIODevice *device,
const QByteArray &ownerPassword = QByteArray(),
const QByteArray &userPassword = QByteArray());
1214 static std::unique_ptr<Document>
loadFromData(
const QByteArray &fileContents,
const QByteArray &ownerPassword = QByteArray(),
const QByteArray &userPassword = QByteArray());
1231 std::unique_ptr<Page>
page(
int index)
const;
1245 std::unique_ptr<Page>
page(
const QString &label)
const;
1280 bool unlock(
const QByteArray &ownerPassword,
const QByteArray &userPassword);
1302 QDateTime
date(
const QString &type)
const;
1309 bool setDate(
const QString &key,
const QDateTime &val);
1351 QString
info(
const QString &type)
const;
1358 bool setInfo(
const QString &key,
const QString &val);
1728 bool getPdfId(QByteArray *permanentId, QByteArray *updateId)
const;
1746 std::vector<std::unique_ptr<FormFieldSignature>>
signatures()
const;
1769 Q_DISABLE_COPY(Document)
1771 DocumentData *m_doc;
1773 explicit Document(DocumentData *dataA);
1868 SoundData *m_soundData;
1877 friend class AnnotationPrivate;
1937 MovieData *m_movieData;
1942Q_DECLARE_OPERATORS_FOR_FLAGS(Poppler::Page::PainterFlags)
1943Q_DECLARE_OPERATORS_FOR_FLAGS(Poppler::Page::SearchFlags)
1944Q_DECLARE_OPERATORS_FOR_FLAGS(Poppler::Document::RenderHints)
Annotation class holding properties shared by all annotations.
Definition poppler-annotation.h:177
PDF document.
Definition poppler-qt6.h:1057
QString subject() const
The subject of the document.
RenderHints renderHints() const
The currently set render hints.
bool isLinearized() const
Test if the document is linearised.
bool setAuthor(const QString &val)
Set the author of the document to.
static std::unique_ptr< Document > load(const QString &filePath, const QByteArray &ownerPassword=QByteArray(), const QByteArray &userPassword=QByteArray())
Load the document from a file on disk.
bool setTitle(const QString &val)
Set the title of the document to.
bool okToChange() const
Test if the permissions on the document allow it to be changed.
QString title() const
The title of the document.
std::unique_ptr< FontIterator > newFontIterator(int startPage=0) const
Creates a new FontIterator object for font scanning.
bool okToCreateFormFields() const
Test if the permissions on the document allow interactive form fields (including signature fields) to...
bool isLocked() const
Determine if the document is locked.
std::unique_ptr< PDFConverter > pdfConverter() const
Gets a new PDF converter for this document.
bool okToCopy() const
Test if the permissions on the document allow the contents to be copied / extracted.
QVector< OutlineItem > outline() const
Gets the outline of the document.
bool getPdfId(QByteArray *permanentId, QByteArray *updateId) const
The PDF identifiers.
int numPages() const
The number of pages in the document.
bool removeInfo()
Remove the document's Info dictionary.
PageLayout
The page layout.
Definition poppler-qt6.h:1079
@ TwoPageRight
Display the pages two at a time, with odd-numbered pages on the right.
Definition poppler-qt6.h:1086
@ TwoPageLeft
Display the pages two at a time, with odd-numbered pages on the left.
Definition poppler-qt6.h:1085
@ TwoColumnLeft
Display the pages in two columns, with odd-numbered pages on the left.
Definition poppler-qt6.h:1083
@ SinglePage
Display a single page.
Definition poppler-qt6.h:1081
@ NoLayout
Layout not specified.
Definition poppler-qt6.h:1080
@ TwoColumnRight
Display the pages in two columns, with odd-numbered pages on the right.
Definition poppler-qt6.h:1084
@ OneColumn
Display a single column of pages.
Definition poppler-qt6.h:1082
std::unique_ptr< LinkDestination > linkDestination(const QString &name)
Tries to resolve the named destination name.
bool hasOptionalContent() const
Test whether this document has "optional content".
QDateTime date(const QString &type) const
The date associated with the document.
bool okToAddNotes() const
Test if the permissions on the document allow annotations to be added or modified,...
QDateTime creationDate() const
The date of the creation of the document.
static std::unique_ptr< Document > load(QIODevice *device, const QByteArray &ownerPassword=QByteArray(), const QByteArray &userPassword=QByteArray())
Load the document from a device.
bool setCreator(const QString &val)
Set the creator of the document to.
void setRenderHint(RenderHint hint, bool on=true)
Sets the render hint .
bool setProducer(const QString &val)
Set the producer of the document to.
QStringList infoKeys() const
Obtain a list of the available string information keys.
void * colorDisplayProfile() const
Return the current display profile.
void setPaperColor(const QColor &color)
Sets the paper color.
RenderBackend
The render backends available.
Definition poppler-qt6.h:1093
@ SplashBackend
Splash backend.
Definition poppler-qt6.h:1094
@ QPainterBackend
Qt backend.
Definition poppler-qt6.h:1095
std::unique_ptr< PSConverter > psConverter() const
Gets a new PS converter for this document.
bool unlock(const QByteArray &ownerPassword, const QByteArray &userPassword)
Provide the passwords required to unlock the document.
QByteArray fontData(const FontInfo &fi) const
The font data if the font is an embedded one.
std::unique_ptr< Page > page(int index) const
Get a specified Page.
bool setDate(const QString &key, const QDateTime &val)
Set the Info dict date entry specified by.
PageMode
The page mode.
Definition poppler-qt6.h:1066
@ UseOutlines
Document outline visible.
Definition poppler-qt6.h:1068
@ UseAttach
Attachments panel visible.
Definition poppler-qt6.h:1072
@ UseNone
No mode - neither document outline nor thumbnail images are visible.
Definition poppler-qt6.h:1067
@ UseThumbs
Thumbnail images visible.
Definition poppler-qt6.h:1069
@ FullScreen
Fullscreen mode (no menubar, windows controls etc).
Definition poppler-qt6.h:1070
@ UseOC
Optional content group panel visible.
Definition poppler-qt6.h:1071
PdfVersion getPdfVersion() const
The version of the PDF specification that the document conforms to.
QDateTime modificationDate() const
The date of the last change in the document.
void setRenderBackend(RenderBackend backend)
Sets the backend used to render the pages.
std::unique_ptr< Page > page(const QString &label) const
This is an overloaded member function, provided for convenience. It differs from the above function o...
RenderHint
The render hints available.
Definition poppler-qt6.h:1102
@ IgnorePaperColor
Do not compose with the paper color.
Definition poppler-qt6.h:1110
@ TextHinting
Hinting for text.
Definition poppler-qt6.h:1105
@ ThinLineShape
Enhance thin lines shape. Wins over ThinLineSolid.
Definition poppler-qt6.h:1109
@ HideAnnotations
Do not render annotations.
Definition poppler-qt6.h:1111
@ TextSlightHinting
Lighter hinting for text when combined with TextHinting.
Definition poppler-qt6.h:1106
@ OverprintPreview
Overprint preview.
Definition poppler-qt6.h:1107
@ TextAntialiasing
Antialiasing for text.
Definition poppler-qt6.h:1104
@ Antialiasing
Antialiasing for graphics.
Definition poppler-qt6.h:1103
@ ThinLineSolid
Enhance thin lines solid.
Definition poppler-qt6.h:1108
Qt::LayoutDirection textDirection() const
The predominant reading order for text as supplied by the document's viewer preferences.
QString metadata() const
Gets the metadata stream contents.
DocumentAdditionalActionsType
Describes the flags for additional document actions i.e.
Definition poppler-qt6.h:1702
@ CloseDocument
Performed before closing the document.
Definition poppler-qt6.h:1703
@ PrintDocumentStart
Performed before printing the document.
Definition poppler-qt6.h:1706
@ PrintDocumentFinish
Performed after printing the document.
Definition poppler-qt6.h:1707
@ SaveDocumentFinish
Performed after saving the document.
Definition poppler-qt6.h:1705
@ SaveDocumentStart
Performed before saving the document.
Definition poppler-qt6.h:1704
void setColorDisplayProfile(void *outputProfileA)
Set a color display profile for the current document.
bool okToPrintHighRes() const
Test if the permissions on the document allow it to be printed at high resolution.
bool okToExtractForAccessibility() const
Test if the permissions on the document allow content extraction (text and perhaps other content) for...
bool setModificationDate(const QDateTime &val)
Set the modification date of the document to.
void * colorRgbProfile() const
Return the current RGB profile.
QString author() const
The author of the document.
bool isEncrypted() const
Test if the document is encrypted.
void setColorDisplayProfileName(const QString &name)
Set a color display profile for the current document.
static QSet< RenderBackend > availableRenderBackends()
The available rendering backends.
void applyResetFormsLink(const LinkResetForm &link)
Resets the form with the details contained in the link.
QList< EmbeddedFile * > embeddedFiles() const
The documents embedded within the PDF document.
bool okToAssemble() const
Test if the permissions on the document allow it to be "assembled" - insertion, rotation and deletion...
OptContentModel * optionalContentModel()
Itemviews model for optional content.
QString creator() const
The creator of the document.
bool hasEmbeddedFiles() const
Whether there are any documents embedded in this PDF document.
QString producer() const
The producer of the document.
std::vector< std::unique_ptr< FormFieldSignature > > signatures() const
Returns the signatures of this document.
PageLayout pageLayout() const
The layout that pages should be shown in when the document is first opened.
void setXRefReconstructedCallback(const std::function< void()> &callback)
Sets the document's XRef reconstruction callback, so whenever a XRef table reconstruction happens the...
bool setSubject(const QString &val)
Set the subject of the document to.
PageMode pageMode() const
The type of mode that should be used by the application when the document is opened.
FormType
Form types.
Definition poppler-qt6.h:1119
@ AcroForm
AcroForm.
Definition poppler-qt6.h:1121
@ XfaForm
Adobe XML Forms Architecture (XFA), currently unsupported.
Definition poppler-qt6.h:1122
@ NoForm
Document doesn't contain forms.
Definition poppler-qt6.h:1120
bool setCreationDate(const QDateTime &val)
Set the creation date of the document to.
FormType formType() const
Returns the type of forms contained in the document.
QList< FontInfo > fonts() const
The fonts within the PDF document.
bool xrefWasReconstructed() const
Returns whether the document's XRef table has been reconstructed or not.
QColor paperColor() const
The paper color.
QString keywords() const
The keywords of the document.
bool okToPrint() const
Test if the permissions on the document allow it to be printed.
static std::unique_ptr< Document > loadFromData(const QByteArray &fileContents, const QByteArray &ownerPassword=QByteArray(), const QByteArray &userPassword=QByteArray())
Load the document from memory.
RenderBackend renderBackend() const
The currently set render backend.
QVector< int > formCalculateOrder() const
Returns the calculate order for forms (using their id).
bool setKeywords(const QString &val)
Set the keywords of the document to.
std::unique_ptr< Link > additionalAction(DocumentAdditionalActionsType type) const
Returns the additional action of the given type for the document or 0 if no action has been defined.
QStringList scripts() const
Document-level JavaScript scripts.
QString info(const QString &type) const
Get specified information associated with the document.
bool setInfo(const QString &key, const QString &val)
Set the value of the document's Info dictionary entry specified by.
bool okToFillForm() const
Test if the permissions on the document allow interactive form fields (including signature fields) to...
bool isValid() const
Is the embedded file valid?
QString description() const
The description associated with the file, if any.
~EmbeddedFile()
Destructor.
QByteArray checksum() const
The MD5 checksum of the file.
QString name() const
The name associated with the file.
QString mimeType() const
The MIME type of the file, if known.
QDateTime createDate() const
The creation date for the embedded file, if known.
QDateTime modDate() const
The modification date for the embedded file, if known.
int size() const
The size of the file.
QByteArray data()
The data as a byte array.
Container class for information about a font within a PDF document.
Definition poppler-qt6.h:178
Type type() const
The type of font encoding.
FontInfo & operator=(const FontInfo &fi)
Standard assignment operator.
QString name() const
The name of the font.
QString typeName() const
The name of the font encoding used.
QString file() const
The path of the font file used to represent this font on this system, or a null string is the font is...
FontInfo(const FontInfo &fi)
Copy constructor.
Type
The type of font.
Definition poppler-qt6.h:186
QString substituteName() const
The name of the substitute font.
bool isSubset() const
Whether the font provided is only a subset of the full font or not.
bool isEmbedded() const
Whether the font is embedded in the file, or not.
int currentPage() const
Returns the current page where the iterator is.
~FontIterator()
Destructor.
bool hasNext() const
Checks whether there is at least one more page to iterate, ie returns false when the iterator is beyo...
QList< FontInfo > next()
Returns the fonts of the current page and then advances the iterator to the next page.
Encapsulates data that describes a link.
Definition poppler-link.h:183
Container class for a movie object in a PDF document.
Definition poppler-qt6.h:1876
QString url() const
The URL of the movie to be played.
bool showControls() const
Whether show a bar with movie controls.
int rotation() const
The rotation (either 0, 90, 180, or 270 degrees clockwise) for the movie,.
bool showPosterImage() const
Returns whether a poster image should be shown if the movie is not playing.
QSize size() const
The size of the movie.
QImage posterImage() const
Returns the poster image that should be shown if the movie is not playing.
PlayMode
The play mode for playing the movie.
Definition poppler-qt6.h:1884
@ PlayPalindrome
Play forward, then backward, then again foward and so on until stopped.
Definition poppler-qt6.h:1888
@ PlayRepeat
Play continuously until stopped.
Definition poppler-qt6.h:1887
@ PlayOnce
Play the movie once, closing the movie controls at the end.
Definition poppler-qt6.h:1885
@ PlayOpen
Like PlayOnce, but leaving the controls open.
Definition poppler-qt6.h:1886
PlayMode playMode() const
How to play the movie.
Model for optional content.
Definition poppler-optcontent.h:48
QString uri() const
The URI to which the item links.
QString name() const
The name of the item which should be displayed to the user.
QVector< OutlineItem > children() const
Gets the child items of this item.
QSharedPointer< const LinkDestination > destination() const
The destination referred to by this item.
bool isOpen() const
Indicates whether the item should initially be display in an expanded or collapsed state.
OutlineItem()
Constructs a null item, i.e.
bool isNull() const
Indicates whether an item is null, i.e.
QString externalFileName() const
The external file name of the document to which the.
bool hasChildren() const
Determines if this item has any child items.
Describes how a PDF file viewer shall perform the transition from one page to another.
Definition poppler-page-transition.h:48
void defaultCTM(double *CTM, double dpiX, double dpiY, int rotate, bool upsideDown)
The default CTM.
bool(*)(const QVariant &) ShouldRenderToImagePartialQueryFunc
Partial Update query renderToImage callback.
Definition poppler-qt6.h:534
Orientation
Types of orientations that are possible.
Definition poppler-qt6.h:845
@ UpsideDown
Upside down orientation (portrait, with 180 degrees rotation).
Definition poppler-qt6.h:849
@ Seascape
Seascape orientation (portrait, with 270 degrees clockwise rotation).
Definition poppler-qt6.h:848
@ Landscape
Landscape orientation (portrait, with 90 degrees clockwise rotation ).
Definition poppler-qt6.h:846
@ Portrait
Normal portrait orientation.
Definition poppler-qt6.h:847
SearchFlag
Flags to modify the search behaviour.
Definition poppler-qt6.h:739
@ IgnoreCase
Case differences are ignored.
Definition poppler-qt6.h:741
@ WholeWords
Only whole words are matched.
Definition poppler-qt6.h:742
@ AcrossLines
Allows to match on text spanning from end of a line to the next line.
Definition poppler-qt6.h:746
@ IgnoreDiacritics
Diacritic differences (eg.
Definition poppler-qt6.h:743
bool search(const QString &text, double &sLeft, double &sTop, double &sRight, double &sBottom, SearchDirection direction, SearchFlags flags=NoSearchFlags, Rotation rotate=Rotate0) const
Returns true if the specified text was found.
std::vector< std::unique_ptr< FormField > > formFields() const
Returns the form fields on the page.
std::vector< std::unique_ptr< Annotation > > annotations() const
Returns the annotations of the page.
void addAnnotation(const Annotation *ann)
Adds an annotation to the page.
QString text(const QRectF &rect, TextLayout textLayout) const
Returns the text that is inside a specified rectangle.
std::vector< std::unique_ptr< Link > > links() const
Gets the links of the page.
std::unique_ptr< Link > action(PageAction act) const
Gets the page action specified, or empty unique pointer if there is no action.
PageTransition * transition() const
Returns the transition of this page.
int index() const
Returns the index of the page.
SearchDirection
The starting point for a search.
Definition poppler-qt6.h:720
@ PreviousResult
Find the previous result, moving "up the page".
Definition poppler-qt6.h:723
@ FromTop
Start sorting at the top of the document.
Definition poppler-qt6.h:721
@ NextResult
Find the next result, moving "down the page".
Definition poppler-qt6.h:722
PainterFlag
Additional flags for the renderToPainter method.
Definition poppler-qt6.h:468
@ DontSaveAndRestore
Do not save/restore the caller-owned painter.
Definition poppler-qt6.h:477
QImage thumbnail() const
Get the page thumbnail if it exists.
Rotation
The type of rotation to apply for an operation.
Definition poppler-qt6.h:438
@ Rotate270
Rotate 270 degrees clockwise (90 degrees counterclockwise).
Definition poppler-qt6.h:442
@ Rotate90
Rotate 90 degrees clockwise.
Definition poppler-qt6.h:440
@ Rotate0
Do not rotate.
Definition poppler-qt6.h:439
@ Rotate180
Rotate 180 degrees.
Definition poppler-qt6.h:441
Orientation orientation() const
The orientation of the page.
SearchMode
The type of search to perform.
Definition poppler-qt6.h:730
@ CaseSensitive
Case differences cause no match in searching.
Definition poppler-qt6.h:731
@ CaseInsensitive
Case differences are ignored in matching.
Definition poppler-qt6.h:732
std::vector< std::unique_ptr< TextBox > > textList(Rotation rotate=Rotate0) const
Returns a list of text of the page.
std::vector< std::unique_ptr< Annotation > > annotations(const QSet< Annotation::SubType > &subtypes) const
Returns the annotations of the page.
TextLayout
How the text is going to be returned.
Definition poppler-qt6.h:458
@ ReadingOrder
The text is returned in reading order,.
Definition poppler-qt6.h:461
@ RawOrderLayout
The text is returned without any type of processing.
Definition poppler-qt6.h:460
@ PhysicalLayout
The text is layouted to resemble the real page layout.
Definition poppler-qt6.h:459
PageAction
The kinds of page actions.
Definition poppler-qt6.h:449
@ Closing
The action when a page is "closed".
Definition poppler-qt6.h:451
@ Opening
The action when a page is "opened".
Definition poppler-qt6.h:450
double duration() const
Returns the page duration.
void(*)(const QImage &, const QVariant &) RenderToImagePartialUpdateFunc
Partial Update renderToImage callback.
Definition poppler-qt6.h:526
QString label() const
Returns the label of the page, or a null string is the page has no label.
QImage renderToImage(double xres=72.0, double yres=72.0, int x=-1, int y=-1, int w=-1, int h=-1, Rotation rotate=Rotate0) const
Render the page to a QImage using the current Document renderer.
bool renderToPainter(QPainter *painter, double xres=72.0, double yres=72.0, int x=-1, int y=-1, int w=-1, int h=-1, Rotation rotate=Rotate0, PainterFlags flags=NoPainterFlags) const
Render the page to the specified QPainter using the current Document renderer.
void removeAnnotation(const Annotation *ann)
Removes an annotation from the page and destroys the annotation object.
bool(*)(const QVariant &) ShouldAbortQueryFunc
Abort query function callback.
Definition poppler-qt6.h:591
Container class for a sound file in a PDF document.
Definition poppler-qt6.h:1800
double samplingRate() const
The sampling rate of the sound.
SoundEncoding soundEncoding() const
The encoding used for the sound.
int channels() const
The number of sound channels to use to play the sound.
SoundType soundType() const
Is the sound embedded (SoundObject::Embedded) or external (SoundObject::External)?
QString url() const
The URL of the sound file to be played, in case of SoundObject::External.
SoundEncoding
The encoding format used for the sound.
Definition poppler-qt6.h:1815
@ ALaw
A-law-encoded samples.
Definition poppler-qt6.h:1819
@ muLaw
mu-law-encoded samples
Definition poppler-qt6.h:1818
@ Signed
Twos-complement values.
Definition poppler-qt6.h:1817
@ Raw
Raw encoding, with unspecified or unsigned values in the range [ 0, 2^B - 1 ].
Definition poppler-qt6.h:1816
SoundType
The type of sound.
Definition poppler-qt6.h:1806
@ External
The real sound file is external.
Definition poppler-qt6.h:1807
@ Embedded
The sound is contained in the data.
Definition poppler-qt6.h:1808
int bitsPerSample() const
The number of bits per sample value per channel.
QByteArray data() const
The data of the sound, in case of SoundObject::Embedded.
Describes the physical location of text on a document page.
Definition poppler-qt6.h:123
bool hasSpaceAfter() const
Returns whether there is a space character after this text box.
TextBox(const QString &text, const QRectF &bBox)
The default constructor sets the text and the rectangle that contains the text.
QString text() const
Returns the text of this text box.
QRectF charBoundingBox(int i) const
Returns the bounding box of the i -th characted of the word.
TextBox * nextWord() const
Returns the pointer to the next text box, if there is one.
QRectF boundingBox() const
Returns the position of the text, in point, i.e., 1/72 of an inch.
The Poppler Qt6 binding.
Definition poppler-annotation.h:51
QDateTime convertDate(const char *dateString)
Conversion from PDF date string format to QDateTime.
void(*)(const QString &, const QVariant &) PopplerDebugFunc
Debug/error function.
Definition poppler-qt6.h:100
bool isOverprintPreviewAvailable()
Whether the overprint preview functionality is available.
bool isCmsAvailable()
Whether the color management functions are available.
void setDebugErrorFunction(PopplerDebugFunc debugFunction, const QVariant &closure)
Set a new debug/error output function.
The version specification of a pdf file.
Definition poppler-qt6.h:1525