Re: [Lazarus] Improving IDE Internationalization

2010-01-02 Thread Mattias Gaertner
On Fri, 1 Jan 2010 15:18:44 -0300 "Marcelo Borges de Paula" wrote: > Happy new year to everyone. > >I´m having some troubles when using other compiler messages files to > compile Lazarus or > when using fpc compiled with other message file language than english. >The fact is that Lazar

Re: [Lazarus] Res: OT: Happy new year

2010-01-02 Thread Kjow
Happy new year to everyone! Kjow :) 2009/12/31 Silvio Clecio : > Hello friends, > > Happy 2010 to every Lazarus user! [2] > > -- > Silvio Clecio > -- > Blog estilo mural - http://silvioclecio.blogspot.com > Twitter - http://twitter.com/silvioprog > -- > programmer ObjectPascal - http://silvioprog

Re: [Lazarus] OT: Happy new year

2010-01-02 Thread ik
Thanks Ido http://ik.homelinux.org/ 2009/12/31 Giuliano Colla > I join Ido in wishing you all a very happy new year. > > To Ido, shana tova umetukah. > > Giuliano > > ik ha scritto: > > Hello All, > > Sorry for the offtopic, but I wish you all happy new year. > I hope that in 2010 we'll see Pa

[Lazarus] Window body dragging

2010-01-02 Thread Felipe Monteiro de Carvalho
Hello, I am investigating how to make a component act like the title bar, in the sense that it can be used to drag the window around. We have 2 solutions at the moment: 1 - Use MouseMove, MouseUp, MouseDown to emulate this, but in my Mac it sometimes looses track of MouseMove because the mouse w

Re: [Lazarus] OT: Happy new year

2010-01-02 Thread Felipe Monteiro de Carvalho
Feliz ano novo! better late then never =p -- Felipe Monteiro de Carvalho -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Window body dragging

2010-01-02 Thread dmitry boyarintsev
On Sat, Jan 2, 2010 at 3:46 PM, Felipe Monteiro de Carvalho wrote: > 1 - Use MouseMove, MouseUp, MouseDown to emulate this, but in my Mac > it sometimes looses track of MouseMove because the mouse was faster > then the window, so not 100% good Yep. I've noted the same effect on OSX (using MouseUp

[Lazarus] Improving IDE Internationalization

2010-01-02 Thread Marcelo B de Paula
Mattias wrote: >I think there is a better way: > >http://wiki.lazarus.freepascal.org/IDE_Development#Translated_compiler_messages > >I added some todos. > >Mattias Ok. I understand that will take some time to acomplish these todos. I´ll see what i can do to help. What about the embedded string

Re: [Lazarus] Installing lazarus with fpc 2.4.0

2010-01-02 Thread Juha Manninen
On lauantai, 2. tammikuuta 2010 06:34:58 Doug Chamberlin wrote: > IntelliAdmin Support wrote: > > If you already have Lazarus installed, you can simply install the new > > compiler, with the sources...then launch Lazarus. Go to tools, and > > build Lazarus. After the build is finished you should be

Re: [Lazarus] Window body dragging

2010-01-02 Thread Michael Joyner ᏩᏯ
Felipe Monteiro de Carvalho wrote: Hello, I am investigating how to make a component act like the title bar, in the sense that it can be used to drag the window around. We have 2 solutions at the moment: 1 - Use MouseMove, MouseUp, MouseDown to emulate this, but in my Mac it sometimes looses t

Re: [Lazarus] [fpc-pascal] Free Pascal 2.4.0 released

2010-01-02 Thread Graeme Geldenhuys
2010/1/2 Doug Chamberlin : > I ran into a problem because the directory I was installing from contained > an embedded space in the name. > > It really should be documented as a requirement to not have embedded I'm just amazed that such issues still come up! Just about very file system being used

[Lazarus] Error compiling Lazarus with Today's svn of FPC+Lazarus

2010-01-02 Thread Andrew Brunner
./Lazarus/ make all results in an error Compiling lclmemmanager.pas lclmemmanager.pas(98,14) Error: There is no method in an ancestor class to be overridden: "TExtMemoryStream.Realloc(var LongInt):^untyped;" lclmemmanager.pas(104,1) Fatal: There were 1 errors compiling module, stopping Fatal:

Re: [Lazarus] [fpc-pascal] Free Pascal 2.4.0 released

