ladybird/Userland/Libraries/LibKeyboard/CharacterMap.h
2022-04-01 21:24:45 +01:00

32 lines
729 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Error.h>
#include <AK/String.h>
#include <LibKeyboard/CharacterMapData.h>
namespace Keyboard {
class CharacterMap {
public:
CharacterMap(String const& map_name, CharacterMapData const& map_data);
static ErrorOr<CharacterMap> load_from_file(String const& filename);
int set_system_map();
static ErrorOr<CharacterMap> fetch_system_map();
CharacterMapData const& character_map_data() const { return m_character_map_data; };
String const& character_map_name() const;
private:
CharacterMapData m_character_map_data;
String m_character_map_name;
};
}