Re: elastic tabstops implemented for GTK

2007-09-19 Thread Nick Gravgaard
Hi Alex, everyone On 29/08/2007, Alex Jones [EMAIL PROTECTED] wrote: Hi again, Nick On Fri, 2007-07-13 at 10:46 +0200, Nick Gravgaard wrote: Thanks Alex, The proportional font stuff is really just a nice side effect - this idea has all sorts of nice implications. Off the top of my

Re: elastic tabstops implemented for GTK

2007-09-19 Thread Alex Jones
On Wed, 2007-09-19 at 08:14 +0200, Nick Gravgaard wrote: I thought I'd drop you a mail to tell you that I've turned the gedit patch into a proper plugin and made the following fixes: * Other chars than just \n can now terminate paragraphs * Italic and bold characters are now handled

Abstract string properties with getter/setter functions

2007-09-19 Thread Raffaele Sandrini
Hi there, While implementing abstract properties in Vala we encountered a problem regarding string properties with getter and setter functions: public interface Test.MyIface { public abstract string text { get; } } A getter function of an abstract string property looks like: char*

Re: elastic tabstops implemented for GTK

2007-09-19 Thread Nick Gravgaard
On 19/09/2007, Alex Jones [EMAIL PROTECTED] wrote: On Wed, 2007-09-19 at 08:14 +0200, Nick Gravgaard wrote: I thought I'd drop you a mail to tell you that I've turned the gedit patch into a proper plugin and made the following fixes: * Other chars than just \n can now terminate paragraphs

Re: Abstract string properties with getter/setter functions

2007-09-19 Thread Michael Lawrence
On 9/19/07, Raffaele Sandrini [EMAIL PROTECTED] wrote: Ok i see there is need to clarify things. On Wed, 2007-09-19 at 17:53 +0200, Tim Janik wrote: On Wed, 19 Sep 2007, Raffaele Sandrini wrote: Hi there, While implementing abstract properties in Vala we encountered a problem

Re: Abstract string properties with getter/setter functions

2007-09-19 Thread Yeti
On Wed, Sep 19, 2007 at 06:48:25PM +0200, Raffaele Sandrini wrote: Since we do not see a way around this (yet) and we could not find an example with strings in another project. I'm asking here if there is a nice way around this. i'm really not sure i understand your problem here...