1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

Ladybird: Add SettingsDialog stub

This commit is contained in:
Filiph Sandström 2022-07-14 06:08:30 +02:00 committed by Andrew Kaster
parent a838004725
commit 91e5b6d4f5
4 changed files with 53 additions and 0 deletions

21
Ladybird/SettingsDialog.h Normal file
View file

@ -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 };
};