Re: [lazarus] Lazarus components and wiki problems

2007-02-04 Thread Vincent Snijders
xpete schreef: I've fixed the problem but is better to update mediawiki... An update is not free, it costs time. On Sun, 4 Feb 2007 03:51:49 + xpete [EMAIL PROTECTED] wrote: Hi i have created this article: http://wiki.lazarus.freepascal.org/Lazarus_Components Nice page you have

[lazarus] TexOut incompability

2007-02-04 Thread Павел Ишенин
Hello. I found one incompability with TCanvas.TextOut method: 1) In Delphi TCanvas.TextOut calls Windows.ExtTextOut wich fills bachground with brush 2) In Lazarus TCanas.TextOut use fpc canvas class to draw text and it works without filling text area with brush. The problem is that I dont

RE: [lazarus] Carbon Canvas implementation dilemma

2007-02-04 Thread Pieter Valentijn
Is there is no scanline function in the bitmap object of Lazarus. Is there no way we can get access to the raw data? Met vriendelijke groet, Pieter Valentijn Delphidreams http://www.delphidreams.nl -Oorspronkelijk bericht- Van: Mattias Gaertner [mailto:[EMAIL PROTECTED] Verzonden:

Re: [lazarus] Carbon Canvas implementation dilemma

2007-02-04 Thread Marco van de Voort
On Sun, Feb 04, 2007 at 02:55:58PM +0100, Mattias Gaertner wrote: point coordinates. As I understand some of the canvas methods require pixel access. Yes, and they are slow on all platforms, so no time critical application use them. Isn't getimagepointer a canvas method? That wouldn't

[lazarus] Problem While installing component

2007-02-04 Thread Luis Rodrigues
Hi, I'm trying to install a Delphi ported component on Lazarus but i keep getting: D:\lazarus\ide\lazarus.pp(117,1) warning: Object PRDRVSTR.or not found, Linking may fail ! d:\lazarus\fpc\2.0.4\bin\i386-win32\ld.exe: cannont find PRDRVSTR.or d:\lazarus\ide\lazarus.pp(117,1) Error: Error while

Re: [lazarus] Problem While installing component

2007-02-04 Thread Vincent Snijders
Luis Rodrigues schreef: Hi, I'm trying to install a Delphi ported component on Lazarus but i keep getting: D:\lazarus\ide\lazarus.pp(117,1) warning: Object PRDRVSTR.or not found, Linking may fail ! d:\lazarus\fpc\2.0.4\bin\i386-win32\ld.exe: cannont find PRDRVSTR.or

Re: [lazarus] Carbon Canvas implementation dilemma

2007-02-04 Thread Mattias Gaertner
On Sun, 4 Feb 2007 22:23:33 +0100 Marco van de Voort [EMAIL PROTECTED] wrote: On Sun, Feb 04, 2007 at 02:55:58PM +0100, Mattias Gaertner wrote: point coordinates. As I understand some of the canvas methods require pixel access. Yes, and they are slow on all platforms, so no time

[lazarus] TBitmap.ScanLine

2007-02-04 Thread Mattias Gaertner
I started a new thread, because this has nothing to do with the decision QuickDraw or Quartz. On Sun, 4 Feb 2007 21:21:15 +0100 Pieter Valentijn [EMAIL PROTECTED] wrote: Is there is no scanline function in the bitmap object of Lazarus. No. At the moment you have to use a TLazIntfImage. See

Re: [lazarus] TexOut incompability

2007-02-04 Thread Luiz Americo
Павел Ишенин escreveu: Hello. I found one incompability with TCanvas.TextOut method: 1) In Delphi TCanvas.TextOut calls Windows.ExtTextOut wich fills bachground with brush 2) In Lazarus TCanas.TextOut use fpc canvas class to draw text and it works without filling text area with brush. Use

Re: [lazarus] TBitmap.ScanLine

2007-02-04 Thread Luiz Americo
Mattias Gaertner escreveu: I started a new thread, because this has nothing to do with the decision QuickDraw or Quartz. On Sun, 4 Feb 2007 21:21:15 +0100 Pieter Valentijn [EMAIL PROTECTED] wrote: Is there is no scanline function in the bitmap object of Lazarus. No. At the moment

Re: [lazarus] TexOut incompability

2007-02-04 Thread Павел Ишенин
Hello. I found one incompability with TCanvas.TextOut method: 1) In Delphi TCanvas.TextOut calls Windows.ExtTextOut wich fills bachground with brush 2) In Lazarus TCanas.TextOut use fpc canvas class to draw text and it works without filling text area with brush. Use LCLIntf.TextOut Luiz