Re: [fpc-devel] Lazarus

2006-01-21 Thread VisionForce
So where would I need to start if I wanted to add this to Lazarus? Sincerely, Alex C. Barberi VisionForce http://www.visionforceweb.com - Original Message - From: "Felipe Monteiro de Carvalho" <[EMAIL PROTECTED]> To: "FPC developers' list" Sent: Saturday, January 21, 2006 5:51 PM Sub

Re: [fpc-devel] Lazarus

2006-01-21 Thread Felipe Monteiro de Carvalho
On 1/21/06, VisionForce <[EMAIL PROTECTED]> wrote: > > Is there a way I can change Lazarus to an MDI style instead of having that > floating desktop style? There is a missing part on Lazarus code before MDI can be implemented. This is Docking. If you implement Docking, then things would be much e

Re: [fpc-devel] Lazarus

2006-01-21 Thread Mattias Gaertner
On Sat, 21 Jan 2006 17:16:02 -0600 "VisionForce" <[EMAIL PROTECTED]> wrote: > Is there a way I can change Lazarus to an MDI style instead of having that > floating desktop style? No. Mattias ___ fpc-devel maillist - fpc-devel@lists.freepascal.org htt

[fpc-devel] Lazarus

2006-01-21 Thread VisionForce
Is there a way I can change Lazarus to an MDI style instead of having that floating desktop style?     Thanks,Alex C. BarberiVisionForcehttp://www.visionforceweb.com ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org

[fpc-devel] Re: X11 header file translated

2006-01-21 Thread Felipe Monteiro de Carvalho
Please add T in front of the 2 file types on that file if it is applied to fpcsrc. The file types would be called: TXWDFileHeader and TXWDColor Thanks. -- Felipe Monteiro de Carvalho ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://list

Re: [fpc-devel] Addtions for strutils

2006-01-21 Thread L505
> I wish to add 3 new string functions for strutils: > 1. Check if a string is an integer (without + or - signs). My suggestion: Make your own unit and put it up on FPC contributed units or add it to one of my existing string extensions unit - I welcome it in my string projects if you want to pla

[fpc-devel] profiling on win32

2006-01-21 Thread Giulio Bernardi
Hi everybody. Did someone manage to enable profiling on win32? I linked with libc.a, libgmon.a, libgcc.a and libkernel32.a from cygwin but it fails on startup. If I start the -pg compiled program I see: monstartup: out of memory Then program runs without problems, and at the end I see a couple o

[fpc-devel] X11 header file translated

2006-01-21 Thread Felipe Monteiro de Carvalho
Hello, I just translated a X11 header. It describes the xwd dump file format. Pictures on this format are created by the xwd tool, and also by some X functions. I was thinking, would you (fpc developers) like to add this file to the X11 headers currently translated? I am also thinking about addin

Re: [fpc-devel] interface vs optimizer

2006-01-21 Thread mariano podesta
Yes. Why should the interface life longer? There isn't any owneranymore? If you need a longer life time, you need to assign the interface to something.i have many structures like this (yes, in delphi):function TXList.Lock: ILock;begin  result := TLock.Create(self);end;procedure dostuff;begin   list

Re: [fpc-devel] Addtions for strutils

2006-01-21 Thread Marco van de Voort
> I wish to add 3 new string functions for strutils: > 1. Check if a string is an integer (without + or - signs). Hmm, is this not a bit overspecialisation ? val(x,code); result:=(code=0) and (posexset(['+','-'],x)=0) would already do. (untested from memory) > 2. split a string into an array u

Re: [fpc-devel] interface vs optimizer

2006-01-21 Thread Florian Klaempfl
mariano podesta wrote: ok, but is this a correct behavior? Yes. Why should the interface life longer? There isn't any owner anymore? If you need a longer life time, you need to assign the interface to something. i think it would be best to optimize with a compiler switch or to give a switc