mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:37:35 +00:00
AboutDialog: Port to GML Complier
This commit is contained in:
parent
ea59bfaae7
commit
564e619f57
4 changed files with 29 additions and 6 deletions
23
Userland/Libraries/LibGUI/AboutDialogWidget.h
Normal file
23
Userland/Libraries/LibGUI/AboutDialogWidget.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2024, Aarushi Chauhan <aarushi595.chauhan@gmail.com>.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Frame.h>
|
||||
|
||||
namespace GUI {
|
||||
|
||||
class AboutDialogWidget : public GUI::Widget {
|
||||
C_OBJECT_ABSTRACT(AboutDialogWidget)
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<AboutDialogWidget>> try_create();
|
||||
virtual ~AboutDialogWidget() override = default;
|
||||
|
||||
private:
|
||||
AboutDialogWidget() = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue