Re: [Lazarus] SVG Object

2022-01-17 Thread Steve Gatenby via lazarus
Thank you Mehmet - Tried to follow the math within the svg (inkscape) on my first attempt(s) got completely lost (which leads to questioning ones intelligence) on the transforms, scales and differing units :) So now fully fudging it by dividing the Svg source Height and Width by a grid

Re: [Lazarus] SVG Object

2022-01-17 Thread Mehmet Erol Sanliturk via lazarus
On Tue, Jan 18, 2022 at 2:37 AM Steve Gatenby via lazarus < lazarus@lists.lazarus-ide.org> wrote: > Thanks Marc - seems I will need to stick with what I have then. > > Currently I am pulling all object info from the SVG into an array and > assigning quadrant positions. > > Then do best guess by

Re: [Lazarus] SVG Object

2022-01-17 Thread Steve Gatenby via lazarus
Thanks Marc - seems I will need to stick with what I have then. Currently I am pulling all object info from the SVG into an array and assigning quadrant positions. Then do best guess by relative quadrant of mouse click position - works fine, but feels sloppy :) On 17/1/22 8:55 pm, Marc

Re: [Lazarus] DCPcrypt: a package looking for a new maintainer

2022-01-17 Thread Graeme Geldenhuys via lazarus
On 2022-01-15 15:51, Michael Van Canneyt via lazarus wrote: Well, I asked for permission to include DPCrypt into the FPC. It was granted, and the usual FPC license can be added. That's excellent to hear. Nothing beats the open source software model. :-D G. --

Re: [Lazarus] commit 6c3286c7 broke LCL compilation attn: matthias

2022-01-17 Thread Mattias Gaertner via lazarus
On Mon, 17 Jan 2022 13:40:17 +0100 Marcus Sackrow via lazarus wrote: >[...] > is there are way to do that? (except writing a fpc4amiga.sh script and > pass that as compiler, which I tried and works but it's a bit annoying > for automatic compilation inside jenkins) You could create a project

Re: [Lazarus] commit 6c3286c7 broke LCL compilation attn: matthias

2022-01-17 Thread Marcus Sackrow via lazarus
Hi, Am 17.01.2022 um 12:52 schrieb Mattias Gaertner via lazarus: On Mon, 17 Jan 2022 11:58:22 +0100 Marcus Sackrow via lazarus wrote: [...] usually for certain targets (amiga-likes) I only compile the LCL, because lazarus itself will not work. I did that in the past on my jenkins server

Re: [Lazarus] commit 6c3286c7 broke LCL compilation attn: matthias

2022-01-17 Thread Mattias Gaertner via lazarus
On Mon, 17 Jan 2022 11:58:22 +0100 Marcus Sackrow via lazarus wrote: >[...] > usually for certain targets (amiga-likes) I only compile the LCL, > because lazarus itself will not work. > > I did that in the past on my jenkins server with > > make registration . > > make lazutils > >

[Lazarus] commit 6c3286c7 broke LCL compilation attn: matthias

2022-01-17 Thread Marcus Sackrow via lazarus
Hi, usually for certain targets (amiga-likes) I only compile the LCL, because lazarus itself will not work. I did that in the past on my jenkins server with make registration . make lazutils make codetools make lcl it seems lazutils and codetools are removed with the

Re: [Lazarus] SVG Object

2022-01-17 Thread Marc Weustink via lazarus
I'm afraid there is no easy solution for that. SVGs are rendered from the first element to the last, where ever element (atleast in theory) can be a part of a given pixel. SVG elements do have a x,y,width,height but they may also be part of one or more transformations. To give you an idea, the