QPdfPageSelector Class
A widget for selecting a PDF page. More...
Header: | #include <QPdfPageSelector> |
Since: | Qt 6.6 |
Inherits: | QWidget |
Properties
- currentPage : int
- currentPageLabel : const QString
- document : QPdfDocument*
Public Functions
QPdfPageSelector(QWidget *parent) | |
virtual | ~QPdfPageSelector() override |
int | currentPage() const |
QString | currentPageLabel() const |
QPdfDocument * | document() const |
void | setDocument(QPdfDocument *document) |
Public Slots
void | setCurrentPage(int index) |
Signals
void | currentPageChanged(int index) |
void | currentPageLabelChanged(const QString &label) |
void | documentChanged(QPdfDocument *document) |
Detailed Description
QPdfPageSelector is a widget for selecting a page label from a QPdfDocument.
See also QPdfDocument::pageLabel().
Property Documentation
currentPage : int
This property holds the index (0
-based) of the current page in the document.
Access functions:
int | currentPage() const |
void | setCurrentPage(int index) |
Notifier signal:
void | currentPageChanged(int index) |
[read-only]
currentPageLabel : const QString
This property holds the page label corresponding to the current page in the document.
This is the text presented to the user.
Access functions:
QString | currentPageLabel() const |
Notifier signal:
void | currentPageLabelChanged(const QString &label) |
See also QPdfDocument::pageLabel().
document : QPdfDocument*
This property holds the document to be viewed.
Access functions:
QPdfDocument * | document() const |
void | setDocument(QPdfDocument *document) |
Notifier signal:
void | documentChanged(QPdfDocument *document) |
Member Function Documentation
[explicit]
QPdfPageSelector::QPdfPageSelector(QWidget *parent)
Constructs a PDF page selector with parent widget parent.
[override virtual noexcept]
QPdfPageSelector::~QPdfPageSelector()
Destroys the page selector.
© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.