[Vala] Question about valadoc (Newbie question)

2011-06-01 Thread Serge Hulne
Hi there, I just installed vala, valac and valadoc. I tried to use valadoc to generate the documentation from the vala classes which make up the code of vala (the one which come with the compiler). What exact options (apart from the path to the directory containing the core vala sources) should

[Vala] [ANNOUNCE] Vala 0.12.1 - Compiler for the GObject type system

2011-06-01 Thread Jürg Billeter
We are pleased to announce version 0.12.1 of Vala, a compiler for the GObject type system. Vala 0.12.1 is now available for download at: http://download.gnome.org/sources/vala/0.12/ Changes since 0.12.0 * Many bug fixes and binding updates. Vala is a new programming language that aims to

[Vala] An array of Delegations?

2011-06-01 Thread Joseph Montanez
I know this is a bit insane, but is there any plan or maybe even a work around to having working list of delegations? I tried with both gee and fixed arrays for delegations but I get the error of: Delegates with target are not supported as array element type Right now my only work around is have

Re: [Vala] An array of Delegations?

2011-06-01 Thread Aleksander Wabik
But keep in mind that glib signals are not good if you care about performance. best regards, I know it's not exactly what you want, but you can use signals to obtain something similar. Since signals can contain parameters and return values, they function more or less like delegates when