mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-05 22:52:10 +02:00
EmojiInputDialog: Port to GML compilation
This commit is contained in:
committed by
Tim Schumacher
parent
d6ca054935
commit
b2587cb11b
24
Userland/Libraries/LibGUI/EmojiInputDialogWidget.h
Normal file
24
Userland/Libraries/LibGUI/EmojiInputDialogWidget.h
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Copyright (c) 2024, Aryan Baburajan <aryanbaburajan2007@gmail.com>.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Frame.h>
|
||||
|
||||
namespace GUI {
|
||||
|
||||
class EmojiInputDialogWidget : public GUI::Widget {
|
||||
C_OBJECT_ABSTRACT(EmojiInputDialogWidget)
|
||||
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<EmojiInputDialogWidget>> try_create();
|
||||
virtual ~EmojiInputDialogWidget() override = default;
|
||||
|
||||
private:
|
||||
EmojiInputDialogWidget() = default;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user