Re: [Lazarus] Accents in IDE and my apps

2013-07-07 Thread Éderson Cássio
Em 07-07-2013 21:40, Éderson Cássio escreveu: Em 07-07-2013 15:54, Mattias Gaertner escreveu: On Sun, 07 Jul 2013 15:22:53 -0300 Éderson Cássio wrote: When I type accented letters in the IDE or in my forms, they appear duplicated: áá êê íí õõ üü ... Searching the bugtracker, I found this:htt

Re: [Lazarus] Accents in IDE and my apps

2013-07-07 Thread Éderson Cássio
Em 07-07-2013 15:54, Mattias Gaertner escreveu: On Sun, 07 Jul 2013 15:22:53 -0300 Éderson Cássio wrote: When I type accented letters in the IDE or in my forms, they appear duplicated: áá êê íí õõ üü ... Searching the bugtracker, I found this:http://bugs.freepascal.org/view.php?id=15688 It s

Re: [Lazarus] Code Completion: spaces around ':='

2013-07-07 Thread Marc Santhoff
Am Sonntag, den 07.07.2013, 16:41 +0200 schrieb Vojtěch Čihák: > Hi, > Tools -> Options... -> (node) Codetools -> (node) Space > > Insert space in front of: Symbol > Insert space after: Symbol That did the trick, thank you both! -- Marc Santhoff -- __

Re: [Lazarus] Accents in IDE and my apps

2013-07-07 Thread Mattias Gaertner
On Sun, 07 Jul 2013 15:22:53 -0300 Éderson Cássio wrote: > When I type accented letters in the IDE or in my forms, they appear > duplicated: áá êê íí õõ üü ... > > Searching the bugtracker, I found > this:http://bugs.freepascal.org/view.php?id=15688 > > It seems to be a GTK2 problem, in the C

[Lazarus] Accents in IDE and my apps

2013-07-07 Thread Éderson Cássio
When I type accented letters in the IDE or in my forms, they appear duplicated: áá êê íí õõ üü ... Searching the bugtracker, I found this:http://bugs.freepascal.org/view.php?id=15688 It seems to be a GTK2 problem, in the CheckDeadKey procedure (lcl/interfaces/gtk2/gtk2proc.inc). I tried to

Re: [Lazarus] Code Completion: spaces around ':='

2013-07-07 Thread Mattias Gaertner
On Sun, 07 Jul 2013 14:51:15 +0200 Marc Santhoff wrote: > Hi, > > as said in the subject, if hitting CTRL-space and selecting a property > or object variable the code inserted look like this: > > "if fHasStatusBar then StatusBar.Visible:=;" > > What I'd like to have is like that: > > "if

Re: [Lazarus] Code Completion: spaces around ':='

2013-07-07 Thread Vojtěch Čihák
Hi, Tools -> Options... -> (node) Codetools -> (node) Space   Insert space in front of: Symbol Insert space after: Symbol   Vojtěch  __ Od: "Marc Santhoff" Komu: Datum: 07.07.2013 14:54 Předmět: [Lazarus] Code Completion: spaces around

[Lazarus] Code Completion: spaces around ':='

2013-07-07 Thread Marc Santhoff
Hi, as said in the subject, if hitting CTRL-space and selecting a property or object variable the code inserted look like this: "if fHasStatusBar then StatusBar.Visible:=;" What I'd like to have is like that: "if fHasStatusBar then StatusBar.Visible := ;" How can this behaviour get tuned?

Re: [Lazarus] StringGrid

2013-07-07 Thread Vojtěch Čihák
Try this:   procedure TForm1.StringGrid1PrepareCanvas(sender: TObject; aCol, aRow: Integer; aState: TGridDrawState); begin   if aCol = aRow then (Sender as TStringGrid).Canvas.Font.Style := [fsBold]; end;   Vojtěch  __ Od: "Kamen Ketev