mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 18:57:34 +00:00
KeyboardSettings: Port to GML compiler
This commit is contained in:
parent
c2c7365494
commit
ca2aaaeac2
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