okular/mobile/components/pageitem.h
Albert Astals Cid 8681bc0223 Okular Mobile: Require Qt 5.15.2
Removes the smooth property of PageItem since it was never set and clazy
was complaining about it not having a NOTIFY signal

Remove two signals that already exist in parent class

Fix C++11 detach in range-loop
2021-12-28 09:06:01 +00:00

154 lines
3.8 KiB
C++

/*
SPDX-FileCopyrightText: 2012 Marco Martin <mart@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef QPAGEITEM_H
#define QPAGEITEM_H
#include <QImage>
#include <QPointer>
#include <QQuickItem>
#include <core/document.h>
#include <core/view.h>
class QTimer;
class DocumentItem;
namespace Okular
{
class Document;
class Page;
}
class PageItem : public QQuickItem, public Okular::View
{
Q_OBJECT
/**
* If this page is in a Flickable, assign it in this property, to make goToBookmark work
*/
Q_PROPERTY(QQuickItem *flickable READ flickable WRITE setFlickable NOTIFY flickableChanged)
/**
* The document this page belongs to
*/
Q_PROPERTY(DocumentItem *document READ document WRITE setDocument NOTIFY documentChanged)
/**
* The currently displayed page
*/
Q_PROPERTY(int pageNumber READ pageNumber WRITE setPageNumber NOTIFY pageNumberChanged)
/**
* "Natural" width of the page
*/
Q_PROPERTY(int implicitWidth READ implicitWidth NOTIFY implicitWidthChanged)
/**
* "Natural" height of the page
*/
Q_PROPERTY(int implicitHeight READ implicitHeight NOTIFY implicitHeightChanged)
/**
* True if the page contains at least a bookmark.
* Writing true to tis property idds a bookmark at the beginning of the page (if needed).
* Writing false, all bookmarks for this page will be removed
*/
Q_PROPERTY(bool bookmarked READ isBookmarked WRITE setBookmarked NOTIFY bookmarkedChanged)
/**
* list of bookmarks urls valid on this page
*/
Q_PROPERTY(QStringList bookmarks READ bookmarks NOTIFY bookmarksChanged)
public:
explicit PageItem(QQuickItem *parent = nullptr);
~PageItem() override;
void setFlickable(QQuickItem *flickable);
QQuickItem *flickable() const;
int implicitWidth() const;
int implicitHeight() const;
DocumentItem *document() const;
void setDocument(DocumentItem *doc);
int pageNumber() const;
void setPageNumber(int number);
bool isBookmarked();
void setBookmarked(bool bookmarked);
QStringList bookmarks() const;
void requestPixmap();
/**
* loads a page bookmark and tries to ensure the bookmarked position is visible
* @param bookmark Url for the bookmark
*/
Q_INVOKABLE void goToBookmark(const QString &bookmark);
/**
* Returns the position in the page for a bookmark
* QPointF(-1,-1) if doesn't belong to this page
*
* @param bookmark Url for the bookmark
*/
Q_INVOKABLE QPointF bookmarkPosition(const QString &bookmark) const;
/**
* Add a new bookmark ar a given position of the current page
*/
Q_INVOKABLE void setBookmarkAtPos(qreal x, qreal y);
/**
* Remove a bookmark ar a given position of the current page (if present)
*/
Q_INVOKABLE void removeBookmarkAtPos(qreal x, qreal y);
/**
* Remove a bookmark at a given position, if any
*/
Q_INVOKABLE void removeBookmark(const QString &bookmark);
void geometryChanged(const QRectF &newGeometry, const QRectF &oldGeometry) override;
QSGNode *updatePaintNode(QSGNode *, QQuickItem::UpdatePaintNodeData *) override;
Q_SIGNALS:
void flickableChanged();
void documentChanged();
void pageNumberChanged();
void bookmarkedChanged();
void bookmarksChanged();
protected:
void setIsThumbnail(bool thumbnail);
private Q_SLOTS:
void pageHasChanged(int page, int flags);
void checkBookmarksChanged();
void contentXChanged();
void contentYChanged();
private:
void paint();
void refreshPage();
const Okular::Page *m_page;
bool m_bookmarked;
bool m_isThumbnail;
QPointer<DocumentItem> m_documentItem;
QTimer *m_redrawTimer;
QPointer<QQuickItem> m_flickable;
Okular::DocumentViewport m_viewPort;
QImage m_buffer;
};
#endif