Re: [Lazarus] Zipfiles using Paszlib...

2009-02-09 Thread Graeme Geldenhuys
On Mon, Feb 9, 2009 at 3:16 AM, Hans-Peter Diettrich drdiettri...@aol.com wrote: Don't confuse zlib with zip. AFAIK zlib is the gz library, which compresses only an single file, and typically is used to compress tar archives into *.tar.gz or *.tgz. That's correct. An alternative that also

Re: [Lazarus] Docking and Layout managers

2009-02-09 Thread Mattias Gärtner
Zitat von Hans-Peter Diettrich drdiettri...@aol.com: Mattias Gaertner schrieb: I'd suggest a layout layer, between TControl and TWinControl, dealing with child controls (e.g. TContainerControl). As Paul pointed out, a TWinControl uses system resources (handles), which are not required

Re: [Lazarus] ideintf path to executable

2009-02-09 Thread Mattias Gärtner
Zitat von Leslie Kaye les.k...@couchmansfarm.plus.com: Johannes Müller wrote: div class=moz-text-flowed style=font-family: -moz-fixedHi, I wrote an IDE-plugin but i have a small problem to determine the path to the compiled executable. I found the propertys in ideintf to geht the path

Re: [Lazarus] [*] --Re: Unicode data

2009-02-09 Thread Mattias Gärtner
Zitat von theo x...@theo.ch: Please apply the attached patch for ide/charactermapdlg.pas Applied. Thanks. Mattias ___ Lazarus mailing list Lazarus@lazarus.freepascal.org http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] ideintf path to executable

2009-02-09 Thread Johannes Müller
Mattias Gärtner schrieb: He meant the executable path of the current project at design time. See here http://wiki.lazarus.freepascal.org/Extending_the_IDE#The_executable_.2F_target_file_name_of_a_project Mattias This is exactly what I need. Thanks. -- Johannes Müller

Re: [Lazarus] Docking and Layout managers

2009-02-09 Thread Hans-Peter Diettrich
Mattias Gärtner schrieb: Maybe I misunderstood your proposal. What parts of TWinControl should be moved to TContainerControl? Do you want to move the ControlCount and Controls properties to TContainerControl? Yes, all the child control related stuff. I'd move that into the LayoutManager,

Re: [Lazarus] Different language of project than IDE has

2009-02-09 Thread Roland Turcan
Hello all, Thanks for this link, but my wish is to get my application localized without any addition language files. I don't even want to change language to other one, just to have it fixed inside of executable. Do I have any chance to get it? TRoland; 23.12.2008 12:15 - Bart

Re: [Lazarus] Docking and Layout managers

2009-02-09 Thread Mattias Gärtner
Zitat von Hans-Peter Diettrich drdiettri...@aol.com: Mattias Gärtner schrieb: Maybe I misunderstood your proposal. What parts of TWinControl should be moved to TContainerControl? Do you want to move the ControlCount and Controls properties to TContainerControl? Yes, all the child

Re: [Lazarus] Docking and Layout managers

2009-02-09 Thread Michael Van Canneyt
On Mon, 9 Feb 2009, Mattias Gärtner wrote: Zitat von Hans-Peter Diettrich drdiettri...@aol.com: Mattias Gärtner schrieb: Maybe I misunderstood your proposal. What parts of TWinControl should be moved to TContainerControl? Do you want to move the ControlCount and Controls

Re: [Lazarus] Zipfiles using Paszlib...

2009-02-09 Thread Graeme Geldenhuys
On Mon, Feb 9, 2009 at 2:47 PM, JoshyFun joshy...@gmail.com wrote: Where's that 7Zip Delphi unit ? I was unable to find it, except a bunch of API headers and others that need the 7za.dll http://www.7-zip.org/sdk.html Delphi / Free Pascal link is at the bottom of that page. Please note I

Re: [Lazarus] Zipfiles using Paszlib...

2009-02-09 Thread Reenen Laurie
My needs are pretty simple... I want something that will combine X files into 1 file, and then later read any 1 of those X file back into either a TImage (Jpg etc.) or into a TStringlist. I don't have many restrictions... My files won't likely be more than 500kb, and typically won't contain 30

Re: [Lazarus] Zipfiles using Paszlib...

2009-02-09 Thread Reenen Laurie
Initially I don't even need the files inside to be editable... On Mon, Feb 9, 2009 at 10:04 PM, Reenen Laurie rlau...@gmail.com wrote: My needs are pretty simple... I want something that will combine X files into 1 file, and then later read any 1 of those X file back into either a TImage

Re: [Lazarus] Zipfiles using Paszlib...

2009-02-09 Thread Vincent Snijders
Reenen Laurie schreef: My needs are pretty simple... I want something that will combine X files into 1 file, and then later read any 1 of those X file back into either a TImage (Jpg etc.) or into a TStringlist. I don't have many restrictions... My files won't likely be more than

Re: [Lazarus] Space preference for assignment

2009-02-09 Thread Alexander Klenin
On Mon, Feb 9, 2009 at 11:17, Hans-Peter Diettrich drdiettri...@aol.com wrote: Micha Nelissen schrieb: How can I specify I prefer spaces around assignment operators? In the options window I can select several tokens, but not assignment operator, or did I miss it? You can selecet symbols,

Re: [Lazarus] Docking and Layout managers

2009-02-09 Thread Hans-Peter Diettrich
Mattias Gärtner schrieb: At least 90% of TWinControl is about its child controls. The rest is mostly key, mouse and focus handling. I guestimate, TContainerControl will have about 1-3kloc code, 500loc will stay in TWinControl and the remaining 4-6kloc will go to the new docking/layout

Re: [Lazarus] Docking and Layout managers

2009-02-09 Thread Mattias Gaertner
On Mon, 09 Feb 2009 23:03:47 +0100 Hans-Peter Diettrich drdiettri...@aol.com wrote: Mattias Gärtner schrieb: At least 90% of TWinControl is about its child controls. The rest is mostly key, mouse and focus handling. I guestimate, TContainerControl will have about 1-3kloc code, 500loc

[Lazarus] TTestSuite

2009-02-09 Thread Lee Jenkins
Sorry I'm a little dense on this one. I've read over the pdf available on the fpc website and look at some of the samples in the /fpc-fpunit directory and I'm still not getting how to register a TTestSuite with TTestCase object underneath it. Would anyone mind providing a simple example or

Re: [Lazarus] Zipfiles using Paszlib...

2009-02-09 Thread Graeme Geldenhuys
2009/2/9 Reenen Laurie rlau...@gmail.com: My needs are pretty simple... That's what we all say. :-) So if someone has a virtual file system somewhere available, then that'll work too. I am a little pushed for time, and if someone can point me to someplace where this is done I'd greatly