[metacity] core: Allow retrieving the theme variant via core_get()
- From: Alberts Muktupāvels <muktupavels src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [metacity] core: Allow retrieving the theme variant via core_get()
- Date: Wed, 8 Oct 2014 18:30:23 +0000 (UTC)
commit 5c7403cc66003ff1949916dfdd287dbc622dfd5e
Author: Florian Müllner <fmuellner gnome org>
Date: Sun Mar 20 22:42:12 2011 +0100
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
src/core/core.c | 3 +++
src/include/core.h | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/src/core/core.c b/src/core/core.c
index 6b62ec4..5b56ab6 100644
--- a/src/core/core.c
+++ b/src/core/core.c
@@ -198,6 +198,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 b2b3d08..6cc41a6 100644
--- a/src/include/core.h
+++ b/src/include/core.h
@@ -46,6 +46,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;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]