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 Bui

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, Eclips

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

2017-01-30 Thread Mattias Gaertner via Lazarus
On Mon, 30 Jan 2017 12:37:16 +0100 (CET) Michael Van Canneyt 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 deduce what the mi

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 deduce what the missing > proper

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 intellig

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 m

[Lazarus] Feature Request: more intelligent code completion

2017-01-30 Thread Graeme Geldenhuys via Lazarus
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 intelligent) code completion. I have this code: =

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 bug

Re: [Lazarus] SVG Editor or Viewer

2017-01-30 Thread Adrian Veith via Lazarus
Hi, there is the Anti Grain Geometry for Pascal - in the examples there is a smal svgtest - maybe this helps. https://github.com/CWBudde/AggPasMod Adrian. Am 30.01.2017 um 05:39 schrieb Lars via Lazarus: > Does anyone know of any Lazarus projects or code that views SVG files... > > I remember t

Re: [Lazarus] SVG Editor or Viewer

2017-01-30 Thread Lars via Lazarus
On Sun, January 29, 2017 11:37 pm, Sandro Cumerlato wrote: > Hello Lars, > I think you are talking about LazPaint: https://github.com/bgrabitmap > > This is a great program, loads up super fast. Just what I needed. I did try this before AFAIR but forgot. But it won't open SVG images... yet Googl