-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--- We've added a generator that adds support for all Unicode emojis. --- Type: add Breaking: False Doc Required: False Backport Required: False Part: 1/1
- Loading branch information
Showing
7 changed files
with
410 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// | ||
// Textify Copyright (C) 2023-2024 Aptivi | ||
// | ||
// This file is part of Textify | ||
// | ||
// Textify is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Textify is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY, without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
|
||
namespace Textify.Data.Unicode | ||
{ | ||
/// <summary> | ||
/// Emoji information | ||
/// </summary> | ||
public class Emoji | ||
{ | ||
private readonly string name = ""; | ||
private readonly string sequence = ""; | ||
private readonly EmojiStatus status = EmojiStatus.Component; | ||
|
||
/// <summary> | ||
/// Emoji name | ||
/// </summary> | ||
public string Name => | ||
name; | ||
|
||
/// <summary> | ||
/// A sequence of characters that represent an emoji | ||
/// </summary> | ||
public string Sequence => | ||
sequence; | ||
|
||
/// <summary> | ||
/// Emoji status | ||
/// </summary> | ||
public EmojiStatus Status => | ||
status; | ||
|
||
internal Emoji(string name, string sequence, EmojiStatus status) | ||
{ | ||
this.name = name; | ||
this.sequence = sequence; | ||
this.status = status; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// | ||
// Textify Copyright (C) 2023-2024 Aptivi | ||
// | ||
// This file is part of Textify | ||
// | ||
// Textify is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Textify is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY, without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
|
||
namespace Textify.Data.Unicode | ||
{ | ||
/// <summary> | ||
/// Emoji management tools | ||
/// </summary> | ||
public static partial class EmojiManager | ||
{ | ||
/// <summary> | ||
/// Gets a list of emoticons | ||
/// </summary> | ||
public static Emoji[] GetEmojis() => | ||
emojis.Values; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// | ||
// Textify Copyright (C) 2023-2024 Aptivi | ||
// | ||
// This file is part of Textify | ||
// | ||
// Textify is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// Textify is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY, without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
|
||
namespace Textify.Data.Unicode | ||
{ | ||
/// <summary> | ||
/// Emoji status enumeration | ||
/// </summary> | ||
public enum EmojiStatus | ||
{ | ||
/// <summary> | ||
/// Emoji doesn't have a status | ||
/// </summary> | ||
None, | ||
/// <summary> | ||
/// Emoji is a component (excluding Regional_Indicators, ASCII, and non-Emoji.) | ||
/// </summary> | ||
Component, | ||
/// <summary> | ||
/// Emoji is fully qualified | ||
/// </summary> | ||
FullyQualified, | ||
/// <summary> | ||
/// Emoji is minimally qualified | ||
/// </summary> | ||
MinimalQualified, | ||
/// <summary> | ||
/// Emoji is not qualified | ||
/// </summary> | ||
NotQualified, | ||
} | ||
} |
Oops, something went wrong.