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

2015-02-12 Thread FreeMan
FColor := $CCD148;// Medium Turquoise //todo- for me maybe change shape caret too will you add this caret color property to lazarus IDE options - Editor - Display - Colors ? Thank you. On 12.02.2015 15:23, FreeMan wrote: lazarus r47718: on qt x64: {$IFDEF LCLCarbon} FForcePaintEvents

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

2015-02-12 Thread Martin Frb
On 12/02/2015 18:08, FreeMan wrote: FColor := $CCD148;// Medium Turquoise //todo- for me maybe change shape caret too will you add this caret color property to lazarus IDE options - Editor - Display - Colors ? Thank you. Maybe, ... (if I find time). I am working on other stuff, that I want

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

2015-02-12 Thread FreeMan
may be give more info, I forget add before, sorry. osx -QT- x64 On 12.02.2015 12:36, FreeMan wrote: r47714: insource editor, i386 carbon: cursor (or carret) color is blank but now its not blink x64 qt cursor (or carret) color is blank but now its not blink. And in the same line, position

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

2015-02-12 Thread FreeMan
r47714: insource editor, i386 carbon: cursor (or carret) color is blank but now its not blink x64 qt cursor (or carret) color is blank but now its not blink. And in the same line, position set first time but, if click other column, later or before, cursor not move. not move left or right via

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

2015-02-12 Thread FreeMan
lazarus r47718: on qt x64: {$IFDEF LCLCarbon} FForcePaintEvents := True; {$ELSE} FForcePaintEvents := True; -- this is work normal now, carret is showing and blinking, in carbon work too {$ENDIF} I attached 2 screenshots. How to view carret in widgetset. qt little bit thin and

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

2015-02-11 Thread Martin Frb
On 08/02/2015 13:45, FreeMan wrote: Okey, I'm waiting your commit Done, if you test please let me know how it goes. -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

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

2015-02-08 Thread Martin Frb
On 08/02/2015 12:44, FreeMan wrote: I tryed all, but same result, Access violation. and IDE terminate. source editor is opening, but default colors, popup error message and click ok or cancel IDE terminate. I'm still not use to osx, how can I get stacktrace? On 6.02.2015 22:32, Martin Frb

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

2015-02-08 Thread FreeMan
Okey, I'm waiting your commit On 8.02.2015 15:36, Martin Frb wrote: You will need gdb. (codesigned) See the wiki. Unfortunately, I can not advice myself on how to codesign gdb. You can debug the IDE inside the IDE, by opening ide/lazarus.lpi Or you may run in a shell (there is a lazarus

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

2015-02-08 Thread FreeMan
I tryed all, but same result, Access violation. and IDE terminate. source editor is opening, but default colors, popup error message and click ok or cancel IDE terminate. I'm still not use to osx, how can I get stacktrace? On 6.02.2015 22:32, Martin Frb wrote: Otherwise try the 2 lines in

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] 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] 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] 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] Is it posibble change cursor in source editor

2015-01-31 Thread Martin Frb
On 29/01/2015 14:59, Martin Frb wrote: On 29/01/2015 14:41, FreeMan wrote: On osx, color set twilight, in source editor cursor not viewing, system color is black for cursor too. Can it be colored in source editor? Not that I know. The caret is drawn by the OS. At least on windows.

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

2015-01-31 Thread FreeMan
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 couple of code changes, since no options exist. unit: components\synedit\syneditpointclasses.pas line 2410 constructor TSynEditScreenCaret.Create(AHandleOwner: TWinControl);

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

2015-01-30 Thread FreeMan
Thank you, This problem in just 64 bit QT on osx on corbon is okey short way is change background color, or change color set. https://code.google.com/p/delphi-ide-theme-editor/ 2300 color themes for lazarus :) On 29.01.2015 16:59, Martin Frb wrote: Not that I know. The caret is drawn by the

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

2015-01-29 Thread Martin Frb
On 29/01/2015 14:41, FreeMan wrote: On osx, color set twilight, in source editor cursor not viewing, system color is black for cursor too. Can it be colored in source editor? Not that I know. The caret is drawn by the OS. At least on windows. Apparently GTK does not have it, and the code in

[Lazarus] Is it posibble change cursor in source editor

2015-01-29 Thread FreeMan
On osx, color set twilight, in source editor cursor not viewing, system color is black for cursor too. Can it be colored in source editor? -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org