diff options
author | Rui Matos <tiagomatos@gmail.com> | 2011-10-28 23:21:04 +0100 |
---|---|---|
committer | Rui Matos <tiagomatos@gmail.com> | 2011-11-08 19:25:51 +0000 |
commit | 43f1b5abbc83483c8554239adf8b42f218c11adf (patch) | |
tree | 0d973dbdc29c80f4dfb4f348e213024914daa41a /gdk/gdkevents.h | |
parent | c1e8e7ba22faf438cddf94aefab8789ca98f9593 (diff) | |
download | gtk+-43f1b5abbc83483c8554239adf8b42f218c11adf.tar.gz |
gdk: Add GDK_WINDOW_STATE_FOCUSED to GdkWindowState
This state means that the toplevel window is presented as focused to the user,
i.e with active decorations under an X11 window manager.
If the GDK backend doesn't implement this flag, it will just remain set after
mapping the window.
https://bugzilla.gnome.org/show_bug.cgi?id=661428
Diffstat (limited to 'gdk/gdkevents.h')
-rw-r--r-- | gdk/gdkevents.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdk/gdkevents.h b/gdk/gdkevents.h index 24a3b8ea4b..a1baac1d75 100644 --- a/gdk/gdkevents.h +++ b/gdk/gdkevents.h @@ -371,6 +371,7 @@ typedef enum * decorations. * @GDK_WINDOW_STATE_ABOVE: the window is kept above other windows. * @GDK_WINDOW_STATE_BELOW: the window is kept below other windows. + * @GDK_WINDOW_STATE_FOCUSED: the window is presented as focused (with active decorations). * * Specifies the state of a toplevel window. */ @@ -382,7 +383,8 @@ typedef enum GDK_WINDOW_STATE_STICKY = 1 << 3, GDK_WINDOW_STATE_FULLSCREEN = 1 << 4, GDK_WINDOW_STATE_ABOVE = 1 << 5, - GDK_WINDOW_STATE_BELOW = 1 << 6 + GDK_WINDOW_STATE_BELOW = 1 << 6, + GDK_WINDOW_STATE_FOCUSED = 1 << 7 } GdkWindowState; /** |