Re: [Lazarus] Mac retina pain

2015-02-06 Thread Felipe Monteiro de Carvalho
On Fri, Feb 6, 2015 at 8:41 AM, Felipe Monteiro de Carvalho felipemonteiro.carva...@gmail.com wrote: I tried googling but it didn't bring anything helfup... so far my only ways forward are: Google *is* the master, you just have to use it right =D With this search string:

Re: [Lazarus] Mac retina pain

2015-02-06 Thread Felipe Monteiro de Carvalho
About the install_name_tool issue and reinstalling the OS: http://forums.macrumors.com/showthread.php?t=1549618 lol! There is no offline OS reinstall out of the box ... (facepalm). Even the recovery partition will download the OS. I guess the people that invented this madness never lived in a

Re: [Lazarus] Is it posibble change cursor in source editor

2015-02-06 Thread FreeMan
I did before, when start IDE, IDE give Access violation, and terminate On 6.02.2015 19:21, Martin Frb wrote: Replace this with Create(AHandleOwner, TSynEditScreenCaretPainterInternal); and then -- ___ Lazarus mailing list

Re: [Lazarus] Developing on Linux with files on Windows NTFS

2015-02-06 Thread Mark Morgan Lloyd
Felipe Monteiro de Carvalho wrote: I would use svn to synchronize 2 copies, 1 in linux and 1 in windows. www.assembla.com offers free Repo only svn hosting. I agree. A (local) subversion server is no big deal, in fact I started using svn specifically so that I could quickly get at files from

Re: [Lazarus] Is it posibble change cursor in source editor

2015-02-06 Thread Martin Frb
On 06/02/2015 20:12, FreeMan wrote: I did before, when start IDE, IDE give Access violation, and terminate On 6.02.2015 19:21, Martin Frb wrote: Replace this with Create(AHandleOwner, TSynEditScreenCaretPainterInternal); and then I just tried this myself (under win32), no error. IDE

Re: [Lazarus] Mac retina pain

2015-02-06 Thread Felipe Monteiro de Carvalho
I added kWindowFrameworkScaledAttribute to window creation in 47605, and in a small test app I can see difference, it really works. I have no idea why, but it doesn't work for the IDE to me =( I guess we will need defaults write lazarus.freepascal.ide AppleMagnifiedMode NO so that it will at

Re: [Lazarus] Changing package versions

2015-02-06 Thread Mattias Gaertner
On Fri, 06 Feb 2015 23:44:42 +0100 Werner Pamler werner.pam...@freenet.de wrote: My development system for fpspreadsheet is Lazarus 1.2.6 and, of course, the trunk version of fpspreadsheet (version 1.5). Sometimes, however, I have to switch to the released versions, e.g. 1.4.1, and this

[Lazarus] Changing package versions

2015-02-06 Thread Werner Pamler
My development system for fpspreadsheet is Lazarus 1.2.6 and, of course, the trunk version of fpspreadsheet (version 1.5). Sometimes, however, I have to switch to the released versions, e.g. 1.4.1, and this appears to be very confusing to me. Here is what I am doing - Initially, fpspreadsheet

Re: [Lazarus] Developing on Linux with files on Windows NTFS {Solved]

2015-02-06 Thread Donald Ziesig
Thanks to all who responded to my plea for help with multi-platform development. It seems that I was mistaken about the time-stamps causing the problems I encountered. The problems were caused by the fact that Lazarus for Linux wants case sensitive file names and the NTFS driver I was using

Re: [Lazarus] Mac retina pain

2015-02-06 Thread Graeme Geldenhuys
On 2015-02-05 21:33, Mattias Gaertner wrote: 1 Lazarus renders really bad, pixelated, and Retinizer couldn't help it =( The main Lazarus window starts in a position too in the top of the screen and therefore under the menu bar. Please create a bug report for the position. I remember

Re: [Lazarus] Mac retina pain

