diff options
author | Filiph Sandström <filiph.sandstrom@filfatstudios.com> | 2022-07-14 06:08:30 +0200 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-12-25 07:58:58 -0700 |
commit | 91e5b6d4f5508d5c752bb8a54a72884fa9285400 (patch) | |
tree | 2f3248a75e39cd1cb639a0aa1f2e402422b0e55f /Ladybird/SettingsDialog.h | |
parent | a8380047257cb19885bf23ead9a0a92075d4cbce (diff) | |
download | serenity-91e5b6d4f5508d5c752bb8a54a72884fa9285400.zip |
Ladybird: Add SettingsDialog stub
Diffstat (limited to 'Ladybird/SettingsDialog.h')
-rw-r--r-- | Ladybird/SettingsDialog.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Ladybird/SettingsDialog.h b/Ladybird/SettingsDialog.h new file mode 100644 index 0000000000..d303202d06 --- /dev/null +++ b/Ladybird/SettingsDialog.h @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com> + * + * SPDX-License-Identifier: BSD-2-Clause + */ + +#include <QBoxLayout> +#include <QDialog> +#include <QMainWindow> + +#pragma once + +class SettingsDialog : public QDialog { + Q_OBJECT +public: + explicit SettingsDialog(QMainWindow* window); + +private: + QBoxLayout* m_layout; + QMainWindow* m_window { nullptr }; +}; |