1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-17 14:11:06 +00:00

Android: Support for base color retrieval

This commit is contained in:
Anish Mishra
2024-12-09 17:55:42 +05:30
parent 1f47e4c4e3
commit 70b24c3d16
6 changed files with 38 additions and 7 deletions

View File

@@ -57,6 +57,7 @@ private:
jmethodID _is_dark_mode_supported = nullptr;
jmethodID _is_dark_mode = nullptr;
jmethodID _get_accent_color = nullptr;
jmethodID _get_base_color = nullptr;
jmethodID _get_clipboard = nullptr;
jmethodID _set_clipboard = nullptr;
jmethodID _has_clipboard = nullptr;
@@ -102,6 +103,7 @@ public:
bool is_dark_mode_supported();
bool is_dark_mode();
Color get_accent_color();
Color get_base_color();
bool has_get_clipboard();
String get_clipboard();
bool has_set_clipboard();