Re: [Lazarus] Feature Request: more intelligent code completion

2017-01-30 Thread Ondrej Pokorny via Lazarus
Ctrl+Shift+X is a new feature for upcoming 1.8: http://wiki.freepascal.org/Lazarus_1.8.0_release_notes It cannot create properties - neither in the current class nor in a different class. It's a rather easy feature to add because CodeTools already have everything that is needed for it. The

Re: [Lazarus] Feature Request: more intelligent code completion

2017-01-30 Thread Graeme Geldenhuys via Lazarus
On 2017-01-30 11:47, Mattias Gaertner via Lazarus wrote: > > It did correctly deduce the datatype Boolean, did it not? Yes it did. > The only missing thing is to place it at the right place, Indeed. The code I wrote was "BuildProject.Verbose := ...", so it should query the data type of the

Re: [Lazarus] Feature Request: more intelligent code completion

2017-01-30 Thread Graeme Geldenhuys via Lazarus
On 2017-01-30 11:37, Michael Van Canneyt wrote: > I'm not sure that I want the IDE to modify another class than the one I am > working in at the moment, when I press "code completion" ? Well, then maybe introduce another action - an intermediate step that the developer must confirm. Again,

Re: [Lazarus] Feature Request: more intelligent code completion

2017-01-30 Thread Mattias Gaertner via Lazarus
On Mon, 30 Jan 2017 11:09:19 + Graeme Geldenhuys via Lazarus wrote: >[...] > Now the BuildProject class doesn't have a Verbose property. The > TBuildDelphiProjects class does have a FVerbose field of type boolean. > So the data type of FVerbose is known, so to

Re: [Lazarus] Feature Request: more intelligent code completion

2017-01-30 Thread Michael Van Canneyt via Lazarus
On Mon, 30 Jan 2017, Graeme Geldenhuys via Lazarus wrote: Hi, I've using the Eclipse IDE for a while now, and the developer is really spoilt with intelligent code/class completion. I'm wondering if Lazarus IDE could benefit of some of those features too. For example - improved (more

Re: [Lazarus] Running an app on boot

2017-01-30 Thread Michael Schnell via Lazarus
On 25.01.2017 11:40, Ed Murashie via Lazarus wrote: No matter what I try I get “ Gtk-WARNING **: cannot open display: “. This also happen on a Beaglebone What am I doing wrong and how can I fix it? Do you *want* a GUI ? -Michael -- ___ Lazarus

Re: [Lazarus] SVG Editor or Viewer

2017-01-30 Thread Graeme Geldenhuys via Lazarus
On 2017-01-30 04:39, Lars via Lazarus wrote: > Does anyone know of any Lazarus projects or code that views SVG files... As Adrian mentioned, AggPas (native Pascal port of Anti-Grain Geometry) supports SVG and an example is included. fpGUI's repository includes the most up to date (features and