[Lazarus] RFC: Selection Editors to extend handling of object inspector selections

2019-11-10 Thread Sven Barth via lazarus
Hello together! I've got a RFC for a feature that allows to extend the IDE. It's based on something that Delphi supports as well: Selection Editors. Unlike Component Editors these are supposed to be used to interact with a specific selection in the designer and (in Delphi) allow the following

Re: [Lazarus] Why is there a define switch UseCThreads?

2019-11-10 Thread Sven Barth via lazarus
Bo Berglund via lazarus schrieb am So., 10. Nov. 2019, 23:29: > I have ported a console application from Windows to Linux (Raspbian > Buster) and I got to wonder about the check for a defined symbol > appearing in the beginning of the code as produced by the Lazarus > template: > > uses >

[Lazarus] Why is there a define switch UseCThreads?

2019-11-10 Thread Bo Berglund via lazarus
I have ported a console application from Windows to Linux (Raspbian Buster) and I got to wonder about the check for a defined symbol appearing in the beginning of the code as produced by the Lazarus template: uses {$IFDEF UNIX}{$IFDEF UseCThreads} cthreads, {$ENDIF}{$ENDIF} Would it not be

Re: [Lazarus] Why is there a define switch UseCThreads?

2019-11-10 Thread zeljko via lazarus
On 11/10/19 11:29 PM, Bo Berglund via lazarus wrote: I have ported a console application from Windows to Linux (Raspbian Buster) and I got to wonder about the check for a defined symbol appearing in the beginning of the code as produced by the Lazarus template: uses {$IFDEF UNIX}{$IFDEF

Re: [Lazarus] Why is there a define switch UseCThreads?

2019-11-10 Thread Bo Berglund via lazarus
On Mon, 11 Nov 2019 00:20:59 +0100, Sven Barth via lazarus wrote: >Bo Berglund via lazarus schrieb am So., 10. >Nov. 2019, 23:29: > >> I have ported a console application from Windows to Linux (Raspbian >> Buster) and I got to wonder about the check for a defined symbol >> appearing in the

[Lazarus] SynEdit - SQL highlighter with $ in keywords

2019-11-10 Thread Gabor Boros via lazarus
Hi All, I try to extend TSynSQLSyn with keyword lists of Firebird 2.5, 3.0 and 4.0. Every keyword included in one list/version and used as tKey (e.g. sqlFirebird30: EnumerateKeywords(Ord(tkKey), Firebird30KW, IdentChars, @DoAddKeyword);). Some keywords contains a $ sign (RDB$DB_KEY,

Re: [Lazarus] SynEdit - SQL highlighter with $ in keywords

2019-11-10 Thread Gerd Sager via lazarus
Am Sun, 10 Nov 2019 14:33:03 +0100 schrieb Gabor Boros via lazarus : > Hi All, > > I try to extend TSynSQLSyn with keyword lists of Firebird 2.5, 3.0 > and 4.0. Every keyword included in one list/version and used as tKey > (e.g. sqlFirebird30: EnumerateKeywords(Ord(tkKey), Firebird30KW, >