summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Kareh <[email protected]>2019-05-21 13:38:37 -0400
committerraveit65 <[email protected]>2019-06-16 18:12:44 +0200
commite5cc84c337a856517a81a56d7a0fdbf40a1a90e5 (patch)
tree0ebf92e2d4a8abc89fe0f4de0fbbe3264b0e2288
parent73f74047e14e0942c403ea59284ace877680bbf9 (diff)
downloadmarco-e5cc84c337a856517a81a56d7a0fdbf40a1a90e5.tar.bz2
marco-e5cc84c337a856517a81a56d7a0fdbf40a1a90e5.tar.xz
core: Allow retrieving the theme variant via core_get()
To associate frames with the correct style variant, the UI will need access to the window's theme variant property. https://bugzilla.gnome.org/show_bug.cgi?id=645355 upstream commit: https://gitlab.gnome.org/GNOME/metacity/commit/5c7403cc
-rw-r--r--src/core/core.c3
-rw-r--r--src/include/core.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.c b/src/core/core.c
index 535a3820..85b7d5cb 100644
--- a/src/core/core.c
+++ b/src/core/core.c
@@ -200,6 +200,9 @@ meta_core_get (Display *xdisplay,
case META_CORE_GET_FRAME_HEIGHT:
*((gint*)answer) = window->frame->rect.height;
break;
+ case META_CORE_GET_THEME_VARIANT:
+ *((char**)answer) = window->gtk_theme_variant;
+ break;
case META_CORE_GET_SCREEN_WIDTH:
*((gint*)answer) = window->screen->rect.width;
break;
diff --git a/src/include/core.h b/src/include/core.h
index faf792ed..78b7509f 100644
--- a/src/include/core.h
+++ b/src/include/core.h
@@ -48,6 +48,7 @@ typedef enum
META_CORE_GET_FRAME_Y,
META_CORE_GET_FRAME_WIDTH,
META_CORE_GET_FRAME_HEIGHT,
+ META_CORE_GET_THEME_VARIANT,
META_CORE_GET_SCREEN_WIDTH,
META_CORE_GET_SCREEN_HEIGHT,
} MetaCoreGetType;