2015-02-06 Thread Felipe Monteiro de Carvalho
The author refuses to say how it works (good that I already found in Google), but he proposed to add AppleMagnifiedMode = NO into info.plist. No idea if it will work, I'll try when I'm back from work. -- Felipe Monteiro de Carvalho -- ___ Lazarus

Re: [Lazarus] Mac retina pain

2015-02-06 Thread Felipe Monteiro de Carvalho
On Fri, Feb 6, 2015 at 9:33 AM, Felipe Monteiro de Carvalho felipemonteiro.carva...@gmail.com wrote: So should I implement running defaults write lazarus.freepascal.ide AppleMagnifiedMode NO into startlazarus ? Looks like that it can be fixed in code too:

Re: [Lazarus] Keyboard info

2015-02-06 Thread Mark Morgan Lloyd
Marc Weustink wrote: setxkbmap -print or via program https://github.com/nonpop/xkblayout-state Thanks, noted the program stuff which looks useful. I admit that I was rather expecting to be pointed brusquely at some existing LCL or FCL stuff... can I get e.g. current country from locale stuff,

Re: [Lazarus] Is it posibble change cursor in source editor

2015-02-06 Thread Martin Frb
Still the same, just line numbers are changed. Search for TSynEditScreenCaret.Create( Or go to ide/SourceSynEditor and in line 1610 constructor TIDESynEditor.Create(AOwner: TComponent); add ScreenCaret.ChangePainter(TSynEditScreenCaretPainterInternal);

Re: [Lazarus] Mac retina pain

2015-02-06 Thread Michael Ring
Done, http://bugs.freepascal.org/view.php?id=27411 Thank you, Michael Am 06.02.15 um 14:00 schrieb FreeMan: Yes Michael, you right. Problem in source editor side, alt key not work, I mean not just that symbols, all alt key combinations not work. In object inspector, I wrote [a,b,c]{} and

Re: [Lazarus] Is it posibble change cursor in source editor

2015-02-06 Thread FreeMan
Hello Martin, After this message, syneditpointclasses.pas file is changed, create codes etc. If its possible sent new suggestion please? On 31.01.2015 21:50, FreeMan wrote: thank you Martin, I can look next week. On 31.01.2015 21:24, Martin Frb wrote: It might be now, but you need to do a

Re: [Lazarus] Is it posibble change cursor in source editor

2015-02-06 Thread FreeMan
On 31.01.2015 21:24, Martin Frb wrote: It might be now, but you need to do a couple of code changes, since no options exist. unit: components\synedit\syneditpointclasses.pas line 2410 constructor TSynEditScreenCaret.Create(AHandleOwner: TWinControl); change (old) FCaretPainter :=

Re: [Lazarus] Is it posibble change cursor in source editor

2015-02-06 Thread Martin Frb
On 06/02/2015 17:12, FreeMan wrote: On 31.01.2015 21:24, Martin Frb wrote: It might be now, but you need to do a couple of code changes, since no options exist. unit: components\synedit\syneditpointclasses.pas line 2410 constructor TSynEditScreenCaret.Create(AHandleOwner: TWinControl);

Re: [Lazarus] Mac retina pain

2015-02-06 Thread FreeMan
On 6.02.2015 00:04, Michael Ring wrote: Antialiasing must be set to on, the fonts are not rendered in perfect resolution, but for me this is now good enough. You can also build Lazarus with QT-Widgetset, but then you loose []{} keys in Lazarus which is sometimes a little frustrating when you

Re: [Lazarus] Developing on Linux with files on Windows NTFS

2015-02-06 Thread John Landmesser
Am 05.02.2015 um 16:53 schrieb Donald Ziesig: Hi All! I have been trying to develop a multi-platform app with the IDE on Linux (MInt) and the source files on a Windows NTFS partition. I build and test on windows but my primary work is done on linux so I don't stay logged in to windows very