File indexing completed on 2024-05-05 05:50:42

0001 /*
0002     SPDX-FileCopyrightText: 2015 Elvis Angelaccio <elvis.angelaccio@kde.org>
0003 
0004     SPDX-License-Identifier: BSD-2-Clause
0005 */
0006 
0007 #ifndef PREVIEWSETTINGSPAGE_H
0008 #define PREVIEWSETTINGSPAGE_H
0009 
0010 #include "settingspage.h"
0011 #include "ui_previewsettingspage.h"
0012 
0013 namespace Kerfuffle
0014 {
0015 class KERFUFFLE_EXPORT PreviewSettingsPage : public SettingsPage, public Ui::PreviewSettingsPage
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     explicit PreviewSettingsPage(QWidget *parent = nullptr, const QString &name = QString(), const QString &iconName = QString());
0021 
0022 private Q_SLOTS:
0023     void slotToggled(bool enabled);
0024 };
0025 }
0026 
0027 #endif