[Lazarus] Lazarus Icon Size

2024-09-05 Thread Wolf via lazarus
My computer uses a 43 inch TV screen for a monitor, running at 4096x2160 resolution. This is an appropriate resolution to run programs likeĀ  Firefox or LibreOffice, since its icon sizes are customizable. For my Lazarus 3.4, dated 2024-05-26, I get icons like these i.e. an individual icon is 3

Re: [Lazarus] How to list available serial ports on Linux?

2020-10-06 Thread Wolf via lazarus
By submitting your question to DuckDuckGo, I found https://stackoverflow.com/questions/2530096/how-to-find-all-serial-devices-ttys-ttyusb-on-linux-without-opening-them To quote: |To see which tty's are currently in use, you can simply look into the file /proc/tty/drivers: and get a rather shor

Re: [Lazarus] AT&T assembler syntax

2018-03-30 Thread Wolf via Lazarus
These are my options settings, following the recipe quoted. Where do I pass them to gdb? Thanks Wolf On 31/03/2018 01:04, leledumbo via Lazarus wrote: Any suggestions on how to make it work? Open View->Debug Windows->Debug Output, is your -eval-command parameter passed to gdb? -- Sent fro

[Lazarus] AT&T assembler syntax

2018-03-29 Thread Wolf via Lazarus
Is there a way to change the syntax for the Lazarus Assembler window (View->Debug Windows->Assembler) to display Intel syntax? https://stackoverflow.com/questions/19149105/how-to-disable-att-enable-intel-syntax-in-lazarus-debug-window says: In the section Tools-Debugger->General->Debugger_Star

Re: [Lazarus] Form events firing order and count

2018-02-16 Thread Wolf via Lazarus
When I was in the same situation, I modified each procedure / function to read procedure xxx begin {first line} write('procedure xx opened'); ... {last line} writeln('procedure xxx closed'); end; This produced on the console an easy trace of who called whom, and how they were stacked. W

Re: [Lazarus] Lazarus Console text

2018-02-11 Thread Wolf via Lazarus
On 11/02/2018 22:06, Martin Frb via Lazarus wrote: On 10/02/18 22:36, Wolf via Lazarus wrote: On 11/02/2018 00:37, Martin Frb via Lazarus wrote: Source code (if you want to create a patch) is in debugger/pseudoterminaldlg.pp pseudoterminaldlg.pp defines a class TPseudoConsoleDlg, which

Re: [Lazarus] Lazarus Console text

2018-02-10 Thread Wolf via Lazarus
On 11/02/2018 00:37, Martin Frb via Lazarus wrote: On 10/02/18 08:10, Wolf via Lazarus wrote: What must I do to change font on the Lazarus console - not the Kubuntu console - to a monospace font, and how do I change font color there? You refer to the Console / "Terminal Output"

[Lazarus] Lazarus Console text

2018-02-09 Thread Wolf via Lazarus
Hi What must I do to change font on the Lazarus console - not the Kubuntu console - to a monospace font, and how do I change font color there? Thanks Wolf -- ___ Lazarus mailing list Lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listi

Re: [Lazarus] Documentation in Lazarus

2017-10-03 Thread Wolf via Lazarus
Thank you, Alexey, Graeme, Michael, for a share of your experience. If I understand you aright, what I want to do is best done as a two-step process: firstly write the documentation in an editor capable of saving it as HTML, then as a second step render the HTML file onto a Lazarus form. As an

[Lazarus] Documentation in Lazarus

2017-10-01 Thread Wolf via Lazarus
Hi, What is the smallest, most compact system for software documentation that can handle text, graphics, and preferably mathematical formulae as well? I am looking for something that can eventually be presented on a form, documenting not just what my code does, but, more importantly, the "why

Re: [Lazarus] Is this a bug?

2017-06-19 Thread Wolf via Lazarus
dumpheap" procedure, which means I can follow heap usage throughout my program, without any interference from "halt". --Problem solved--. wolf On 18/06/17 10:07, Joost van der Sluis via Lazarus wrote: Op 16-06-17 om 22:58 schreef Wolf via Lazarus: now I understand the real bug is

Re: [Lazarus] Is this a bug?

2017-06-16 Thread Wolf via Lazarus
/06/17 23:27, Mattias Gaertner via Lazarus wrote: On Fri, 16 Jun 2017 21:43:38 +1200 Wolf via Lazarus wrote: If I understand you correctly, because 1. command line parameters are internally treated as a null-terminated string (i.e. AnsiString), a call to ParamStr() implies a heap allocation and

Re: [Lazarus] Is this a bug?

2017-06-16 Thread Wolf via Lazarus
: On Fri, 16 Jun 2017 20:36:54 +1200 Wolf via Lazarus wrote: Now I am nicely confused: If halt does call finalization sections, isn't then all heap space requested by the system unit supposed to be freed as well? The system unit is special. It is loaded even before the heap manager is initia

Re: [Lazarus] Is this a bug?

2017-06-16 Thread Wolf via Lazarus
9:12, Wolf via Lazarus wrote: If the call to "halt;" is commented out, there is no memory leak reported. Is this intentional? Yes, halt kills the program without finalizing anything. No code is executed afterwards. Everything that is allocated at the time Halt is executed results in a mem

[Lazarus] Is this a bug?

2017-06-16 Thread Wolf via Lazarus
The following program produces these two memory leaks: Heap dump by heaptrc unit 2 memory blocks allocated : 188/208 0 memory blocks freed : 134/144 2 unfreed memory blocks : 54 True heap size : 32768 True free heap : 32320 Should be : 32448 Call trace for block $77FF31A0 size 27 Call