File indexing completed on 2024-11-24 03:56:28

0001 /*
0002  * SPDX-FileCopyrightText: 2019-2023 Mattia Basaglia <dev@dragon.best>
0003  *
0004  * SPDX-License-Identifier: GPL-3.0-or-later
0005  */
0006 
0007 #ifndef SETTINGSDIALOG_H
0008 #define SETTINGSDIALOG_H
0009 
0010 #include <memory>
0011 #include <QDialog>
0012 
0013 
0014 namespace app {
0015 
0016 class SettingsDialog : public QDialog
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     SettingsDialog(QWidget* parent=nullptr);
0022     ~SettingsDialog();
0023 
0024 protected:
0025     void changeEvent(QEvent *e) override;
0026 
0027 private:
0028     class Private;
0029     std::unique_ptr<Private> d;
0030 };
0031 
0032 } // namespace app
0033 #endif // SETTINGSDIALOG_H