Re: [Lazarus] Mac OS X : Cross compiling from i386 - PowerPC

2008-06-27 Thread Adriaan van Os
Dominique Louis wrote: How does one get the Spotlight tool to search all directories. For all of it's usability, I could not get spotlight to do this. The user interface to do this is quite bad. First enter something in a Search box. Then click on the Plus button in the results window. Then

Re: [Lazarus] Java's Document Elements model

2008-06-27 Thread Graeme Geldenhuys
On 27/06/2008, Mattias Gaertner [EMAIL PROTECTED] wrote: 1Mb = 1 mega byte? That's not very impressive. I meant 1 mega byte into a TEdit. It's actually amazing howmany toolkits can't handle that. Please try something like fpc/packages/univint/src/MacOSAll.pas. Jump to the end of the

Re: [Lazarus] Publishing a Lazarus project - including the binary file

2008-06-27 Thread Csányi Pál
Mattias Gaertner [EMAIL PROTECTED] writes: On Thu, 26 Jun 2008 22:21:49 +0200 [EMAIL PROTECTED] (Csányi Pál) wrote: Now I want to include the binary file too in to the published project.tar.bz2 but I can't to get it, however I leave blank the box before Files / Ignore binaries. Maybe

Re: [Lazarus] Java's Document Elements model

2008-06-27 Thread Graeme Geldenhuys
On 27/06/2008, Mattias Gaertner [EMAIL PROTECTED] wrote: Please try something like fpc/packages/univint/src/MacOSAll.pas. Jump to the end of the file and see what happens to the highlighting and your CPU. This brings up another point. The thumb button size in scrollbars. Why the hell must

Re: [Lazarus] Unmoveable forms?

