summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kurtz <kurtz.alex@googlemail.com>2012-02-04 21:02:28 +0100
committerJürg Billeter <j@bitron.ch>2012-06-23 17:30:40 +0200
commit519aef749399409f6886522bfb570e74ed65a6d9 (patch)
tree33f3771c5f0a97bc843eb70d5d3ae5470c70d82b
parenta151518b33449263f8715f57ebdcde1014be23d7 (diff)
downloadvala-519aef749399409f6886522bfb570e74ed65a6d9.tar.gz
x11: Enable some fields which were previously commented out.
https://bugzilla.gnome.org/show_bug.cgi?id=669374
-rw-r--r--vapi/x11.vapi12
1 files changed, 6 insertions, 6 deletions
diff --git a/vapi/x11.vapi b/vapi/x11.vapi
index ce83c89d0..e056224f2 100644
--- a/vapi/x11.vapi
+++ b/vapi/x11.vapi
@@ -457,9 +457,9 @@ namespace X {
[CCode (cname = "XSetWindowAttributes")]
public struct SetWindowAttributes {
- // public Pixmap background_pixmap; /* background or None or ParentRelative */
+ public Pixmap background_pixmap; /* background or None or ParentRelative */
public ulong background_pixel; /* background pixel */
- // public Pixmap border_pixmap; /* border of the window */
+ public Pixmap border_pixmap; /* border of the window */
public ulong border_pixel; /* border pixel value */
public int bit_gravity; /* one of bit gravity values */
public int win_gravity; /* one of the window gravity values */
@@ -470,8 +470,8 @@ namespace X {
public long event_mask; /* set of events that should be saved */
public long do_not_propagate_mask; /* set of events that should not propagate */
public bool override_redirect; /* boolean value for override-redirect */
- // public Colormap colormap; /* color map to be associated with window */
- // public Cursor cursor; /* cursor to be displayed (or None) */
+ public Colormap colormap; /* color map to be associated with window */
+ public Cursor cursor; /* cursor to be displayed (or None) */
}
[CCode(cname = "XWindowAttributes",
@@ -492,14 +492,14 @@ namespace X {
public ulong backing_planes;/* planes to be preserved if possible */
public ulong backing_pixel;/* value to be used when restoring planes */
public bool save_under; /* boolean, should bits under be saved? */
- // public Colormap colormap; /* color map to be associated with window */
+ public Colormap colormap; /* color map to be associated with window */
public bool map_installed; /* boolean, is color map currently installed*/
public int map_state; /* IsUnmapped, IsUnviewable, IsViewable */
public long all_event_masks; /* set of events all people have interest in*/
public long your_event_mask; /* my event mask */
public long do_not_propagate_mask; /* set of events that should not propagate */
public bool override_redirect; /* boolean value for override-redirect */
- // public Screen screen; /* back pointer to correct screen */
+ public Screen screen; /* back pointer to correct screen */
}
[CCode (cname = "CopyFromParent")]