Re: [Lazarus] How to display html contents?

2015-05-10 Thread Dmitry Boyarintsev
On Sun, May 10, 2015 at 6:21 AM, Giuliano Colla < giuliano.co...@fastwebnet.it> wrote:. > > Actually I'm porting to Lazarus a collection of Kylix applications, which > where using a TTextViewer component, which is nothing but a wrapper for > QTextViewer. Kylix used Qt3, but I see that the same comp

Re: [Lazarus] How to display html contents?

2015-05-10 Thread Martin
Anchors on the same page are no problem. You could still do the steps 1 to 5 below and whether the anchor is on the same page or not it would work. However step 2 would be a waste of processing power if the anchor is already on the same page, in that case just omit steps 2 and 3. 1. Split the

Re: [Lazarus] Some issues with openocd and gdbmidebugger

2015-05-10 Thread Martin Frb
This is the GDBMIServerDebugger? On 10/05/2015 14:08, Michael Ring wrote: After the breakpoint for main is set and -exec-continue is called (I tried both the async and not async version): @@ -5007,15 +5030,20 @@ // RUN DefaultTimeOut := 0; - if not ExecuteCommand(Cmd, R, [c

[Lazarus] Some issues with openocd and gdbmidebugger

2015-05-10 Thread Michael Ring
Over the weekend I tried to see if it is possible to change from my current approach of using cgdb for debugging embedded projects back to lazarus. So I took my old patches and for lazarus and based on the patches I wrote a new debugger unit for openocd. So far so good, but I am having an is

Re: [Lazarus] How to display html contents?

2015-05-10 Thread Giuliano Colla
Il 09/05/2015 21:17, vfclists . ha scritto: If you are on Linux and you are okay with Qt you might consider the QT webkit demo. It will probably make things way easier for you. It might prove a nice way to learn out to use the Qt 4.8.x series directly. Actually I'm porting to Lazarus a colle

Re: [Lazarus] How to display html contents?

2015-05-10 Thread Giuliano Colla
Il 09/05/2015 20:40, Martin ha scritto: To get an anchor link to show correctly (e.g. somefile.html#readthisbit), I discovered you need to do the following - note the magic moment is at step 3. Thanks a lot for the tip. Unfortunately what I need is to provide a link to anchors on the same pag

Re: [Lazarus] How are TProcess.Input and TProcess.XtermProgram used?

2015-05-10 Thread Michael Van Canneyt
On Sat, 9 May 2015, vfclists . wrote: How are TProcess.Input and TProcess.XtermProgram used? The xtermprogram is used to run the actual program, if the poNewConsole option is used. Is it possible to test if a program is waiting for input in order to send it some input, such as keystrokes