2008-06-27 Thread Luca Olivetti
En/na Kostas Michalopoulos ha escrit: Thats a hack, but it will probably work: 1. Save the size/position in a TRect when onShow event occurs 2. Put a timer that periodically (say, every 50ms or so) checks if the size or position changed and restore it if so Already tried it (used

Re: [Lazarus] Dragging a window freezes threads using synchronize [was Unmoveable forms?]

2008-06-27 Thread Luca Olivetti
En/na Graeme Geldenhuys ha escrit: This is *really* bad, since a user could inadvertently stop the background threads. I could try some workaround (i.e not using synchronize but set some variables in the main form and use a timer to update the visual compnents) but it's ugly and error-prone.

Re: [Lazarus] Java's Document Elements model

2008-06-27 Thread Mattias Gärtner
Zitat von Graeme Geldenhuys [EMAIL PROTECTED]: On 27/06/2008, Mattias Gaertner [EMAIL PROTECTED] wrote: Please try something like fpc/packages/univint/src/MacOSAll.pas. Jump to the end of the file and see what happens to the highlighting and your CPU. This brings up another point. The

Re: [Lazarus] Publishing a Lazarus project - including the binary file

2008-06-27 Thread Mattias Gärtner
Zitat von Csányi Pál [EMAIL PROTECTED]: Mattias Gaertner [EMAIL PROTECTED] writes: On Thu, 26 Jun 2008 22:21:49 +0200 [EMAIL PROTECTED] (Csányi Pál) wrote: Now I want to include the binary file too in to the published project.tar.bz2 but I can't to get it, however I leave

[Lazarus] graphic changes / mouse pointers on windows

2008-06-27 Thread Martin Friebe
I noted that the most recent version from SVN, has a new? set of Mouse pointers? And I guess they are *not* new by intention. Unfortunately I couldn't get a screenshoot, as the default windows scree-grabber, doesn't take pictures of the mouse... (Suggestions/Instructions welcome) a few

Re: [Lazarus] Dragging a window freezes threads using synchronize [was Unmoveable forms?]

2008-06-27 Thread Luca Olivetti
En/na Luca Olivetti ha escrit: En/na Graeme Geldenhuys ha escrit: This is *really* bad, since a user could inadvertently stop the background threads. I could try some workaround (i.e not using synchronize but set some variables in the main form and use a timer to update the visual

Re: [Lazarus] Dragging a window freezes threads using synchronize [was Unmoveable forms?]

2008-06-27 Thread Luca Olivetti
En/na Luca Olivetti ha escrit: En/na Graeme Geldenhuys ha escrit: This is *really* bad, since a user could inadvertently stop the background threads. I could try some workaround (i.e not using synchronize but set some variables in the main form and use a timer to update the visual

Re: [Lazarus] Cannot rebuild IDE

2008-06-27 Thread Mattias Gärtner
Zitat von Dave Coventry [EMAIL PROTECTED]: In an attempt to get my Postgres database app running I have tried to install the SQL db components as follows: I've gone into Components-Installed Packages. I have selected SQLDBLaz 1.0 and Selected 'Install Selection'. Then, when I click 'Save

Re: [Lazarus] Publishing a Lazarus project - including the binary file

2008-06-27 Thread Csányi Pál
Mattias Gärtner [EMAIL PROTECTED] writes: Zitat von Csányi Pál [EMAIL PROTECTED]: Mattias Gaertner [EMAIL PROTECTED] writes: On Thu, 26 Jun 2008 22:21:49 +0200 [EMAIL PROTECTED] (Csányi Pál) wrote: Now I want to include the binary file too in to the published

Re: [Lazarus] Dragging a window freezes threads using synchronize [was Unmoveable forms?]

2008-06-27 Thread Graeme Geldenhuys
On 27/06/2008, Luca Olivetti [EMAIL PROTECTED] wrote: Do you see any adverse effect of this workaround? I mean, I think the timer fires in the context of the main thread (otherwise checksynchronize would raise an exception) but outside the main application loop. I can't see any issue with

Re: [Lazarus] Unmoveable forms?

2008-06-27 Thread Felipe Monteiro de Carvalho
Just use the same code you were using in Delphi. It will work in Windows only. What you wish is impossible to implement anywhere else. The best solution would be doing like I said in the first time: Make a borderless window and draw your own title and border if you really need them. -- Felipe

Re: [Lazarus] graphic changes / mouse pointers on windows

2008-06-27 Thread Paul Ishenin
Martin Friebe wrote: I noted that the most recent version from SVN, has a new? set of Mouse pointers? And I guess they are *not* new by intention. Unfortunately I couldn't get a screenshoot, as the default windows scree-grabber, doesn't take pictures of the mouse...

Re: [Lazarus] graphic changes / mouse pointers on windows

2008-06-27 Thread Martin Friebe
No I am talking windows Vista 32bit home edition. I do need to check (when I am home in the evening), if it is related to my global windows theme setting (as I disabled AERO ). Just tested: -Using this night Snapshot (FPC 2.2.0) on XP SP2 = all looks fine -Using SVN trunc (1 or 2 days old by

Re: [Lazarus] Unmoveable forms?

2008-06-27 Thread Luca Olivetti
En/na Felipe Monteiro de Carvalho ha escrit: Just use the same code you were using in Delphi. It will work in Windows only. No, the same code doesn't work, I don't receive the messages, probably the LCL isn't forwarding them. I tried both with WM_NCHITTEST and LM_NCHITTEST. What I got mostly

Re: [Lazarus] Publishing a Lazarus project - including the binary file

2008-06-27 Thread Csányi Pál
Mattias Gärtner [EMAIL PROTECTED] writes: 'Use Include Filter': * Use Include Filter * Simple Syntax .(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml|txt|po) This mask does not fit for lptinterface1. One solution: append: ,lptinterface1

Re: [Lazarus] Java's Document Elements model

2008-06-27 Thread Mattias Gaertner
On Fri, 27 Jun 2008 09:09:31 +0200 Graeme Geldenhuys [EMAIL PROTECTED] wrote: [...] Please try something like fpc/packages/univint/src/MacOSAll.pas. Jump to the end of the file and see what happens to the highlighting and your CPU. That is impressive. SynEdit handles a 10.2Mb file

Re: [Lazarus] Lazreport, last version from svn (revision 15566) don't complile

2008-06-27 Thread Jesus Reyes
--- El mié 25-jun-08, Eduardo Lopez [EMAIL PROTECTED] escribió: De:: Eduardo Lopez [EMAIL PROTECTED] Asunto: Re: [Lazarus] Lazreport, last version from svn (revision 15566) don't complile A: General mailing list lazarus@lazarus.freepascal.org Fecha: miércoles, 25 junio, 2008, 7:25 pm

Re: [Lazarus] Lazreport, last version from svn (revision 15566) don't complile

2008-06-27 Thread Eduardo Lopez
Thanks!!! It's working fine again... :-) Eduardo. - Mensaje original De: Jesus Reyes [EMAIL PROTECTED] Para: General mailing list lazarus@lazarus.freepascal.org Enviado: viernes 27 de junio de 2008, 15:36:39 Asunto: Re: [Lazarus] Lazreport, last version from svn (revision 15566) don't

[Lazarus] procedure TMainIDE.DoRestart; and parameters

2008-06-27 Thread ik
Hello, I tried to use lazarus under Xnext, and when I recompiled Lazarus (to install a component), I found out that the --display parameter never passed. So after a search, I found the TMainIDE.DoRestart; procedure, and it passes only hard-coded parameters and not all the parameters passed to

Re: [Lazarus] Unmoveable forms?

2008-06-27 Thread Luca Olivetti
En/na Felipe Monteiro de Carvalho ha escrit: Just use the same code you were using in Delphi. It will work in Windows only. What you wish is impossible to implement anywhere else. BTW, the window manager I'm currently using (the default one under kde, I think it's kwin) has a bunch of

Re: [Lazarus] Java's Document Elements model

2008-06-27 Thread Marc Santhoff
Am Freitag, den 27.06.2008, 09:09 +0200 schrieb Graeme Geldenhuys: On 27/06/2008, Mattias Gaertner [EMAIL PROTECTED] wrote: Please try something like fpc/packages/univint/src/MacOSAll.pas. Jump to the end of the file and see what happens to the highlighting and your CPU. That is

[Lazarus] Mac OS X : Latest Lazarus Revision : 15598 Does not work :(

2008-06-27 Thread Dominique Louis
When using the Carbon IDE which was just compiled from SVN source revision 15598, it is impossible to change projects as you get a Range check error. Similarly, Projects built using the latest Lazaurs code base cannot load Glyph data. For example the error I get is... Error reading