Re: [Vala] Accessing "base" property of Gtk.Style

2008-09-16 Thread Alessandro Pellizzari
Il giorno lun, 15/09/2008 alle 19.50 +0200, Federico Pelloni ha scritto: > P.s.: do multiline strings (as in Python) exist in Vala? Yes, on recent versions. The syntax is the same: """string""" Bye. -- Alessandro Pellizzari ___ Vala-list mailing l

Re: [Vala] Accessing "base" property of Gtk.Style

2008-09-16 Thread Clément DAVID
just more informations from http://live.gnome.org/Vala/Tutorial §"Control structures" "Prefixing symbols with @ let you using reserved keywords. This is mainly useful for bindings. You can use an argument @foreach for example." 2008/9/16, Clément DAVID <[EMAIL PROTECTED]>: > > Hi, > > if you loo

Re: [Vala] Accessing "base" property of Gtk.Style

2008-09-16 Thread Clément DAVID
Hi, if you look at the corresponding vapi file, you can see that the 'base' attribute has been renamed to '@base' in order to prevent this error *. * It's just a quick answer I haven't test this. 2008/9/15, Federico Pelloni <[EMAIL PROTECTED]>: > Hello everyone! > > I just started learning Vala

[Vala] Accessing "base" property of Gtk.Style

2008-09-15 Thread Federico Pelloni
Hello everyone! I just started learning Vala, trying to write a small utility with Gtk. I'm trying to set the background color of a Gtk.EventBox, to the default "base" color as specified by the choosen gtk theme, reading it from the window's style. I'm doing this: Gtk.EventBox container = new Gt