[Lazarus] Object Inspector/Favorites tab, base class and adding properties from code?

2014-07-17 Thread Bruno HR
Hello all, about the Favorites tab in the Object Inspector, why do we need to select a base class for a property to add to Favorites? And why do we need to choose a base class also when removing a property from Favorites? Also, is there a way of declaring a property/event as Favorite in its

Re: [Lazarus] Object Inspector/Favorites tab, base class and adding properties from code?

2014-07-17 Thread Mattias Gaertner
On Thu, 17 Jul 2014 10:13:31 -0300 Bruno HR bhrei...@hotmail.com wrote: Hello all, about the Favorites tab in the Object Inspector, why do we need to select a base class for a property to add to Favorites? Only properties of instances inheriting from the class are favorites. And why do we

[Lazarus] Object Inspector

2012-09-19 Thread Howard Page-Clark
There is currently a spelling discrepancy which probably needs to be rectified in that the OI Favorites page is spelt in the US way, as is the popup context menu text that refers to it. Whereas the dialog caption and interior label of the Add to favourite properties dialog (and associated

Re: [Lazarus] Object Inspector

2012-09-19 Thread Graeme Geldenhuys
On 19/09/12 11:31, Howard Page-Clark wrote: Whereas the dialog caption and interior label of the Add to favourite properties dialog (and associated source code) all use the British spelling of favourite. It's a cross-language feature. The Lazarus project doesn't discriminate. ;-) Graeme.

Re: [Lazarus] Object Inspector

2012-09-19 Thread Mattias Gaertner
On Wed, 19 Sep 2012 11:38:53 +0100 Graeme Geldenhuys gra...@geldenhuys.co.uk wrote: On 19/09/12 11:31, Howard Page-Clark wrote: Whereas the dialog caption and interior label of the Add to favourite properties dialog (and associated source code) all use the British spelling of favourite.

[Lazarus] Object inspector hints ?

2012-04-30 Thread Michael Van Canneyt
Hi, The lazarus code editor shows tooltip hints about identifiers; It gets those from the sources or even fpdoc. Is there any reason why the object inspector would not be able to offer the same hints ? Properties and events are also just identifiers after all. Michael. --

Re: [Lazarus] Object inspector hints ?

2012-04-30 Thread Mattias Gaertner
On Mon, 30 Apr 2012 10:03:41 +0200 (CEST) Michael Van Canneyt mich...@freepascal.org wrote: Hi, The lazarus code editor shows tooltip hints about identifiers; It gets those from the sources or even fpdoc. Is there any reason why the object inspector would not be able to offer the same

Re: [Lazarus] Object inspector hints ?

2012-04-30 Thread michael . vancanneyt
On Mon, 30 Apr 2012, Mattias Gaertner wrote: On Mon, 30 Apr 2012 10:03:41 +0200 (CEST) Michael Van Canneyt mich...@freepascal.org wrote: Hi, The lazarus code editor shows tooltip hints about identifiers; It gets those from the sources or even fpdoc. Is there any reason why the object

Re: [Lazarus] Object inspector hints ?

2012-04-30 Thread Howard Page-Clark
On 30/4/12 9:23, Mattias Gaertner wrote: On Mon, 30 Apr 2012 10:03:41 +0200 (CEST) Michael Van Canneytmich...@freepascal.org wrote: Hi, The lazarus code editor shows tooltip hints about identifiers; It gets those from the sources or even fpdoc. Is there any reason why the object inspector

Re: [Lazarus] Object inspector hints ?

2012-04-30 Thread Mattias Gaertner
On Mon, 30 Apr 2012 09:50:30 +0100 Howard Page-Clark h...@talktalk.net wrote: On 30/4/12 9:23, Mattias Gaertner wrote: On Mon, 30 Apr 2012 10:03:41 +0200 (CEST) Michael Van Canneytmich...@freepascal.org wrote: Hi, The lazarus code editor shows tooltip hints about identifiers; It

Re: [Lazarus] Object inspector hints ?

