mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
KeyboardSettings: Port to GML compiler
This commit is contained in:
parent
c2c7365494
commit
ca2aaaeac2
Notes:
sideshowbarker
2024-07-17 08:35:21 +09:00
Author: https://github.com/notSanil
Commit: ca2aaaeac2
Pull-request: https://github.com/SerenityOS/serenity/pull/22685
Reviewed-by: https://github.com/timschumi ✅
7 changed files with 60 additions and 20 deletions
23
Userland/Applications/KeyboardSettings/KeymapDialog.h
Normal file
23
Userland/Applications/KeyboardSettings/KeymapDialog.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2024, Sanil Gupta <sanilg566@gmail.com>.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGUI/Widget.h>
|
||||
|
||||
namespace KeyboardSettings {
|
||||
|
||||
class KeymapDialog : public GUI::Widget {
|
||||
C_OBJECT_ABSTRACT(KeymapDialog)
|
||||
public:
|
||||
static ErrorOr<NonnullRefPtr<KeymapDialog>> try_create();
|
||||
virtual ~KeymapDialog() override = default;
|
||||
|
||||
private:
|
||||
KeymapDialog() = default;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue