Re: [Lazarus] LazReport troubles

2010-12-08 Thread Jesus Reyes
--- El mar 7-dic-10, Alexander du Plessis alexdup.m...@gmail.com escribió: De: Alexander du Plessis alexdup.m...@gmail.com Asunto: [Lazarus] LazReport troubles A: Lazarus Mailing list lazarus@lists.lazarus.freepascal.org Fecha: martes, 7 de diciembre de 2010, 23:53 I recently upgraded my

[Lazarus] Control embedded in statusbar strange resizing behaviour

2010-12-08 Thread Birger Jansen
Hi all, I encounter a strange behaviour with controls that are placed inside a statusbar. Take the following steps to reproduce: - create a new application with a form - add a statusbar - add a progressbar - add this to the OnCreate event of the form: procedure

Re: [Lazarus] Control embedded in statusbar strange resizing behaviour

2010-12-08 Thread Birger Jansen
Maybe. See also http://bugs.freepascal.org/view.php?id=15675 Vincent It could be related. The solution that is proposed in that report only makes it worse: the progressbar is not visible at all after adding ProgressBar1.Anchors := [];. Birger --

[Lazarus] [SOLVED] make[4]: i386-win32-as: (command not found)

2010-12-08 Thread Osvaldo Filho
Solved: ln -s i586-mingw32msvc-as i386-win32-as 2010/12/7 Henry Vermaak henry.verm...@gmail.com On 7 December 2010 20:16, Henry Vermaak henry.verm...@gmail.com wrote: 2010/12/7 Osvaldo Filho arquivos...@gmail.com: My system: = desktop:~$ dpkg -l *binutil*

Re: [Lazarus] GTK2 paint event

2010-12-08 Thread José Mejuto
Hello José, Wednesday, December 8, 2010, 6:32:39 PM, you wrote: JM The gecko browser is using a GTK Window which is a TCustomControl, JM once put in the form and started it does nothing unless the mouse is JM moved over the form (not need to move over the control), so it looks JM like a non

Re: [Lazarus] GTK2 paint event

2010-12-08 Thread José Mejuto
Hello José, Wednesday, December 8, 2010, 6:47:09 PM, you wrote: JM So for me it looks like the message filter in GTK2 is not being fired JM with external paints. JM Now a second problem with maybe same roots, once the control is JM painted thanks to the Application.ProcessMessages every 100 ms

Re: [Lazarus] GTK2 paint event

2010-12-08 Thread José Mejuto
Hello Henry, Wednesday, December 8, 2010, 7:05:44 PM, you wrote: HV On 8 December 2010 17:32, José Mejuto joshy...@gmail.com wrote: The gecko browser is using a GTK Window which is a TCustomControl, once put in the form and started it does nothing unless the mouse is moved over the form (not

Re: [Lazarus] GTK2 font size smaller

2010-12-08 Thread cobines
2010/12/8 zeljko zel...@holobit.net: Have you tried gtk2 Font.Height vs qt Font.Height or Font.Size ? I have used Font.Size. With Font.Height the font has the same size on LCLQT and LCLGTK2 but it is smaller than in other applications. Please try r28646, there was problem with font

[Lazarus] Sugestion

2010-12-08 Thread Guionardo Furlan
Why not publish the Function GetSpecialDir(ID : Integer) : String; of the sysutils unit in the interface section? -- Timeo hominem unius libri Cogito ergo sum - Carpe diem []s Guionardo Furlan http://guionardo.blogspot.com http://www.guionardofurlan.com.br --

Re: [Lazarus] Sugestion

2010-12-08 Thread Marco van de Voort
In our previous episode, Guionardo Furlan said: Why not publish the Function GetSpecialDir(ID : Integer) : String; of the sysutils unit in the interface section? It's only in the windows version, and the sysutils unit is portable? -- ___ Lazarus

Re: [Lazarus] GTK2 paint event

2010-12-08 Thread zeljko
On Wednesday 08 December 2010 18:47, José Mejuto wrote: Hello José, Wednesday, December 8, 2010, 6:32:39 PM, you wrote: JM The gecko browser is using a GTK Window which is a TCustomControl, JM once put in the form and started it does nothing unless the mouse is JM moved over the form (not

Re: [Lazarus] Sugestion

2010-12-08 Thread Michael Van Canneyt
On Wed, 8 Dec 2010, Guionardo Furlan wrote: Why not publish the Function GetSpecialDir(ID : Integer) : String; of the sysutils unit in the interface section? Because it is not cross-platform, it is windows only. The SysUtils interface must be cross-platform. Michael. --