1 /* 2 SPDX-FileCopyrightText: 2015 Elvis Angelaccio <elvis.angelaccio@kde.org> 3 4 SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7 #ifndef PREVIEWSETTINGSPAGE_H 8 #define PREVIEWSETTINGSPAGE_H 9 10 #include "settingspage.h" 11 #include "ui_previewsettingspage.h" 12 13 namespace Kerfuffle 14 { 15 class KERFUFFLE_EXPORT PreviewSettingsPage : public SettingsPage, public Ui::PreviewSettingsPage 16 { 17 Q_OBJECT 18 19 public: 20 explicit PreviewSettingsPage(QWidget *parent = nullptr, const QString &name = QString(), const QString &iconName = QString()); 21 22 private Q_SLOTS: 23 void slotToggled(bool enabled); 24 }; 25 } 26 27 #endif 28