2010-01-02 Thread Doug Chamberlin
Graeme Geldenhuys wrote: 2010/1/2 Doug Chamberlin : I ran into a problem because the directory I was installing from contained an embedded space in the name. I'm just amazed that such issues still come up! Just about very file system being used in today's OSes can handle spaces in file and di

Re: [Lazarus] [fpc-pascal] Free Pascal 2.4.0 released

2010-01-02 Thread Florian Klaempfl
Doug Chamberlin schrieb: > Graeme Geldenhuys wrote: >> 2010/1/2 Doug Chamberlin : >>> I ran into a problem because the directory I was installing from >>> contained >>> an embedded space in the name. >> >> I'm just amazed that such issues still come up! Just about very file >> system being used in

Re: [Lazarus] [fpc-pascal] Free Pascal 2.4.0 released

2010-01-02 Thread Graeme Geldenhuys
2010/1/2 Florian Klaempfl : > > I think that directory names with spaces are still very uncommon on unix. > Not on the system I maintain. :-) But in general I think you are right, though I don't know why. Mac and Windows OS's prove it is very successful and doable. -- Regards, - Graeme - _

Re: [Lazarus] Window body dragging

2010-01-02 Thread Graeme Geldenhuys
2010/1/2 Felipe Monteiro de Carvalho : > > 1 - Use MouseMove, MouseUp, MouseDown to emulate this, but in my Mac > it sometimes looses track of MouseMove because the mouse was faster > then the window, so not 100% good Normally that means you did not capture the mouse. Both XLib and GDI have "mouse

Re: [Lazarus] [fpc-pascal] Free Pascal 2.4.0 released

2010-01-02 Thread David W Noon
On Sat, 2 Jan 2010 22:19:05 +0200, Graeme Geldenhuys wrote about Re: [Lazarus] [fpc-pascal] Free Pascal 2.4.0 released: > 2010/1/2 Florian Klaempfl : > > > > I think that directory names with spaces are still very uncommon on > > unix. > > > > Not on the system I maintain. :-) But in general I t

Re: [Lazarus] Window body dragging

2010-01-02 Thread Felipe Monteiro de Carvalho
On Sat, Jan 2, 2010 at 6:24 PM, Graeme Geldenhuys wrote: > Normally that means you did not capture the mouse. Both XLib and GDI > have "mouse capture" API's. I would image Mac does to. In fpGUI I had > problems you describe, and enabling mousecapture/mouserelease solved > it - no matter how fast y

Re: [Lazarus] Window body dragging

2010-01-02 Thread Graeme Geldenhuys
2010/1/2 Felipe Monteiro de Carvalho : > > In LCL-Carbon setting the capture didn't solve it. The problem is when > another window has focus and then I click and drag my window, then it > loses track very quickly. Are both those windows part of the same application? Or is it when you move from an

Re: [Lazarus] Window body dragging

2010-01-02 Thread Felipe Monteiro de Carvalho
On Sat, Jan 2, 2010 at 8:54 PM, Graeme Geldenhuys wrote: > Are both those windows part of the same application?  Or is it when > you move from another application's focus window to your application's > window? Between different applications. But the handle can't be the problem, because I am speci

Re: [Lazarus] Window body dragging

2010-01-02 Thread Felipe Monteiro de Carvalho
I think it's a limitation of Mac OS X, I just noticed that while I can drag Firefox clicking on it's toolbar, if the click comes while another application has focus, it doesn't drag. Firefox probably cancelled this direct drag because it doesn't work very well. -- Felipe Monteiro de Carvalho --

Re: [Lazarus] [fpc-pascal] Free Pascal 2.4.0 released

2010-01-02 Thread Hans-Peter Diettrich
Graeme Geldenhuys schrieb: I ran into a problem because the directory I was installing from contained an embedded space in the name. It really should be documented as a requirement to not have embedded I'm just amazed that such issues still come up! Just about very file system being used in

Re: [Lazarus] Window body dragging

2010-01-02 Thread Hans-Peter Diettrich
Felipe Monteiro de Carvalho schrieb: I am investigating how to make a component act like the title bar, in the sense that it can be used to drag the window around. Is this investigation related to docking? When you are interested in non-rectangular windows, without a title bar, I have no ide

Re: [Lazarus] Window body dragging

2010-01-02 Thread Hans-Peter Diettrich
Graeme Geldenhuys schrieb: 2 - Use platform-specific APIs. It's easy in Windows and we already have an idea in X11, but nothing yet in Carbon. In X11 it's possible without programmer intervension. Alt+Click anywhere on any window and then move the mouse without releasing the buttons. I think 9