[Vala] vala IDE on OSX

2011-08-21 Thread Serge Hulne
I haven't managed to make a single graphical IDE for Vala work under Mac OS X. - Under Linux, I use a deprecated (*) version of vtg and valencia (two plugins for gedit) - Under Mac, I use vim + Vala plugin for Vim. The Vim plugin is fine, but it does not provide auto-completion (for methods, whic

[Vala] Vala 0.13.1 for Windows: How is the Vala documentation generated ?

2011-08-21 Thread Serge Hulne
Hi, I see that Carl has managed to make valadoc work under Windows. ( There seems to be a minor glitch, though : At the highest level of the tree of the HTML pages, the links to lower levels uses a backslash instead of a slah Example : file:///Users/serge2/Downloads/vala-doc/glib-2.0\index.htm )

[Vala] Vala 0.13.1 for Windows

2011-08-21 Thread Carl
Hello guys, Time to show old windows some love. I built the complete windows installer for vala 0.13.1. I fixed issues, added gen-introspect, libraries, samples, release notes. Feel free to play with it and let me know what you think. All the details here : http://my-name-is-carl.posterous.com/v

Re: [Vala] Allowable to add user data to callback?

2011-08-21 Thread bsquared
On Sun, Aug 21, 2011 at 1:02 AM, Luca Bruno wrote: > > Something like the_method (() => { pa_state_cb (ctx, pa_ready); }); > > -- > http://www.debian.org - The Universal Operating System > Thank you. That works with some minor changes, but I don't understand why. Can anyone point me to an artic

[Vala] vala IDE on OSX

2011-08-21 Thread Jonathan Shore
Hi, I am new to Vala and looking for an IDE to use on OSX. My preference would be to use MonoDevelop, but note that the 2.4.x and 2.6 beta's do not include the Vala plugin. I am wondering whether : a. what other mac users would recommend as an IDE for vala b. is there a compilation of MonoDev

[Vala] Valadoc for vala 0.13.1

2011-08-21 Thread Carl
Hello guys, I built the documentation for vala 0.13.1. If you're interested in downloading the zip file and getting all the details, just go at http://my-name-is-carl.posterous.com/valadoc-for-vala-0131 Cheers, Carl. ___ vala-list mailing list vala-lis

Re: [Vala] Allowable to add user data to callback?

2011-08-21 Thread Luca Bruno
On Sat, Aug 20, 2011 at 04:25:17PM -0700, bsquared wrote: > void pa_state_cb(pa_context *c, void *userdata) { > pa_context_state_t state; > int *pa_ready = userdata; > > state = pa_context_get_state(c); > switch (state) { > // There are just here for referenc