mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
EmojiInputDialog: Port to GML compilation
This commit is contained in:
committed by
Tim Schumacher
parent
d6ca054935
commit
b2587cb11b
Notes:
sideshowbarker
2024-07-17 07:31:31 +09:00
Author: https://github.com/aryanbaburajan Commit: https://github.com/SerenityOS/serenity/commit/b2587cb11b Pull-request: https://github.com/SerenityOS/serenity/pull/23782 Reviewed-by: https://github.com/timschumi ✅
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