aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/propDialog.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-12-21 09:47:39 -0500
committerKen Moore <ken@ixsystems.com>2017-12-21 09:47:39 -0500
commit6fa4f14708a67c57d7b6753c4e933df2e6b2f583 (patch)
treee867e7fc3c61535b1c74d956556cc31c630a5ead /src-qt5/desktop-utils/lumina-pdf/propDialog.h
parentTurn of some stdout messages within the Qt theme plugin. (diff)
parentMerge branch 'master' of https://github.com/trueos/lumina (diff)
downloadlumina-6fa4f14708a67c57d7b6753c4e933df2e6b2f583.tar.gz
lumina-6fa4f14708a67c57d7b6753c4e933df2e6b2f583.tar.bz2
lumina-6fa4f14708a67c57d7b6753c4e933df2e6b2f583.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'src-qt5/desktop-utils/lumina-pdf/propDialog.h')
-rw-r--r--src-qt5/desktop-utils/lumina-pdf/propDialog.h25
1 files changed, 25 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..be67ebd3
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-pdf/propDialog.h
@@ -0,0 +1,25 @@
+//===========================================
+// Lumina Desktop source code
+// Copyright (c) 2017, Ken Moore
+// Available under the 3-clause BSD license
+// See the LICENSE file for full details
+//===========================================
+#ifndef _LUMINA_PDF_VIEWER_PROP_DIALOG_H
+#define _LUMINA_PDF_VIEWER_PROP_DIALOG_H
+
+#include <QDialog>
+#include <poppler/qt5/poppler-qt5.h>
+
+namespace Ui{
+ class PropDialog;
+};
+
+class PropDialog : public QDialog {
+ Q_OBJECT
+ public:
+ PropDialog(Poppler::Document*);
+
+ private:
+ Ui::PropDialog *ui;
+};
+#endif
bgstack15