Re: [Lazarus] What is the estimated creation time of fixes_1_8 branch?

2017-02-01 Thread Mattias Gaertner via Lazarus
On Wed, 1 Feb 2017 11:55:04 +0100 Gabor Boros via Lazarus wrote: > Hi All, > > I want to switch from fixes_1_6 to ... Is the fixes_1_8 branch will be > created in the near future? There is no date yet for 1.8. Probably 1.8 will be released soon after FPC 3.0.2.

Re: [Lazarus] "protected" as class property incorrectly highlighted

2017-02-01 Thread Mattias Gaertner via Lazarus
On Wed, 1 Feb 2017 13:00:23 +0100 Torsten Bonde Christiansen via Lazarus wrote: >[...] > As "protected" is not a reserved word > (http://www.freepascal.org/docs-html/current/ref/refse3.html#x11-11.3) > in any modes I think this is a bug in the highlighter.

Re: [Lazarus] Synedit tab

2017-02-06 Thread Mattias Gaertner via Lazarus
On Mon, 6 Feb 2017 12:22:06 +0100 Michael Schnell via Lazarus wrote: >[...] > (Regarding Packages there seems to be some ambiguity with "installed" > "used" and "loaded". ) I hope this helps: http://wiki.lazarus.freepascal.org/Lazarus_Packages#Package_states

Re: [Lazarus] TDataModule for non-database non-visual components

2017-02-06 Thread Mattias Gaertner via Lazarus
On Mon, 6 Feb 2017 21:17:48 +0200 Kostas Michalopoulos via Lazarus wrote: > Hi all, > > A simple question, is it ok to use a TDataModule for non-visual components > that can be shared among forms (and generally contain app-wide stuff)? Yes. That's their purpose.

Re: [Lazarus] DateTimeToStr gives an invalid format string error when closing an rdp session

2017-01-24 Thread Mattias Gaertner via Lazarus
On Tue, 24 Jan 2017 18:59:28 +0100 Luca Olivetti via Lazarus wrote: > El 24/01/17 a les 17:50, Luca Olivetti via Lazarus ha escrit: > > Hello, > > > > I'm trying to debug a strange thing I saw in production (the main > > symptom, but not the only one, is a TSynEdit

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] Format code on Save

2017-01-25 Thread Mattias Gaertner via Lazarus
On Wed, 25 Jan 2017 13:25:56 + Graeme Geldenhuys via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > On 2017-01-25 13:15, Mattias Gaertner via Lazarus wrote: > > I can add an event called before saving a source editor file. > > Would that help you? > > I

Re: [Lazarus] Format code on Save

2017-01-25 Thread Mattias Gaertner via Lazarus
On Wed, 25 Jan 2017 11:28:21 + Graeme Geldenhuys via Lazarus wrote: > Hi, > > As the subject lines says. If you set up the Jedi Code Formatting > options, is there a way to tell Lazarus to automatically format the unit > when you Ctrl+S (Save)? Eclipse IDE

Re: [Lazarus] Saving namespace files on WinXP

2017-01-27 Thread Mattias Gaertner via Lazarus
On Fri, 27 Jan 2017 17:19:39 -0200 "Marcos Douglas B. Santos via Lazarus" wrote: > I don't know if Lazarus won't support WinXP in the near future, but I > would like to notify a bug: > If you try to save a file that has a "namespace" like > "foo.bar.unit1.pas" the

Re: [Lazarus] Check for 'default' font

2017-02-20 Thread Mattias Gaertner via Lazarus
On Mon, 20 Feb 2017 23:38:09 +0300 Alexey via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > On 20.02.2017 04:23, Mattias Gaertner via Lazarus wrote: > > Why is SameText best? > > > > Mattias > Because it's working in all cases (for ansistring it's ok, for Unic

Re: [Lazarus] How to get access to TKeyCommandRelationList via the IDE Interfaces?

2017-02-22 Thread Mattias Gaertner via Lazarus
On Wed, 22 Feb 2017 23:18:47 + Graeme Geldenhuys via Lazarus wrote: >[...] > But if I include the KeyMapping unit in my add-on package's uses clause, > that unit can't be found. Yes, an IDE package can only use the IDEIntf units, not the IDE code itself. >

Re: [Lazarus] How to get access to TKeyCommandRelationList via the IDE Interfaces?

2017-02-22 Thread Mattias Gaertner via Lazarus
On Wed, 22 Feb 2017 23:53:54 + Graeme Geldenhuys via Lazarus wrote: >[...] > Umm, that's exactly what I tried, but in never finds the command. >[...] You can list all registered names with for c:=0 to IDECommandList.CategoryCount-1 do begin

Re: [Lazarus] Check for 'default' font

