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:
parent
a838004725
commit
91e5b6d4f5
4 changed files with 53 additions and 0 deletions
21
Ladybird/SettingsDialog.h
Normal file
21
Ladybird/SettingsDialog.h
Normal 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 };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue