Re: [lazarus] subscribe

2006-10-10 Thread Maxim Ganetsky
Henrique P Faria пишет: > Does anyone can tell me why I can’t get subscribed to the mailing list? > Are you sure you are subscribing as described here: http://www.lazarus.freepascal.org/modules.php?op=modload&name=StaticPage&file=index&sURL=maill > > > Thank you > > > > Henrique. -- Be

Re: [lazarus] subscribe

2006-10-10 Thread Felipe Monteiro de Carvalho
On 10/10/06, Henrique P Faria <[EMAIL PROTECTED]> wrote: Does anyone can tell me why I can't get subscribed to the mailing list? Which mailling list? It seams to me that you are already subscribed -- Felipe Monteiro de Carvalho

[lazarus] subscribe

2006-10-10 Thread Henrique P Faria
  Does anyone can tell me why I can’t get subscribed to the mailing list?   Thank you   Henrique.  

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Graeme Geldenhuys
If anybody is interested, in tiOPF we painted our own Splitter and PanelSplitter components, to make them more visual than the default Delphi ones. He previously had complaints from out customers that they could clearly see where splitters where located. Hence the custom paint job and we got very

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Sebastian Kraft
Am Dienstag, 10. Oktober 2006 16:39 schrieb Mattias Gaertner: > The DrawSplitter code was inspired by gtkpaned.c. > My TSplitter (DrawSplitter) looks the same as TPairSplitter (gtkpaned). > Maybe DrawSplitter needs to be extended for some uncommon themes? > Even with default theme TSplitter painte

Re: [lazarus] how are interfaces / virtual functions handled internally

2006-10-10 Thread Albert Zeyer
Am Freitag, den 06.10.2006, 15:13 + schrieb Albert Zeyer: Am Donnerstag, den 05.10.2006, 15:08 +0200 schrieb Christian Iversen: On Thursday 05 October 2006 16:48, Albert Zeyer wrote: > Hi > > I am working on a very huge object-system, that means, I will have > thousands objects

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Marc Weustink
Mattias Gaertner wrote: On Tue, 10 Oct 2006 15:48:57 +0200 Marc Weustink <[EMAIL PROTECTED]> wrote: Sebastian Kraft wrote: Am Dienstag, 10. Oktober 2006 11:12 schrieb Marc Weustink: Sebastian Kraft wrote: Thanks... I worked a bit on the DrawSplitter function. I finally got the style I was l

Re: [lazarus] How not to break on handled exceptions?

2006-10-10 Thread Alexandre Leclerc
2006/10/10, Marc Weustink <[EMAIL PROTECTED]>: Alexandre Leclerc wrote: > Hi all, > > I added exceptions for the debuger to ignore them because I handle > them... and it works great. Now if the exception is not handled, will > the debugger break (this is what I want)? > > If fact, is there a way

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Mattias Gaertner
On Tue, 10 Oct 2006 14:56:09 +0200 Vincent Snijders <[EMAIL PROTECTED]> wrote: > Felipe Monteiro de Carvalho schreef: > > On 10/10/06, Vincent Snijders <[EMAIL PROTECTED]> wrote: > >> Then I continued to compile until I hit: > >> D:\lazarus\source\lazarus\lcl\interfaces\qt\qtwsbuttons.pp(31,17) >

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Mattias Gaertner
On Tue, 10 Oct 2006 15:48:57 +0200 Marc Weustink <[EMAIL PROTECTED]> wrote: > Sebastian Kraft wrote: > > Am Dienstag, 10. Oktober 2006 11:12 schrieb Marc Weustink: > >> Sebastian Kraft wrote: > >>> Thanks... I worked a bit on the DrawSplitter function. > >>> > >>> I finally got the style I was loo

Re: [lazarus] How not to break on handled exceptions?

2006-10-10 Thread Marc Weustink
Alexandre Leclerc wrote: Hi all, I added exceptions for the debuger to ignore them because I handle them... and it works great. Now if the exception is not handled, will the debugger break (this is what I want)? If fact, is there a way to tell the debugger that if an exception is handled (try .

[lazarus] How not to break on handled exceptions?

2006-10-10 Thread Alexandre Leclerc
Hi all, I added exceptions for the debuger to ignore them because I handle them... and it works great. Now if the exception is not handled, will the debugger break (this is what I want)? If fact, is there a way to tell the debugger that if an exception is handled (try ... end block) then not to

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Marc Weustink
Sebastian Kraft wrote: Am Dienstag, 10. Oktober 2006 11:12 schrieb Marc Weustink: Sebastian Kraft wrote: Thanks... I worked a bit on the DrawSplitter function. I finally got the style I was looking for. Here's a screenshot: http://www.hey-you-freaks.de/splitter4.png If you like this style too

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Felipe Monteiro de Carvalho
On 10/10/06, Vincent Snijders <[EMAIL PROTECTED]> wrote: I saw the following text on the console: "Freeing resources". Maybe you can use debugln instead of writeln for showing this information. I will check this. That message should be around a IFDEF block for debugging only All in all comple

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Florian Klaempfl
Vincent Snijders wrote: > > What are the possibilities for adding the unit to the fpc repository? Of course, if someone is willing todo so ;) > > I wonder what would be the best way to distribute the libqtintf.dll / so. fpcbuild?

Re: [lazarus] Much Qt Progress

2006-10-10 Thread A.J. Venter
> I hope Den Jean can unify his qt4 unit. > > What are the possibilities for adding the unit to the fpc repository? > > I wonder what would be the best way to distribute the libqtintf.dll / so. Well it's a qt derivative so no licensing issue - but we would need to make a clear note that the QT stu

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: On 10/10/06, Vincent Snijders <[EMAIL PROTECTED]> wrote: I tried to compile the qt interface on windows and first ran into the problem that type PEvent = Pointer; Region = Pointer; are not in the types unit for windows. For the moment I added these d

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Vincent Snijders
Felipe Monteiro de Carvalho schreef: On 10/10/06, Vincent Snijders <[EMAIL PROTECTED]> wrote: Then I continued to compile until I hit: D:\lazarus\source\lazarus\lcl\interfaces\qt\qtwsbuttons.pp(31,17) Error: unit not found: qtwidgets Where should the qtwidgets units be found? I think Mattia

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Felipe Monteiro de Carvalho
On 10/10/06, Vincent Snijders <[EMAIL PROTECTED]> wrote: I tried to compile the qt interface on windows and first ran into the problem that type PEvent = Pointer; Region = Pointer; are not in the types unit for windows. For the moment I added these declaration in line 95 of qt.pas. I

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Felipe Monteiro de Carvalho
On 10/10/06, Vincent Snijders <[EMAIL PROTECTED]> wrote: Then I continued to compile until I hit: D:\lazarus\source\lazarus\lcl\interfaces\qt\qtwsbuttons.pp(31,17) Error: unit not found: qtwidgets Where should the qtwidgets units be found? I think Mattias forgot to add this unit. It is new.

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Vincent Snijders
I tried to compile the qt interface on windows and first ran into the problem that type PEvent = Pointer; Region = Pointer; are not in the types unit for windows. For the moment I added these declaration in line 95 of qt.pas. Then I continued to compile until I hit: D:\lazarus\source\laz

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Graeme Geldenhuys
On 10/10/06, Felipe Monteiro de Carvalho <[EMAIL PROTECTED]> wrote: > Mobile PDA market. I love my PDA, and would love to interface my apps > with it. Althought wince interface is quite well developed, one thing missing here is a PDA communications package for Lazarus. And it will have to be par

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Felipe Monteiro de Carvalho
On 10/10/06, Graeme Geldenhuys <[EMAIL PROTECTED]> wrote: Congrads Felipe! It sounds like you are making good progress with Qt-LCL. What is involved in getting it to work for PDA's as well? Actually I don't know, one has to research about this. What I know is that fpc already works for qt based

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Sebastian Kraft
Am Dienstag, 10. Oktober 2006 11:12 schrieb Marc Weustink: > Sebastian Kraft wrote: > > Thanks... I worked a bit on the DrawSplitter function. > > > > I finally got the style I was looking for. Here's a screenshot: > > http://www.hey-you-freaks.de/splitter4.png > > > > If you like this style too, i

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Marc Weustink
Sebastian Kraft wrote: Thanks... I worked a bit on the DrawSplitter function. I finally got the style I was looking for. Here's a screenshot: http://www.hey-you-freaks.de/splitter4.png If you like this style too, i may try to implement a option in object inspector that allows to choose one of

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Sebastian Kraft
Thanks... I worked a bit on the DrawSplitter function. I finally got the style I was looking for. Here's a screenshot: http://www.hey-you-freaks.de/splitter4.png If you like this style too, i may try to implement a option in object inspector that allows to choose one of the styles for TSplitter.

Re: [lazarus] path for graphics.diff

2006-10-10 Thread Mattias Gaertner
On Sun, 08 Oct 2006 10:28:31 +0400 Aleksey Lagunov <[EMAIL PROTECTED]> wrote: > Flávio Etrusco ?: > > IIRC these are not Delphi standard colors, but additional color > > defined by RxLib and then inherited by JVCL. There could be some > > clash... > > > Delphi 7 > unit Graphics > line 92 > clM

Re: [lazarus] TSplitter or TPairSplitter

2006-10-10 Thread Marc Weustink
Mattias Gaertner wrote: On Mon, 9 Oct 2006 11:56:34 +0200 Sebastian Kraft <[EMAIL PROTECTED]> wrote: Hello... Which one should I use? TSplitter or TPairsplitter? I like the look and feel of TPairsplitter but as far as I know it is only a temporary replacement for TSplitter and doesn't work we

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Graeme Geldenhuys
Congrads Felipe! It sounds like you are making good progress with Qt-LCL. What is involved in getting it to work for PDA's as well? Is the Qtopia libs very different to the standard Qt libs? If you ever need another challenge after Qt-LCL, there is always fpGUI. ;-) Jokes aside, I am getting mo