[Lazarus] gtk2 and windows z order

2010-03-31 Thread Martin
I recently saw some StayOntop fixes for GTK2. But does anyone know about the issue, that modal dialogs show *below* all other windows? That applies for the code-completion-drop-down-window too. It happens for me, running gtk2 on Windows (Vista) using the gtk libraries that came with gimp.

Re: [Lazarus] gtk2 and windows z order

2010-03-31 Thread Duncan Parsons
How to fix it, I don't know; but it was an issue that first arrived with W2K (NT and W9x were fine). I can't remember how I resolved it with Delphi; but clearly the GTK authors have the same issue with their underlying abstractions. Tbh tho', it's not something I've noticed with GIMP on XP; but th

Re: [Lazarus] gtk2 and windows z order

2010-03-31 Thread zeljko
On Wednesday 31 March 2010 14:12, Martin wrote: > I recently saw some StayOntop fixes for GTK2. > > But does anyone know about the issue, that modal dialogs show *below* > all other windows? That applies for the code-completion-drop-down-window > too. > > It happens for me, running gtk2 on Windows

[Lazarus] unit Dialogs and showmessage

2010-03-31 Thread Bernd
http://lazarus-ccr.sourceforge.net/docs/lcl/dialogs/showmessage.html Source position: dialogs.pp line 510 procedure ShowMessage( const aMsg: String ); there is also an example program: Program LazMessage; Uses Dialogs; begin ShowMessage ('This is a message from Lazarus') end. This does

[Lazarus] bug report 12594

2010-03-31 Thread ABorka
Sorry, it was posted in the wrong mailing list at first It seems it got closed, but I'm not sure if it is really fixed (can't add notes now). http://bugs.freepascal.org/view.php?id=12594 In D5 the DFM files are something like this with bitbuttons: . . . object BitBtn1: TBitBtn Left = 96 Top = 5

Re: [Lazarus] gtk2 and windows z order

2010-03-31 Thread Flávio Etrusco
On Wed, Mar 31, 2010 at 1:58 PM, zeljko wrote: > On Wednesday 31 March 2010 14:12, Martin wrote: >> I recently saw some StayOntop fixes for GTK2. >> >> But does anyone know about the issue, that modal dialogs show *below* >> all other windows? That applies for the code-completion-drop-down-window

Re: [Lazarus] unit Dialogs and showmessage

2010-03-31 Thread Juha Manninen
> Source position: dialogs.pp line 510 > > procedure ShowMessage( > const aMsg: String > ); > > there is also an example program: > > Program LazMessage; > Uses Dialogs; > begin >ShowMessage ('This is a message from Lazarus') > end. > > This does not compile: project1.lpr(4,16) Error:

Re: [Lazarus] unit Dialogs and showmessage

2010-03-31 Thread Andreas Schneider
Am Mittwoch 31 März 2010 19:06:29 schrieb Bernd: > http://lazarus-ccr.sourceforge.net/docs/lcl/dialogs/showmessage.html > > Source position: dialogs.pp line 510 > > procedure ShowMessage( > const aMsg: String > ); > > there is also an example program: > > Program LazMessage; > Uses Dialogs;

Re: [Lazarus] unit Dialogs and showmessage

2010-03-31 Thread Mattias Gaertner
On Wed, 31 Mar 2010 19:06:29 +0200 Bernd wrote: > http://lazarus-ccr.sourceforge.net/docs/lcl/dialogs/showmessage.html > > Source position: dialogs.pp line 510 > > procedure ShowMessage( > const aMsg: String > ); > > there is also an example program: > > Program LazMessage; > Uses Dialogs;