2012-04-30 Thread Hans-Peter Diettrich
Howard Page-Clark schrieb: Right click on OI: enable Show hints There is also the (optional) OI information box which displays limited documentation. However, it is often very limited. e.g. TControl.OnClick Event Handler for mouse click which hardly aids a programmer looking for more

Re: [Lazarus] Object inspector hints ?

2012-04-30 Thread Howard Page-Clark
On 30/4/12 11:54, Hans-Peter Diettrich wrote: Howard Page-Clark schrieb: What's the use of such additional information in OI? You can let the OI create the event handler for you, no need to bother with parameters here. For people who use a stable release all the time, set up according to

Re: [Lazarus] Object inspector hints ?

2012-04-30 Thread Richard Mace
On 30 April 2012 09:23, Mattias Gaertner nc-gaert...@netcologne.de wrote: On Mon, 30 Apr 2012 10:03:41 +0200 (CEST) Michael Van Canneyt mich...@freepascal.org wrote: Hi, The lazarus code editor shows tooltip hints about identifiers; It gets those from the sources or even fpdoc.

Re: [Lazarus] Object Inspector off screen

2012-01-17 Thread wildfire
Anyway, it appears lazarus has remembered my previous window settings and the object inspector window is off screen, I can’t see any way to bring it back. Never mind I found it in IDE options, sorry for wasting your time.-- ___ Lazarus mailing list

[Lazarus] Object Inspector odd behavior (ComboBox issue)

2011-02-14 Thread John Stoneham
My setup: LCL=carbon (OS X), I build svn daily, and fpc is 2.5.1 from svn A couple of weeks ago, I noticed that *single*-clicking in the Object Inspector actually increments the value of any property displayed with ComboBoxes. That can't be the intended behavior, can it? And then, you can't

Re: [Lazarus] Object Inspector odd behavior (ComboBox issue)

2011-02-14 Thread dmitry boyarintsev
Related to TComboBox, the behavior on carbon (not sure about other platforms) is not consistent. If it's a read-only list, single-clicking on an item in the drop-down list selects it and the list goes back up. If it's not read-only, you must double-click on a list item to make the list go

Re: [Lazarus] Object Inspector odd behavior (ComboBox issue)

2011-02-14 Thread John Stoneham
On Mon, Feb 14, 2011 at 12:07 PM, dmitry boyarintsev skalogryz.li...@gmail.com wrote: I'm afraid this is how Apple designed Carbon (intentionally i suspect to force everyone to use Cocoa). You can actually test by using Interface Builder. Create a window and place a combobox on it. Add some

Re: [Lazarus] Object Inspector odd behavior (ComboBox issue)

2011-02-14 Thread John Stoneham
On Mon, Feb 14, 2011 at 12:14 PM, John Stoneham captnjamesk...@gmail.comwrote: However, I'm still curious as to why on earth Object Inspector increments properties on *single*-click. That is just annoying the hell out of me. You can't even click to see the list of available properties without

Re: [Lazarus] Object Inspector odd behavior (ComboBox issue)

2011-02-14 Thread John Stoneham
On Mon, Feb 14, 2011 at 12:30 PM, John Stoneham captnjamesk...@gmail.comwrote: On Mon, Feb 14, 2011 at 12:14 PM, John Stoneham captnjamesk...@gmail.comwrote: However, I'm still curious as to why on earth Object Inspector increments properties on *single*-click. That is just annoying the

[Lazarus] Object Inspector method find error

2009-05-23 Thread a . sanguigni
Hi all,just for one project I have the following error when I try to go into an event clicking on the object inspector:/home/antonio/freepascal/fpc/rtl/objpas/classes/classesh.inc(1557,55) Error: "end" for class/object not foundI'm using:- Lazarus 0.9.27 r20139M FPC 2.3.1 i386-linux-gtk 2

Re: [Lazarus] Object Inspector method find error

2009-05-23 Thread Mattias Gaertner
On Sat, 23 May 2009 12:34:36 +0200 (CEST) a.sangui...@gmail.com wrote: Hi all, just for one project I have the following error when I try to go into an event clicking on the object inspector: /home/antonio/freepascal/fpc/rtl/objpas/classes/classesh.inc(1557,55) Error: end for