Re: [fpc-pascal] FP Vector graphics library

2009-07-17 Thread Marco van de Voort
In our previous episode, Felipe Monteiro de Carvalho said: > > - There are writeln's in several places. This will break Windows GUI (Darwin > > ?too?) programs, and look sloppy on other systems. > > I isolated them in ifdefs > I removed the lazarus files, they aren't needed at all. > > Another th

Re: [fpc-pascal] FP Vector graphics library

2009-07-17 Thread Felipe Monteiro de Carvalho
On Fri, Jul 17, 2009 at 11:54 AM, Marco van de Voort wrote: > - There are writeln's in several places. This will break Windows GUI (Darwin >  too?) programs, and look sloppy on other systems. I isolated them in ifdefs > - There are lazarus packages there. It should go to Lazarus I think, since >

Re: [fpc-pascal] FP Vector graphics library

2009-07-17 Thread Jonas Maebe
On 17 Jul 2009, at 16:54, Marco van de Voort wrote: - There are writeln's in several places. This will break Windows GUI (Darwin too?) On Mac OS X writeln's from GUI apps simply go into the system and console logs (or to the console itself, if you start a gui app from the command line

Re: [fpc-pascal] FP Vector graphics library

2009-07-17 Thread Marco van de Voort
In our previous episode, Felipe Monteiro de Carvalho said: > I added fpvectorial under packages/fpvectorial and started a page for > it on the wiki > > I still didn't make makefiles because they really confuse me ... - There are writeln's in several places. This will break Windows GUI (Darwin t

Re: [fpc-pascal] FP Vector graphics library

2009-07-17 Thread Jonas Maebe
On 17 Jul 2009, at 16:37, Felipe Monteiro de Carvalho wrote: I still didn't make makefiles because they really confuse me ... You don't have to write a makefile, only a makefile.fpc, and those are dead simple. Just copy paszlib/Makefile.fpc and change the name, required packages (if any,

Re: [fpc-pascal] FP Vector graphics library

2009-07-17 Thread Marco van de Voort
In our previous episode, Felipe Monteiro de Carvalho said: > > I added fpvectorial under packages/fpvectorial and started a page for > it on the wiki > > I still didn't make makefiles because they really confuse me ... I'll have a look. ___ fpc-pascal

Re: [fpc-pascal] FP Vector graphics library

2009-07-17 Thread Graeme Geldenhuys
Felipe Monteiro de Carvalho wrote: I still didn't make makefiles because they really confuse me ... Isn't it time to switch to the new build system any way? 'fpmake.pas' style? Just curious, when is the switchover going to happen? From Makefiles to fpmake.pas style? Regards, - Graeme

Re: [fpc-pascal] FP Vector graphics library

2009-07-17 Thread Felipe Monteiro de Carvalho
Hello, I added fpvectorial under packages/fpvectorial and started a page for it on the wiki I still didn't make makefiles because they really confuse me ... bye, -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.or

Re: [fpc-pascal] FP Vector graphics library

2009-05-30 Thread Felipe Monteiro de Carvalho
Better ignore this file, my latest fpvectorial works with the concept of paths which support mixing lines and bezier curves in the same path. -- Felipe Monteiro de Carvalho ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepas

Re: [fpc-pascal] FP Vector graphics library

2009-05-27 Thread Felipe Monteiro de Carvalho
Ok, so here is the file as it is at the moment for review so that we can stablish a stable API (and I would like it really stable after that). Take into consideration that it's work in progress. The place that I see that could be discussed is: function GetPolyline(ANum: Cardinal): PPolyline

Re: [fpc-pascal] FP Vector graphics library

2009-05-27 Thread Michael Van Canneyt
On Wed, 27 May 2009, Felipe Monteiro de Carvalho wrote: On Wed, May 27, 2009 at 10:53 AM, Michael Van Canneyt wrote: All correct, and currently we have support in FPC for raster images. My proposal is to add your code to FPC so we also support vector graphics: FCL-image seems like the approp

Re: [fpc-pascal] FP Vector graphics library

2009-05-27 Thread Felipe Monteiro de Carvalho
On Wed, May 27, 2009 at 10:53 AM, Michael Van Canneyt wrote: > All correct, and currently we have support in FPC for raster images. > My proposal is to add your code to FPC so we also support vector > graphics: FCL-image seems like the appropriate place for this. I see, but are you proposing to a

Re: [fpc-pascal] FP Vector graphics library

2009-05-27 Thread Michael Van Canneyt
On Wed, 27 May 2009, Felipe Monteiro de Carvalho wrote: On Wed, May 27, 2009 at 6:07 AM, Michael Van Canneyt wrote: Shouldn't it be part of FPC's canvas/image support ? But FCL canvas/image is for raster images. I don't see how they would correctly describe vector images. PDF can hold tex

Re: [fpc-pascal] FP Vector graphics library

2009-05-27 Thread Felipe Monteiro de Carvalho
On Wed, May 27, 2009 at 6:07 AM, Michael Van Canneyt wrote: > Shouldn't it be part of FPC's canvas/image support ? But FCL canvas/image is for raster images. I don't see how they would correctly describe vector images. PDF can hold text, raster images and vector images. For this library I am ign

Re: [fpc-pascal] FP Vector graphics library

2009-05-27 Thread Michael Van Canneyt
On Tue, 26 May 2009, Felipe Monteiro de Carvalho wrote: Hello, I and another worker have developed a vector graphics library for Free Pascal and I am thinking about making it modifyed-LGPL and adding to the lazarus-ccr repository, like fpspreadsheet. So I was wondering, anyone interrested in

Re: [fpc-pascal] FP Vector graphics library

2009-05-26 Thread SteveG
On Wednesday 27 May 2009 04:49:12 Felipe Monteiro de Carvalho wrote: > Hello, > > I and another worker have developed a vector graphics library for Free > Pascal and I am thinking about making it modifyed-LGPL and adding to > the lazarus-ccr repository, like fpspreadsheet. So I was wondering, >

Re: [fpc-pascal] FP Vector graphics library

2009-05-26 Thread Henry Vermaak
2009/5/26 Felipe Monteiro de Carvalho : > Hello, > > I and another worker have developed a vector graphics library for Free > Pascal and I am thinking about making it modifyed-LGPL and adding to > the lazarus-ccr repository, like fpspreadsheet. So I was wondering, > anyone interrested in it? > > At

[fpc-pascal] FP Vector graphics library

2009-05-26 Thread Felipe Monteiro de Carvalho
Hello, I and another worker have developed a vector graphics library for Free Pascal and I am thinking about making it modifyed-LGPL and adding to the lazarus-ccr repository, like fpspreadsheet. So I was wondering, anyone interrested in it? At the moment it supports only reading PDF and only writ