/* * Xournal++ * * PDF view * * @author Xournal++ Team * https://github.com/xournalpp/xournalpp * * @license GNU GPLv2 or later */ #pragma once #include #include #include "pdf/base/XojPdfPage.h" #include "BaseElementView.h" #include "XournalType.h" class PdfPagesDialog; class PdfElementView: public BaseElementView { public: PdfElementView(int id, XojPdfPageSPtr page, PdfPagesDialog* dlg); ~PdfElementView(); protected: /** * Paint the contents (without border / selection) */ virtual void paintContents(cairo_t* cr); /** * Get the width in pixel, without shadow / border */ virtual int getContentWidth(); /** * Get the height in pixel, without shadow / border */ virtual int getContentHeight(); public: bool isUsed() const; void setUsed(bool used); void setHideUnused(); private: XojPdfPageSPtr page; /** * This page is already used as background */ bool used = false; };