mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-28 05:52:53 +00:00
27 lines
512 B
C++
27 lines
512 B
C++
/*
|
|
* Copyright (c) 2021, Timur Sultanov <SultanovTS@yandex.ru>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Label.h>
|
|
#include <LibGUI/Window.h>
|
|
|
|
class KeymapStatusWidget;
|
|
|
|
class KeymapStatusWindow final : public GUI::Window {
|
|
C_OBJECT(KeymapStatusWindow)
|
|
public:
|
|
virtual ~KeymapStatusWindow() override;
|
|
|
|
private:
|
|
void wm_event(GUI::WMEvent&) override;
|
|
|
|
KeymapStatusWindow();
|
|
|
|
RefPtr<GUI::Label> m_label;
|
|
|
|
void set_keymap_text(String const& keymap);
|
|
};
|