Re: [Gambas-user] Cairo

2013-12-18 Thread Jussi Lahtinen
Example drawingarea1.refresh() will trigger the event. And thus, all things that trigger refresh. But if the drawingarea is cached, then draw instructions doesn't have to be inside of event handler. Jussi On Wed, Dec 18, 2013 at 6:16 PM, Pino Zollo wrote: > > El 18/12/13 11:05, gambas-user-req

[Gambas-user] Cairo

2013-12-18 Thread Pino Zollo
El 18/12/13 11:05, gambas-user-requ...@lists.sourceforge.net escribió: > The code from draw.begin: > > Draw.Begin(DrawingArea1) > Rap = Draw.w / 3 > DH = Draw.H > > ' [GB2:BCOL] DrawingArea1.BackColor = Color.White ' OK works > DrawingArea1.Background = Color.White > > ... > > So,

Re: [Gambas-user] What is Glyphenstauchung?

2013-12-18 Thread Rolf-Werner Eilert
Sorry, wrong mailing list :-( Am 18.12.2013 15:27, schrieb Rolf-Werner Eilert: > In the style managing dialog, I find Glyphenstauchung (sorry, don't know > what it is in English locale) and some values the meaning of which isn't > clear to me. On the font tab, I find Horizontal Scaling - this seem

[Gambas-user] What is Glyphenstauchung?

2013-12-18 Thread Rolf-Werner Eilert
In the style managing dialog, I find Glyphenstauchung (sorry, don't know what it is in English locale) and some values the meaning of which isn't clear to me. On the font tab, I find Horizontal Scaling - this seems to be a different thing though. Can somebody here explain me what that is - or p

Re: [Gambas-user] Project line counts

2013-12-18 Thread Jussi Lahtinen
There is way to do this in terminal. Run this in your project folder: find . -name '*.class' -o -name '*.module' | xargs wc -l Jussi On Wed, Dec 18, 2013 at 6:18 AM, Bruce wrote: > On Wed, 2013-12-18 at 03:54 +0100, Benoît Minisini wrote: > > Le 18/12/2013 03:35, Bruce a écrit : > > > Wasn't t

Re: [Gambas-user] Cairo

2013-12-18 Thread Jussi Lahtinen
The code from draw.begin: Draw.Begin(DrawingArea1) Rap = Draw.w / 3 DH = Draw.H ' [GB2:BCOL] DrawingArea1.BackColor = Color.White ' OK works DrawingArea1.Background = Color.White ... So, yes, it is between draw.begin and draw.end. But this is not clear if you read the documentation.