mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 18:24:45 -05:00
b61eca0a1e
According to TR #51, the "best definition of the full set [of emojis] is in the emoji-test.txt file". This defines not only the emoji themselves, but the order in which they should be displayed, and what "group" of emojis they belong to.
26 lines
484 B
C++
26 lines
484 B
C++
/*
|
|
* Copyright (c) 2021-2022, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Unicode {
|
|
|
|
enum class Block : u16;
|
|
enum class EmojiGroup : u8;
|
|
enum class GeneralCategory : u8;
|
|
enum class GraphemeBreakProperty : u8;
|
|
enum class Property : u8;
|
|
enum class Script : u8;
|
|
enum class SentenceBreakProperty : u8;
|
|
enum class WordBreakProperty : u8;
|
|
|
|
struct CurrencyCode;
|
|
struct Emoji;
|
|
struct SpecialCasing;
|
|
|
|
}
|