2024-03-10 12:05:33 +01:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
#include <string.h>
|
2024-11-01 17:38:50 +01:00
|
|
|
#include <libportal/portal.h>
|
2024-11-07 16:47:02 +01:00
|
|
|
#ifdef XDP_TYPE_INPUT_CAPTURE_SESSION // libportal >= 0.8
|
2024-11-01 17:38:50 +01:00
|
|
|
#include <libportal/settings.h>
|
2024-11-07 16:47:02 +01:00
|
|
|
#endif
|
2024-03-10 12:05:33 +01:00
|
|
|
|
2024-08-29 13:51:08 +02:00
|
|
|
#include "portal-openuri.h"
|
|
|
|
|
|
2024-03-10 12:05:33 +01:00
|
|
|
#include "../defines.h"
|
|
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
|
|
#include "../generated_headers/android_content_Context.h"
|
|
|
|
|
|
2024-06-19 20:47:49 +02:00
|
|
|
extern char *apk_path;
|
|
|
|
|
|
|
|
|
|
JNIEXPORT jstring JNICALL Java_android_content_Context_native_1get_1apk_1path(JNIEnv *env, jclass this) {
|
|
|
|
|
return _JSTRING(apk_path);
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-07 16:47:02 +01:00
|
|
|
#ifdef XDP_TYPE_INPUT_CAPTURE_SESSION // libportal >= 0.8
|
2024-11-01 17:38:50 +01:00
|
|
|
static void settings_changed_cb(XdpSettings *xdp_settings, gchar *namestpace, gchar *key, GVariant* value, jobject configuration)
|
|
|
|
|
{
|
|
|
|
|
JNIEnv *env;
|
|
|
|
|
if (!strcmp(namestpace, "org.freedesktop.appearance") && !strcmp(key, "color-scheme")) {
|
|
|
|
|
int color_sheme = g_variant_get_uint32(value);
|
|
|
|
|
g_object_set(gtk_settings_get_default(), "gtk-application-prefer-dark-theme", color_sheme == 1, NULL);
|
|
|
|
|
env = get_jni_env();
|
|
|
|
|
if (!configuration) {
|
|
|
|
|
jobject resources = _GET_STATIC_OBJ_FIELD(handle_cache.context.class, "r", "Landroid/content/res/Resources;");
|
|
|
|
|
configuration = _GET_OBJ_FIELD(resources, "mConfiguration", "Landroid/content/res/Configuration;");
|
|
|
|
|
}
|
|
|
|
|
if (color_sheme == 1) // Prefer dark appearance
|
|
|
|
|
_SET_INT_FIELD(configuration, "uiMode", /*UI_MODE_NIGHT_YES*/ 0x20);
|
|
|
|
|
else if (color_sheme == 2) // Prefer light appearance
|
|
|
|
|
_SET_INT_FIELD(configuration, "uiMode", /*UI_MODE_NIGHT_NO*/ 0x10);
|
|
|
|
|
else // No preference
|
|
|
|
|
_SET_INT_FIELD(configuration, "uiMode", /*UI_MODE_NIGHT_UNDEFINED*/ 0x00);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static XdpSettings *xdp_settings = NULL;
|
2024-11-07 16:47:02 +01:00
|
|
|
#endif
|
2024-11-01 17:38:50 +01:00
|
|
|
|
2024-06-19 20:47:49 +02:00
|
|
|
JNIEXPORT void JNICALL Java_android_content_Context_native_1updateConfig(JNIEnv *env, jclass this, jobject config)
|
2024-03-10 12:05:33 +01:00
|
|
|
{
|
2024-12-30 09:33:38 +01:00
|
|
|
GdkDisplay *display = gdk_display_get_default();
|
|
|
|
|
GdkMonitor *monitor = g_list_model_get_item(gdk_display_get_monitors(display), 0);
|
|
|
|
|
GdkRectangle geometry;
|
|
|
|
|
gdk_monitor_get_geometry(monitor, &geometry);
|
|
|
|
|
|
|
|
|
|
_SET_INT_FIELD(config, "screenWidthDp", geometry.width);
|
|
|
|
|
_SET_INT_FIELD(config, "screenHeightDp", geometry.height);
|
2024-11-07 16:47:02 +01:00
|
|
|
#ifdef XDP_TYPE_INPUT_CAPTURE_SESSION // libportal >= 0.8
|
2024-11-01 17:38:50 +01:00
|
|
|
if (!xdp_settings) {
|
2024-12-30 09:33:38 +01:00
|
|
|
GError *error = NULL;
|
|
|
|
|
XdpPortal *portal = xdp_portal_initable_new(&error);
|
|
|
|
|
if (!portal) {
|
|
|
|
|
printf("xdp_portal_initable_new failed: %s\n", error->message);
|
|
|
|
|
g_error_free(error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2024-11-01 17:38:50 +01:00
|
|
|
xdp_settings = xdp_portal_get_settings(portal);
|
|
|
|
|
g_object_unref(portal);
|
|
|
|
|
g_signal_connect(xdp_settings, "changed", G_CALLBACK(settings_changed_cb), NULL);
|
|
|
|
|
}
|
|
|
|
|
GVariant *color_sheme = xdp_settings_read_value(xdp_settings, "org.freedesktop.appearance", "color-scheme", NULL, NULL);
|
|
|
|
|
if (color_sheme) {
|
|
|
|
|
settings_changed_cb(xdp_settings, "org.freedesktop.appearance", "color-scheme", color_sheme, config);
|
|
|
|
|
g_variant_unref(color_sheme);
|
2024-03-10 12:05:33 +01:00
|
|
|
}
|
2024-11-07 16:47:02 +01:00
|
|
|
#endif
|
2024-03-10 17:45:38 +01:00
|
|
|
}
|
2024-08-29 13:51:08 +02:00
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_android_content_Context_nativeOpenFile(JNIEnv *env, jclass class, jint fd)
|
|
|
|
|
{
|
|
|
|
|
GDBusConnection *connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL);
|
|
|
|
|
OpenURI *openuri = open_uri_proxy_new_sync(connection, 0, "org.freedesktop.portal.Desktop", "/org/freedesktop/portal/desktop", NULL, NULL);
|
|
|
|
|
GVariantBuilder opt_builder;
|
|
|
|
|
g_variant_builder_init(&opt_builder, G_VARIANT_TYPE_VARDICT);
|
|
|
|
|
GUnixFDList *fd_list = g_unix_fd_list_new_from_array(&fd, 1);
|
|
|
|
|
open_uri_call_open_file_sync(openuri, "", g_variant_new("h", 0), g_variant_builder_end(&opt_builder), fd_list, NULL, NULL, NULL, NULL);
|
|
|
|
|
g_object_unref(fd_list);
|
|
|
|
|
g_object_unref(openuri);
|
|
|
|
|
g_object_unref(connection);
|
|
|
|
|
}
|