aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/propDialog.h
blob: be67ebd3d3c5caf0f1870d19d74f3a142f3cc93d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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