2017-02-19 Thread Mattias Gaertner via Lazarus
On Sat, 18 Feb 2017 03:44:46 +0300 Alexey via Lazarus wrote: > I find all places of 'default' in Laz- > > Here you see all variants... :( Pls, make one variant. SameText(..., > 'default') is best. Why is SameText best? Mattias > if AnsiCompare(..,

Re: [Lazarus] Format code on Save

2017-02-23 Thread Mattias Gaertner via Lazarus
On Thu, 23 Feb 2017 00:40:13 + Graeme Geldenhuys via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > On 2017-01-27 14:37, Mattias Gaertner via Lazarus wrote: >[...] > > LazarusIDE.AddHandlerOnSaveEditorFile(@YourEvent); > > > A bit late, but thank you for addi

Re: [Lazarus] Format code on Save

2017-02-23 Thread Mattias Gaertner via Lazarus
On Thu, 23 Feb 2017 08:41:06 + Graeme Geldenhuys via Lazarus wrote: >[...] > > Check parameter SaveStep. > > I tried both sefsBeforeWrite and sefsAfterWrite - it made no difference > to the issue of the method being called twice. > > Also, what does the

Re: [Lazarus] Run parameters

2017-02-11 Thread Mattias Gaertner via Lazarus
On Sat, 11 Feb 2017 11:22:23 +0100 (CET) Michael Van Canneyt via Lazarus wrote: > Hello, > > Currently, the options specified in 'Run - Parameters' are stored in the > project.lpi file. > > I have always found this a strange choice. > What is the rationale for

Re: [Lazarus] Widget set definitions

2017-02-13 Thread Mattias Gaertner via Lazarus
On Mon, 13 Feb 2017 09:23:35 + Mark Morgan Lloyd via Lazarus wrote: > I've got a bit of diagnostic code that I add to most programs that > retrieves things like Subversion revision numbers and link-time build > ID. It also contains > > (*$IFDEF LCLQT *) >

Re: [Lazarus] Animation library

2017-02-28 Thread Mattias Gaertner via Lazarus
On Tue, 28 Feb 2017 13:16:57 +0100 José Mejuto via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > El 27/02/2017 a las 23:49, Mattias Gaertner via Lazarus escribió: > > > Instead of Repaint it should use Invalidate. > > Hello, > > Invalidate queues a paint

[Lazarus] Lazarus Release 1.6.4

2017-03-01 Thread Mattias Gaertner via Lazarus
The Lazarus team is glad to announce the release of Lazarus 1.6.4. This is a bugfix release. This release was built with FPC 3.0.2. The previous release Lazarus 1.6.2 was built with FPC 3.0.0. Here is the list of fixes for Lazarus 1.6.x: http://wiki.freepascal.org/Lazarus_1.6_fixes_branch Here

Re: [Lazarus] Animation library

2017-02-27 Thread Mattias Gaertner via Lazarus
On Mon, 27 Feb 2017 13:55:47 +0100 José Mejuto via Lazarus wrote: >[...] > Finally I end with and alpha version which I wish to share with the > community to get a bit of feedback before include it in Lazarus CCR or > maybe in LCL itself. Instead of Repaint it

Re: [Lazarus] New methods code creation

2016-09-26 Thread Mattias Gaertner via Lazarus
On Mon, 26 Sep 2016 11:06:15 -0700 Aradeonas via Lazarus wrote: > Thanks Ondrej for your works. > > You talk about various IDE options but as I searched I cant find any > options to make this message off and also from my view it makes no sense > forcing anybody to

Re: [Lazarus] lazarus 1.6+fpc 2.6.4, win32, crashes in iphtml.pas

2016-09-30 Thread Mattias Gaertner via Lazarus
On Fri, 30 Sep 2016 12:27:46 +0200 Luca Olivetti via Lazarus wrote: >[...] > > FWIW, "transplanting" the version of turbopower_ipro from lazarus 1.4.4 > > to 1.6 (and defining html_print in its lpk otherwise it doesn't compile) > > "solves" this problem. > > I

Re: [Lazarus] Can't add new form to Lazarus App

2016-09-29 Thread Mattias Gaertner via Lazarus
On Thu, 29 Sep 2016 14:26:02 -0500 "Terry A. Haimann" <te...@haimann.us> wrote: > On Thu, 2016-09-29 at 13:17 +0200, Mattias Gaertner via Lazarus wrote: > > On Thu, 29 Sep 2016 05:59:49 -0500 > > "Terry A. Haimann" <te...@haimann.us> wrote: > &g

Re: [Lazarus] Online Package Manager

2016-10-04 Thread Mattias Gaertner via Lazarus
On Tue, 4 Oct 2016 13:43:18 -0300 silvioprog via Lazarus wrote: >[...] > * rename it to something like LazGetIt or LPM (Lazarus package manager) Note: the IDE's package manager is named Lazarus package manager. Mattias --

Re: [Lazarus] Calling DrawFocusRect() outside the Paint() event

2016-10-10 Thread Mattias Gaertner via Lazarus
On Mon, 10 Oct 2016 11:56:32 +0100 Graeme Geldenhuys via Lazarus wrote: > On 2016-10-10 11:50, Michael Van Canneyt via Lazarus wrote: > > I thought lazarus did double buffering by default, so this should be so > > automatically ? > > I don't believe LCL uses

Re: [Lazarus] Can't add new form to Lazarus App

2016-09-29 Thread Mattias Gaertner via Lazarus
On Wed, 28 Sep 2016 16:49:15 -0500 "Terry A. Haimann via Lazarus" wrote: > On an old Lazarus app (Linux) today I tried to add a form and got the Do you mean add a new empty form or add an existing form? > following: > > http://www.haimann.us/Images/Test.png I

Re: [Lazarus] Run Parameters Dialog

2016-09-29 Thread Mattias Gaertner via Lazarus
On Wed, 28 Sep 2016 14:19:02 -0600 Lars via Lazarus wrote: > On Mon, September 26, 2016 11:55 pm, Juha Manninen via Lazarus wrote: > > On Tue, Sep 27, 2016 at 8:07 AM, Lars via Lazarus > > wrote: > > > >> The designer of Lazarus

Re: [Lazarus] Plivo API

2016-10-03 Thread Mattias Gaertner via Lazarus
On Mon, 3 Oct 2016 08:36:03 +0200 duilio foschi via Lazarus wrote: > Hi Mattias, > > your code shows what Plivo probably does :) Sorry. I misunderstood. I don't know if TFPHttpServer already supports HTTPS. Mattias --

Re: [Lazarus] Form resize reverted after click on component palette

2016-09-26 Thread Mattias Gaertner via Lazarus
On Mon, 26 Sep 2016 09:37:20 + Lukas Gradl via Lazarus wrote: > Hi! > > When I resize or move a form in the designer and click on a component > in the palette afterwards (to place it on the form) the change is > reverted - the form has the same size and

Re: [Lazarus] TColor and Alpha channel support

2016-09-26 Thread Mattias Gaertner via Lazarus
On Mon, 26 Sep 2016 13:09:30 +0100 Graeme Geldenhuys via Lazarus wrote: >[...] > > The idea is to use the FPColor property for alpha, but that is not > > implemented yet by the LCL interfaces. Hmm, I wonder how hard it would > > be... > > Does that also mean

Re: [Lazarus] TColor and Alpha channel support

2016-09-26 Thread Mattias Gaertner via Lazarus
On Mon, 26 Sep 2016 14:25:14 +0200 Ondrej Pokorny via Lazarus wrote: >[...] > In this case maybe this property pair would be more appropriate (?): > > Color := ...; > Alpha := ...; // property Alpha: Byte A property "Alpha" sounds like setting the alpha of the

Re: [Lazarus] LCL-GTK2 warning about TScrollBox

2016-09-25 Thread Mattias Gaertner via Lazarus
On Fri, 23 Sep 2016 11:10:13 +0100 Graeme Geldenhuys wrote: > Hi, > > I'm using a TScrollBox in a LCL-GTK2 application. When I run the > application from a console window, I see the following warning appear > multiple times. > > WARNING:

Re: [Lazarus] warning on compile

2016-09-25 Thread Mattias Gaertner via Lazarus
On Sat, 24 Sep 2016 19:50:14 + (GMT) Chris Kelling via Lazarus wrote: > On a new project, and I keep getting this warning: tubes.lpr(20,1) > Warning: "crtbeginS.o" not found, this will probably cause a linking > failure > > Linking doesn't; actually fail,

Re: [Lazarus] Can't add new form to Lazarus App

2016-09-29 Thread Mattias Gaertner via Lazarus
On Thu, 29 Sep 2016 05:59:49 -0500 "Terry A. Haimann" wrote: >[...] > > What means messed up? It's an empty form, isn't it? > > The new form and it's source will not compile unless i comment out the: > > {$I unit1.lrs} > > I tried renaming unit1 to the new unit name, but

Re: [Lazarus] Lazarus Version

2016-11-08 Thread Mattias Gaertner via Lazarus
On Tue, 8 Nov 2016 21:45:16 +0100 (CET) Michael Van Canneyt wrote: > packagename_version.p(p|pas) Ok. Although if we make it configurable, we can use it for lclversion.pas as well. >[...] > [x] Generate unit with version number Ok. Needs update when saving the

Re: [Lazarus] Exception in OnResize event handler

2016-11-07 Thread Mattias Gaertner via Lazarus
> Jürgen Hestermann via Lazarus hat am 6. > November 2016 um 13:03 geschrieben: >[...] > Then this seems to be unrelated to my problem. > It's not that the OnResize event is *not* triggered > but that it is triggered but then leads to the RaiseLoop exception.

Re: [Lazarus] Help System with Chromium Embedded component

2016-11-09 Thread Mattias Gaertner via Lazarus
On Wed, 9 Nov 2016 15:57:04 +0100 Marco van de Voort via Lazarus wrote: >[...] > The best reason to have some local (whatever how limited) widget is for IDE > popups of helptext instead of an external browser. Good point. Mattias --

Re: [Lazarus] WebAssembly

2016-11-09 Thread Mattias Gaertner via Lazarus
On Wed, 9 Nov 2016 10:38:59 +0100 Michael Schnell via Lazarus wrote: >[...] > Hence WebASM - that seems to be based on Java - might be successful in > pushing the idea of allowing for precompiled byte code embedded in HTML. WebAsm <> WebAssembly. WebAsm is "A

Re: [Lazarus] CCR, how to send files?

2016-11-08 Thread Mattias Gaertner via Lazarus
On Fri, 28 Oct 2016 11:58:31 +0300 Alexey via Lazarus wrote: > Hi > I try to send mail to Vincent S, he is unreachable, mail cannot send. > How to send my files to CCR? Has Vincent answered in the meantime? Mattias --

Re: [Lazarus] ctrl-c code completion

2016-11-08 Thread Mattias Gaertner via Lazarus
On Tue, 8 Nov 2016 13:10:40 +0100 (CET) Michael Van Canneyt via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > On Tue, 8 Nov 2016, Mattias Gaertner via Lazarus wrote: > > > On Sun, 6 Nov 2016 18:05:39 +0100 (CET) > > Michael Van Canneyt via Lazarus <lazarus@l

Re: [Lazarus] ctrl-c code completion

2016-11-08 Thread Mattias Gaertner via Lazarus
On Tue, 8 Nov 2016 13:00:44 + Graeme Geldenhuys via Lazarus wrote: >[...] > I can confirm, I've seen this quite a few times recently too. > > Not sure if this is related: > Another way to reproduce this is to change the parameters of two > overloaded methods

Re: [Lazarus] WebAssembly

2016-11-10 Thread Mattias Gaertner via Lazarus
On Thu, 10 Nov 2016 17:40:03 -0700 Lars via Lazarus wrote: >[...] > I thought the idea of web assembly was not to compile to javascript, but > to compile to byte code.. Yes, Javascript compatible bytecode. Keep in mind that the vendors are still experimenting. So

Re: [Lazarus] Help System with Chromium Embedded component

2016-11-10 Thread Mattias Gaertner via Lazarus
On Thu, 10 Nov 2016 18:11:46 -0700 Lars via Lazarus wrote: >[...] > It's amazing someone hasn't thought of a web server that works off line, > that uses no ports, and just runs as some kind of plain Exe not using any > http port... Not sure if this is an absurd

Re: [Lazarus] Does closing a form hide it or free it?

2016-11-05 Thread Mattias Gaertner via Lazarus
>  if FDatabasesDialog = nil then >     FDatabasesDialog := > TDatabasesForm(Screen.FindForm(TDatabasesForm.ClassName)); FindForm finds a form by Name, not by ClassName. Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] Trunk - Index Out Of Bounds error

2016-10-19 Thread Mattias Gaertner via Lazarus
On Tue, 18 Oct 2016 13:17:03 +0100 Graeme Geldenhuys via Lazarus wrote: > Hi, > > I've just upgraded to Lazarus Trunk. If I now add a package dependency > to my project I get an index out of bounds error. I don't see the > package add - in the Project Inspector

Re: [Lazarus] Windows and german Umlauts: why do i have to PWideChar(UTF8Decode(String)) and not UTF8ToAnsi(String)

2016-10-18 Thread Mattias Gaertner via Lazarus
On Tue, 18 Oct 2016 10:46:59 +0200 Landmesser John via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > Am 18.10.2016 um 09:36 schrieb Mattias Gaertner via Lazarus: > > That is NOT the same as PWideChar(UTF8Decode(String))? > > Obviously, because one produces an 8-bit stri

Re: [Lazarus] Windows and german Umlauts: why do i have to PWideChar(UTF8Decode(String)) and not UTF8ToAnsi(String)

2016-10-18 Thread Mattias Gaertner via Lazarus
On Tue, 18 Oct 2016 09:15:15 +0200 Landmesser John via Lazarus wrote: > I know how to deal with german Umlauts but I would like to understand. > > Think of a *.csv file that contains strings like "Grünberg" and that > has to be opened in Excel ( Office 2003 ). >

Re: [Lazarus] How to use strings properly with fixes_1_6 and FPC 3.0.0?

2016-10-22 Thread Mattias Gaertner via Lazarus
On Sat, 22 Oct 2016 13:25:30 +0300 Juha Manninen via Lazarus wrote: >[...] > I guess the biggest complexity is in glyphs and ligatures. I still > don't understand their details. There is nothing to understand. Some languages have irregular letters. Same as English

Re: [Lazarus] How to use strings properly with fixes_1_6 and FPC 3.0.0?

2016-10-22 Thread Mattias Gaertner via Lazarus
On Sat, 22 Oct 2016 12:13:04 +0200 Jürgen Hestermann via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > Am 2016-10-22 um 10:53 schrieb Mattias Gaertner via Lazarus: > > Maybe you mean ligatures? Many languages have them, even German: > > https://en.wikipedia.org/wiki

Re: [Lazarus] Help System with Chromium Embedded component

2016-10-22 Thread Mattias Gaertner via Lazarus
On Fri, 21 Oct 2016 12:13:32 +0100 Graeme Geldenhuys via Lazarus wrote: >[...] > Take the Free Pascal CHM help as an example - it is horrific looking. > The fpdoc's HTML output writer was clearly designed for online HTML > usage with popup browser windows and

Re: [Lazarus] How to use strings properly with fixes_1_6 and FPC 3.0.0?

2016-10-23 Thread Mattias Gaertner via Lazarus
On Sun, 23 Oct 2016 11:31:00 +0200 Jürgen Hestermann via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > Am 2016-10-22 um 22:38 schrieb Mattias Gaertner via Lazarus: > > Languages don't care about programmers. > > True. > But Unicode should have cared. > It was ma

Re: [Lazarus] TThread.Synchronize

2016-10-25 Thread Mattias Gaertner via Lazarus
On Tue, 25 Oct 2016 15:02:06 +0200 LacaK via Lazarus wrote: > >> I do not call CheckSynchronize nor ProcessMessages in my application. > >> So only any LCL component or widget set can call it in background ? > > > > It should be easy for you to set a breakpoint

Re: [Lazarus] TThread.Synchronize

2016-10-25 Thread Mattias Gaertner via Lazarus
On Tue, 25 Oct 2016 13:37:03 +0200 Michael Schnell via Lazarus wrote: > > If you don't call CheckSynchronize within MyForm.MyMethod then yes. > IMHO the (hardly documented) CheckSynchronize should not be called > directly by an application that uses a Widget

Re: [Lazarus] How to use strings properly with fixes_1_6 and FPC 3.0.0?

2016-10-22 Thread Mattias Gaertner via Lazarus
On Sat, 22 Oct 2016 02:12:34 +0100 Martin Frb via Lazarus wrote: >[...] > It is my understanding (but I do not know for sure) that in some > languages (such as Arabic) certain letter combinations form a single > glyph (afaik/google see

Re: [Lazarus] How to use strings properly with fixes_1_6 and FPC 3.0.0?

2016-10-24 Thread Mattias Gaertner via Lazarus
On Mon, 24 Oct 2016 14:35:28 +0200 Michael Schnell wrote: >[...] but even trying to find out a very short information is identical is not decently possible. >[...] > I meant to point out exactly this ambiguity: > > identically coded vs. identically looking (e.g. combining

Re: [Lazarus] How to use strings properly with fixes_1_6 and FPC 3.0.0?

2016-10-21 Thread Mattias Gaertner via Lazarus
On Fri, 21 Oct 2016 11:29:36 +0200 Gabor Boros via Lazarus wrote: > 2016. 10. 21. 10:24 keltezéssel, Juha Manninen via Lazarus írta: > > A "character" in Unicode is an ambiguous term. > > Often the good old byte (codeunit) access is very useful. > > See: > >

Re: [Lazarus] {Spam?} Re: Modal windows on Cocoa

2016-11-14 Thread Mattias Gaertner via Lazarus
On Mon, 14 Nov 2016 09:01:03 +0100 Ondrej Pokorny via Lazarus wrote: > On 14.11.2016 8:18, Michael Van Canneyt via Lazarus wrote: > > Good news. When is 1.6.2 expected ? > > It's been already tagged so expect it soon. 1.6.2 took so long because > we waited for

Re: [Lazarus] Is the TODO list working?

2016-11-23 Thread Mattias Gaertner via Lazarus
On Wed, 23 Nov 2016 16:15:39 -0200 "Marcos Douglas B. Santos via Lazarus" wrote: >[...] > Perhaps search in all path that project uses. > I have many projects with no unit included. I just point paths. It now searches in all used project units, excluding used

Re: [Lazarus] Is the TODO list working?

2016-11-23 Thread Mattias Gaertner via Lazarus
On Tue, 22 Nov 2016 22:34:30 +0100 Bart via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > On 11/22/16, Mattias Gaertner via Lazarus <lazarus@lists.lazarus-ide.org> > wrote: > > > http://wiki.lazarus.freepascal.org/IDE_Window:_ToDo_List > > Most of my ToDo'

Re: [Lazarus] Clarification about VirtualTreeView repositories (lazarus-ccr/virtualtreeview-new deprecation)

2016-11-22 Thread Mattias Gaertner via Lazarus
On Tue, 22 Nov 2016 14:28:31 -0300 Luiz Americo Pereira Camara via Lazarus wrote: > Currently there are three repositories of VirtualTreeView LCL port. > > In Lazarus-CCR: > > virtualtreeview: first port, long unmaintained > virtualtreeview-new: original

Re: [Lazarus] Is the TODO list working?

2016-11-22 Thread Mattias Gaertner via Lazarus
On Mon, 21 Nov 2016 15:20:52 -0300 silvioprog via Lazarus wrote: > Oops, > > On Mon, Nov 21, 2016 at 3:14 PM, silvioprog wrote: > [...] > > > > ... it seems the TODO list windows isn't working, however I don't know ... > > > > I meant:

Re: [Lazarus] stale pipe workarounds

2016-11-25 Thread Mattias Gaertner via Lazarus
On Sun, 20 Nov 2016 01:01:13 -0500 Andrew Haines via Lazarus wrote: >[...] > FPC now has this stale pipe detection included. The fix was added to the > code lazarus uses until the next official version of FPC was released > and went into the develop version of

Re: [Lazarus] Non-visual component tray

2016-11-28 Thread Mattias Gaertner via Lazarus
On Mon, 28 Nov 2016 11:19:32 +0100 Maciej Izak via Lazarus wrote: > 2016-11-28 11:01 GMT+01:00 Graeme Geldenhuys via Lazarus < > lazarus@lists.lazarus-ide.org>: > > > Non-visual components don't belong on the designer form itself. > > > It is simple to do with

Re: [Lazarus] IDE, indentation after inserting from clipboard

2016-11-28 Thread Mattias Gaertner via Lazarus
On Mon, 28 Nov 2016 13:38:11 +0100 Jürgen Hestermann via Lazarus wrote: > In the editor of the IDE, when I put the cursor somewhere and paste multiple > lines from the clipboard > then only the first line is indented (starts where the cursor is) but all >

Re: [Lazarus] fpConnect

2016-11-15 Thread Mattias Gaertner via Lazarus
On Tue, 15 Nov 2016 16:37:32 +0100 Kaj Mikkelsen via Lazarus wrote: > Hi > > I need a method to tell whether a specific port is open on a remote host. Please define "open". Mattias -- ___ Lazarus mailing list

[Lazarus] Lazarus Release 1.6.2

2016-11-15 Thread Mattias Gaertner via Lazarus
The Lazarus team is glad to announce the release of Lazarus 1.6.2. This is a bugfix release. This release was built with FPC 3.0.0. The previous release Lazarus 1.6 was built with FPC 3.0.0 too. Here is the list of fixes for Lazarus 1.6.x: http://wiki.freepascal.org/Lazarus_1.6_fixes_branch

Re: [Lazarus] Lazarus Release 1.6.2

2016-11-15 Thread Mattias Gaertner via Lazarus
On Tue, 15 Nov 2016 15:11:31 -0500 Reggie Brooks via Lazarus wrote: > Can this 1.6.2 release be installed over an existing 1.6.0 installation, or > would I have to uninstall the 1.6.0 first? The dmg/deb/rpm/zip can be installed over an existing 1.6.0 without

Re: [Lazarus] Teaching Pascal at College

2016-10-21 Thread Mattias Gaertner via Lazarus
On Fri, 21 Oct 2016 03:41:49 -0600 Lars via Lazarus wrote: >[...] > The word engineer is so overloaded, that I hate it, with my guts. > > What is an engineer? A guy "who makes stuff".. which pretty much describes > every single profession. This is going

Re: [Lazarus] TThread.Synchronize

2016-10-26 Thread Mattias Gaertner via Lazarus
On Wed, 26 Oct 2016 20:23:11 +0200 Sascha Hestermann via Lazarus wrote: > Am 26.10.2016 um 12:02 schrieb LacaK via Lazarus: > > Btw. when TTimer is executing OnTimer method, which does not finishes > > until next Interval is elapsed, is again called OnTimer ? Or

Re: [Lazarus] Linking error to lazarus components

2016-10-29 Thread Mattias Gaertner via Lazarus
On Sat, 29 Oct 2016 00:07:00 -0500 Larry Dalton via Lazarus wrote: > I have an application that requires MouseAndKeyInput.lpk. I am using > lazarus_1.6-0_amd64.deb, fpc-src_3.0.0-151205_amd64.deb, on Linux Cinnamon. > I also am using it on Windows 7, and Windows

Re: [Lazarus] Wish, remove this GTK2 debug line

2016-10-11 Thread Mattias Gaertner via Lazarus
On Tue, 11 Oct 2016 04:31:58 +0300 Alexey via Lazarus wrote: > On 11.10.2016 04:29, Alexey via Lazarus wrote: > > remove that Debug line which prints error. > > I misread the subject: I mean that debug line- > > user@user-Notebook:~$ cudatext > WARNING:

Re: [Lazarus] Calling DrawFocusRect() outside the Paint() event

2016-10-10 Thread Mattias Gaertner via Lazarus
On Mon, 10 Oct 2016 10:21:48 +0100 Graeme Geldenhuys via Lazarus wrote: > Hi, > > Working on a visual report designer for the upcoming fpReport. We use > Canvas.DrawFocusRect() to draw a selection rectangle around a reporting > element (eg: a memo). We can drag

Re: [Lazarus] TPageControl cannot change parent

2016-10-14 Thread Mattias Gaertner via Lazarus
On Fri, 14 Oct 2016 12:16:25 +0200 Torsten Bonde Christiansen via Lazarus wrote: >[...] > In the designer it is not posible to use the builtin feature of "Change > Parent" (from the context menu) with a TPageControl. Other controls > seems to work fine (although

Re: [Lazarus] cleaning out the "packagefiles.xml" file

2017-01-12 Thread Mattias Gaertner via Lazarus
On Thu, 12 Jan 2017 14:44:05 + Graeme Geldenhuys via Lazarus wrote: > Hi, > > If I clean out the "packagefile.xml" file (aka the package registry) and > manually remove all obsolete package entries. if the remaining > tags are not sequential, would that

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-11 Thread Mattias Gaertner via Lazarus
On Wed, 11 Jan 2017 13:16:34 +0100 Werner Pamler via Lazarus wrote: >[...] > When running the test you'll see that the LazUtils tree is almost a > factor 2 slower than the fpc tree. (0.6 sec vs 0.36 sec for populating a > 1000x1000 table, 16 sec vs 9.8 sec for a

Re: [Lazarus] Lazarus Release 1.6.2

2016-12-03 Thread Mattias Gaertner via Lazarus
Hi, I uploaded new Debian packages. Our 'lazarus' packages clashed with the packages in the Debian repository. So I renamed them to lazarus-project_1.6.2. Mattias -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org

Re: [Lazarus] IDE main window?

2016-12-05 Thread Mattias Gaertner via Lazarus
On Sun, 4 Dec 2016 18:39:21 -0500 Donald Ziesig via Lazarus wrote: > Now that I have Lazarus 1.6.2 working :-D, I have a few questions: > > Is there any way to resize the IDE main window so that it extends the > full width of the display? Right now it only

Re: [Lazarus] "Some files have changed on disk"

2016-12-02 Thread Mattias Gaertner via Lazarus
On Fri, 2 Dec 2016 21:06:32 +0100 Werner Pamler via Lazarus wrote: > For some time, the IDE of trunk is displaying an annyoing message "Some > files have changed on disk" and prompts to select either "Ignore all > disk changes" or "Reload checked files from

Re: [Lazarus] Form Width bigger than 4096 pixels?

2016-12-02 Thread Mattias Gaertner via Lazarus
On Fri, 2 Dec 2016 01:47:44 +0300 Alexey via Lazarus wrote: > Mac has high X resolution, so please, dev's, > make thus limit more than 4K. See As pointed out, this is a limit of Sparta, not of the LCL, nor AnchorDocking. Mattias --

Re: [Lazarus] How to open the help for the selected identifier?

2016-12-02 Thread Mattias Gaertner via Lazarus
On Mon, 5 Sep 2016 12:39:49 -0300 silvioprog wrote: > Hello, > > Is there some IDE configuration to open the online help of a selected > identifier instead of the "Code Brower" window? The Code Browser opens, if the IDE can't find the declaration of the identifier. So it

Re: [Lazarus] Lazarus Release 1.6.2

2017-01-05 Thread Mattias Gaertner via Lazarus
On Thu, 5 Jan 2017 10:18:06 +0100 Péter Gábor via Lazarus wrote: > Hello! > > Today I was looking at sourceforge.net and I saw that the default > download for debian based linuxes are 1.6.0 however 1.6.2 is out more > than a month ago. > > I did not test other

Re: [Lazarus] i18n questions

2017-01-08 Thread Mattias Gaertner via Lazarus
On Sun, 08 Jan 2017 02:21:29 +0100 Darius Blaszyk via Lazarus wrote: > Hi, > > I have enabled i18n for my project and added the DefaultTranslator unit > to the lpr file. Additionally I added a unit called ResourceStrings.pas > to the project that centrally

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-10 Thread Mattias Gaertner via Lazarus
On Tue, 10 Jan 2017 12:10:31 +0100 Werner Pamler via Lazarus wrote: >[...] > If the author if the AVLTree is reading this: Is there a way to add a > group of nodes to the tree which are already ordered such that they will > be adjacent? > > The normal "Add"

Re: [Lazarus] In search of a component for holding a table of strings

2017-01-10 Thread Mattias Gaertner via Lazarus
On Tue, 10 Jan 2017 13:23:46 +0100 Bart via Lazarus wrote: > On 1/10/17, Werner Pamler via Lazarus wrote: > > > If the author if the AVLTree is reading this: Is there a way to add a > > group of nodes to the tree which are already

Re: [Lazarus] Error when building Lazarus 1.6.2 from sources on RPi3

2017-01-10 Thread Mattias Gaertner via Lazarus
On Tue, 10 Jan 2017 08:18:13 +0100 Bo Berglund via Lazarus wrote: > On Tue, 10 Jan 2017 13:52:05 +1300, Gordon Findlay via Lazarus > wrote: >[...] > I suspect that while compiling lazarus it needs access to fpc sources > as well

Re: [Lazarus] Can't find unit varutils used by variants

2016-12-18 Thread Mattias Gaertner via Lazarus
On Sat, 17 Dec 2016 22:25:50 -0300 silvioprog via Lazarus wrote: > Hello all, > > Could anybody compile a project using Lazarus from trunk? When I try to > compile any project: > > ... > Warning: Recompiling varutils, checksum changed for System >

Re: [Lazarus] Can't find unit varutils used by variants

2016-12-19 Thread Mattias Gaertner via Lazarus
On Mon, 19 Dec 2016 00:22:57 -0300 silvioprog via Lazarus wrote: >[...] > > Either you have a broken FPC install or you have a unit with the same > > name as a FPC unit. > > So it seems Lazarus can't compile its default project when it still > unsaved, after

Re: [Lazarus] Laz 1.6.3 and Frames

2016-12-23 Thread Mattias Gaertner via Lazarus
On Fri, 23 Dec 2016 14:11:30 +0100 Bo Berglund via Lazarus wrote: > On Tue, 13 Dec 2016 16:22:18 +0100, TomᚠEmresz via Lazarus > wrote: > > Is there really already Lazarus 1.6.3? > 1.6.2 was just released Nov 15, 2016 1.6.3

Re: [Lazarus] Errors reading non-English characters

2016-12-22 Thread Mattias Gaertner via Lazarus
On Thu, 22 Dec 2016 18:32:49 -0500 "David M. Lawrence via Lazarus" wrote: >[...] > I have been trying to update that model, however, and it does not read > non-English characters such as the accented "e" in "Abéché" correctly. > > In the older code, the program

Re: [Lazarus] Strange problem compiling IDE

2017-03-26 Thread Mattias Gaertner via Lazarus
On Sun, 26 Mar 2017 22:11:11 +0100 C Western via Lazarus wrote: >[...] > Warning: Recompiling Expr, checksum changed for spe {impl} > Expr.pas(78,12) Fatal: Can't find unit Expr used by FormGrid > > It was triggered by adding spe from numlib in the fpc rtl to one

Re: [Lazarus] Lazarus IDE uses old keyboard layout after OS changed it.

2017-03-29 Thread Mattias Gaertner via Lazarus
On Wed, 29 Mar 2017 11:34:44 +0100 Graeme Geldenhuys via Lazarus wrote: > Hi, > > Is this a known issues? If I run Lazarus IDE (LCL-GTK2) on either Linux > or FreeBSD, and say my keyboard layout is set to US. Now if I change the > keyboard layout to say Dvorak

Re: [Lazarus] Managing Packages with many versions

2017-03-31 Thread Mattias Gaertner via Lazarus
On Fri, 31 Mar 2017 15:03:11 -0300 "Marcos Douglas B. Santos via Lazarus" wrote: >[...] > Yes, but as Michael said, I need to have many copies of the sources. > I thought that I could use just one source and many /libs directories with > the .ppu's > > What do you

Re: [Lazarus] Managing Packages with many versions

2017-04-02 Thread Mattias Gaertner via Lazarus
On Sun, 2 Apr 2017 00:17:28 -0300 "Marcos Douglas B. Santos via Lazarus" <lazarus@lists.lazarus-ide.org> wrote: >[...] Mattias, > > On Fri, Mar 31, 2017 at 1:18 PM, Mattias Gaertner via Lazarus > <lazarus@lists.lazarus-ide.org> wrote: > >> Then, th

Re: [Lazarus] Modifying the "File -> New Unit" template

2017-04-11 Thread Mattias Gaertner via Lazarus
On Tue, 11 Apr 2017 12:02:05 +0100 Graeme Geldenhuys via Lazarus wrote: >[...] > I want to change that so the default has difference uses clauses, > defines the text encoding of the source file etc. Where does the above > code come from? Hard-coded? Yes,

Re: [Lazarus] Modifying the "File -> New Unit" template

2017-04-11 Thread Mattias Gaertner via Lazarus
On Tue, 11 Apr 2017 11:22:01 +0100 Graeme Geldenhuys via Lazarus wrote: > Hi, > > Is there a way to modify the standard “file -> new unit” code template > that is used? Or is what we see hard-coded into the Lazarus IDE executable? Right click in the IDE coolbar

Re: [Lazarus] For issue #31638 (gtk2 function that require free mem)

2017-04-20 Thread Mattias Gaertner via Lazarus
On Thu, 20 Apr 2017 07:47:29 +0300 Alexey via Lazarus wrote: > + if Assigned(Path) then > + begin > +AStr := gtk_tree_path_to_string(path); > +AIsSet := (StrToInt(AStr) = AIndex); > +if AStr <> nil then > + g_free(AStr); >

Re: [Lazarus] What library to use for DOM/XML/HTML?

2017-04-22 Thread Mattias Gaertner via Lazarus
On Sat, 22 Apr 2017 19:29:56 +0200 Martok via Lazarus wrote: > Hi all, > > I'm currently looking for a library to read and write HTML DOM trees from/to > X(HT)ML and HTML files. Is there any native pascal library that you can > recommend? > > So far I have only

Re: [Lazarus] Configure IDE dlg tab-set

2017-04-23 Thread Mattias Gaertner via Lazarus
On Sun, 23 Apr 2017 10:49:02 +0200 (CEST) Michael Van Canneyt via Lazarus wrote: >[...] > *If* something needs to be removed, I would remove the listbox. > It only takes up a lot of space, and it's mostly empty. The idea was to add more checks/issues and some

Re: [Lazarus] Projectgroups in Sourceeditor Toolbar

2017-03-11 Thread Mattias Gaertner via Lazarus
On Sat, 11 Mar 2017 09:20:14 +0100 Andreas Frieß via Lazarus wrote: > Is there an way to bring the menuentries of the projectgroups in the > toolbar of the sourceeditor ? > > If i go into the 'Toolbar Configuration', i didn't find the entries like > 'Open

Re: [Lazarus] Lazarus Release 1.6.4

2017-03-01 Thread Mattias Gaertner via Lazarus
On Wed, 1 Mar 2017 17:14:19 +0100 Jürgen Hestermann via Lazarus <lazarus@lists.lazarus-ide.org> wrote: > Am 2017-03-01 um 14:05 schrieb Mattias Gaertner via Lazarus: > > The Lazarus team is glad to announce the release of Lazarus 1.6.4. This > > is a bugfix release. > >

  1   2   3   4   5   6   7   >