From e41f68cc4576b8581466051319c94a1e840049c4 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Wed, 21 Mar 2018 15:20:09 -0400 Subject: Added a bookmarks menu, enabled on the MuPDF side. --- src-qt5/desktop-utils/lumina-pdf/PropDialog.h | 29 +++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src-qt5/desktop-utils/lumina-pdf/PropDialog.h (limited to 'src-qt5/desktop-utils/lumina-pdf/PropDialog.h') diff --git a/src-qt5/desktop-utils/lumina-pdf/PropDialog.h b/src-qt5/desktop-utils/lumina-pdf/PropDialog.h new file mode 100644 index 00000000..aa8f4d92 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-pdf/PropDialog.h @@ -0,0 +1,29 @@ +//=========================================== +// Lumina Desktop source code +// Copyright (c) 2017, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#pragma once + +#include +#include +#include "Renderer.h" + +namespace Ui{ + class PropDialog; +}; + +class PropDialog : public QDialog { + Q_OBJECT + public: + PropDialog(Renderer *Backend); + + public slots: + void setSize(QSizeF); + void setInformation(); + + private: + Ui::PropDialog *ui; + Renderer *BACKEND; +}; -- cgit