Re: [Vala] X11 and pointers help

2012-02-25 Thread Reid Thompson
On Fri, 2012-01-13 at 17:20 +, Andrew Higginson wrote: > void* list; uint* list; https://mail.gnome.org/archives/commits-list/2011-July/msg10793.html ___ vala-list mailing list vala-list@gnome.org http://mail.gnome.org/mailman/listinfo/val

Re: [Vala] X11 and pointers help

2012-01-13 Thread Andrea Del Signore
Hi, On Fri, 2012-01-13 at 17:20 +, Andrew Higginson wrote: > Hi, > > I am trying to get a list of the open windows using > _NET_CLIENT_LIST_STACKING (it is important I use this as I need it in > the order of stacking) as seen here > http://standards.freedesktop.org/wm-spec/wm-spec-1.3.html#id

Re: [Vala] X11 and pointers help

2012-01-13 Thread Andrew Higginson
On 13 January 2012 18:07, Axel FILMORE wrote: > You can do this using Gdk I think : > http://valadoc.org/gdk-3.0/Gdk.Screen.get_window_stack.html > > That doesn't explain the compilation error however. > > Regards. > > Many thanks, I think I shall just use that instead :) -- Andrew Higginson

Re: [Vala] X11 and pointers help

2012-01-13 Thread Axel FILMORE
You can do this using Gdk I think : http://valadoc.org/gdk-3.0/Gdk.Screen.get_window_stack.html That doesn't explain the compilation error however. Regards. On 13/01/2012 18:58, Andrew Higginson wrote: On 13/01/12 17:20, Andrew Higginson wrote: Hi, I am trying to get a list of the open win

Re: [Vala] X11 and pointers help

2012-01-13 Thread Andrew Higginson
On 13/01/12 17:20, Andrew Higginson wrote: > Hi, > > I am trying to get a list of the open windows using > _NET_CLIENT_LIST_STACKING (it is important I use this as I need it in > the order of stacking) as seen here > http://standards.freedesktop.org/wm-spec/wm-spec-1.3.html#id2449346 > > To do th

[Vala] X11 and pointers help

2012-01-13 Thread Andrew Higginson
Hi, I am trying to get a list of the open windows using _NET_CLIENT_LIST_STACKING (it is important I use this as I need it in the order of stacking) as seen here http://standards.freedesktop.org/wm-spec/wm-spec-1.3.html#id2449346 To do this I am using the Xlib bindings for vala with the following