diff options
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/PropDialog.h')
-rw-r--r-- | src-qt5/desktop-utils/lumina-pdf/PropDialog.h | 29 |
1 files changed, 29 insertions, 0 deletions
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 <QDialog> +#include <QTextEdit> +#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; +}; |