Options dialog

This commit is contained in:
Jakub Melka
2019-09-06 19:07:52 +02:00
parent 135fa6fc86
commit 4058a25bab
14 changed files with 1646 additions and 75 deletions

View File

@ -0,0 +1,42 @@
#ifndef PDFVIEWERSETTINGSDIALOG_H
#define PDFVIEWERSETTINGSDIALOG_H
#include "pdfviewersettings.h"
#include <QDialog>
class QListWidgetItem;
namespace Ui
{
class PDFViewerSettingsDialog;
}
namespace pdfviewer
{
class PDFViewerSettingsDialog : public QDialog
{
Q_OBJECT
public:
explicit PDFViewerSettingsDialog(QWidget* parent);
virtual ~PDFViewerSettingsDialog() override;
enum Page : int
{
EngineSettings,
RenderingSettings,
ShadingSettings
};
private slots:
void on_optionsPagesWidget_currentItemChanged(QListWidgetItem* current, QListWidgetItem* previous);
private:
Ui::PDFViewerSettingsDialog* ui;
};
} // namespace pdfviewer
#endif // PDFVIEWERSETTINGSDIALOG_H