Re: [Vala] Referencing GLib.List elements..

2012-09-13 Thread Shawn Ferris
On Thu, Sep 13, 2012 at 2:54 PM, Shawn Ferris wrote: > The only reason I'm using a List is because I will be loading multiple > different tables, with varying number of columns. If there's a better > way to do this, I'm open to suggestions. Using bind variables are a > must though. (gotta keep it

[Vala] Referencing GLib.List elements..

2012-09-13 Thread Shawn Ferris
Hey All -- I know this is going to be a stupid answer, but for the life of me, I can't figure out what I need to do. I'm basically trying to copy data, in JSON format, into a Sqlite table. The insert itself is working as I get a row with all null values for every row I'm pulling out of JSON. I'm pr

[Vala] Keyboard input, e.keyval and accel_groups

2012-09-13 Thread David Gomes
Hello there, I'm working on Pantheon Terminal (lp:pantheon-terminal), and I'm running into a rather odd Vala issue. I want to implement Ctrl-+ and Ctrl-- for zooming in and out of the terminal. this.key_press_event.connect ((e) => { switch (e.keyval) {