Re: [Lazarus] Tool to convert a multiline text to a pascal string constant

2016-02-02 Thread Den
I submitted a patch at one point that never got accepted which uses {$INCLUDESTRINGFILE filename} and it includes it as a string. So you could do: Const SOME_TEXT = {$INCLUDESTRINGFILE sometext.txt}; - Dennis On 2016-02-02 03:33 PM, Luiz Americo Pereira Camara wrote: Hi is there any tool for

Re: [Lazarus] Fast GUI

2015-12-01 Thread Den
Doesn't Cairo have a hardware acceleration backend? Then again, you'd have to have a cairo dependency. - Dennis Fehr On 2015-11-30 04:35 AM, Aradeonas wrote: Hi, I am working on a specefic GUI that need to be too fast and for this I have fpGUI or mse but in this project I need fast image and

Re: [Lazarus] Video: Docked Designer Test

2015-11-23 Thread Den
Micheal, I'm thinking they mean just a visual representation of the non-visual components, by having them displayed in a different area. For you, they would show up wherever you want to put them (by default the designer could put them in a grid), but the XY won't change of the components

Re: [Lazarus] Linux Window Manager Enhancements

2015-10-29 Thread Den
Please don't say XLib does not, when in fact it does, and I have used it for that purpose. You can use it provides hints to the Window Manager (hence the WM). Don't just say shit like "does NOT" if you don't know for sure man. You could say "I'm not sure" or "XLib as far as I know", etc. I

Re: [Lazarus] Linux Window Manager Enhancements

2015-10-29 Thread Den
I prefer just using XLib to send the _NET_WM_* commands.. Like maximize, etc. I've done it before, my Game Engine I wrote using X uses it, and works with moving, hiding, etc. - Dennis On 2015-10-29 02:44 AM, Anthony Walter wrote: https://github.com/sysrpl/Lazarus.NetWM This is the a

Re: [Lazarus] Tracking software useage

2015-07-24 Thread Den
It's usually implemented as a 'send anonymous statistics' option in most programs. On 2015-07-24 05:41 AM, Graeme Geldenhuys wrote: On 2015-07-24 11:35, Michael Schnell wrote: Is such not commonly called a virus ? No, a virus normally does harm - call home software is more of a privacy

Re: [Lazarus] GDB problem ?

2015-04-28 Thread Den
I've been having this problem on my Game Project for the longest time! .. Same error.. Just started happening one day. I had wrote a message one time about it on this list, remember Martin? - Dennis On 2015-04-28 04:23 AM, Michael Van Canneyt wrote: Hi, All of a sudden (no idea why), gdb

Re: [Lazarus] Auto Update Request

2015-04-15 Thread Den
If FP/Lazarus had dynamic binary packages, the packages (like laz-core, etc.) could be the only ones downloaded, and the user will benefit from already compiled packages and not worrying about if it's going to compile or not.. But of course the binary packages always runs into the usual

Re: [Lazarus] Auto Update Request

2015-04-15 Thread Den
If FP/Lazarus had dynamic binary packages, the packages (like laz-core, etc.) could be the only ones downloaded, and the user will benefit from already compiled packages and not worrying about if it's going to compile or not.. But of course the binary packages always runs into the usual

Re: [Lazarus] QT5 progress?

2015-03-04 Thread den . jean
Hi, sorry, I am indeed very busy. The current state is that the C++ part of the code already compiles and creates several (splitted) libraries. The pascal part (Qt5Network.pas etc) still needs to be started. Regards, Den Jean - Original Message - From: zeljko zel...@holobit.net

Re: [Lazarus] Promoting Lazarus: A Case Study Video

2015-02-15 Thread Den
It also plays for me, Ubuntu 14.10 64bit, Chrome. - Dennis On 2015-02-14 05:44 AM, Giuliano Colla wrote: Il 14/02/2015 11:52, Anthony Walter ha scritto: Hello all, in our continuing effort to re-energize the Lazarus community, and reach out to new prospective users, I will be creating a

Re: [Lazarus] How to access libraries from other languages?

2015-02-15 Thread Den
lol, speaking of which Sven, what's the progress report on the C++ Classes? :D - Dennis On 2015-02-15 12:33 PM, Sven Barth wrote: On 15.02.2015 16:46, Chavoux Luyt wrote: Hi guys, The recent threat on Raspberry libraries made me think. I remember that it was possible in Delphi to access

[Lazarus] Binary Package System Discussion?

2014-09-06 Thread Den
package, and have it convert on the destination machine. Means we don't really have to do tricks when distributing your unit when you don't want to distribute the source code (ie. Commercial Packages). Any thoughts? - Den -- ___ Lazarus mailing list

Re: [Lazarus] Binary Package System Discussion?

2014-09-06 Thread Den
On 14-09-06 03:00 PM, Mark Morgan Lloyd wrote: Den wrote: Hello all, I know this has been brought up from time to time, but the more I use NetBeans and other big editors.. The more I miss the fact that it isolates you from being in their pool of source code to build whenever you add

[Lazarus] GDB Woes over! Whoever Fixed Debugging in Laz.. Kudos!

2014-08-27 Thread Den
My GDB woes are over! Debugging now correctly works for me in latest Laz Trunk. NICE! Thanks again to the responsible one. :) Sincerely, Dennis Fehr -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

Re: [Lazarus] GDB Woes over! Whoever Fixed Debugging in Laz.. Kudos!

2014-08-27 Thread Den
Oop.. Opening Assembler Window still causes an exception and crashes Laz but, I can live without the Assembler Window for now. - Dennis Fehr On 14-08-27 05:03 PM, Den wrote: My GDB woes are over! Debugging now correctly works for me in latest Laz Trunk. NICE! Thanks again

[Lazarus] More GDB Woes..

2014-08-22 Thread Den
Hi guys (most likely Martin :) ), GDB keeps crashing with: The GDB command: -stack-info-depth 11 did not return any result. Anybody else not getting these errors? - Dennis -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org

[Lazarus] GDB Debugging, ATN: Martin?

2014-07-15 Thread Den
Hi (most likely Martin ;) ), I'm getting this: =breakpoint-modified,bkpt={number=4,type=breakpoint,disp=keep,enabled=y,addr=0x004021c0,at=_start,thread-groups=[i1],times=1,original-location=*4202944}

Re: [Lazarus] IDE Macro for # of bits of the Source OS? (eg. 32-bit/64-bit -- A $(SrcCPU) would be nice!)

2014-07-08 Thread Den
On 14-07-08 01:07 AM, Sven Barth wrote: Am 08.07.2014 07:47 schrieb Den cyr...@gmail.com mailto:cyr...@gmail.com: Hello all, Is there a convenient way using Package Conditionals (Options - Other) to detect if the SOURCE Operating System is 32bit/64bit? Kinda like $(TargetCPU

[Lazarus] Implementation of TargetProcessor?

2014-07-08 Thread Den
Hi all, Any way someone could implement TargetProcessor in the Conditionals area of the IDE? I want to select the appropriate Android NDK toolchain for my Android Library when the Developer selects which Target Processor (ARMV6, ARMV7, etc.) but have no way of checking automatically..

[Lazarus] IDE Macro for # of bits of the Source OS? (eg. 32-bit/64-bit -- A $(SrcCPU) would be nice!)

2014-07-07 Thread Den
Hello all, Is there a convenient way using Package Conditionals (Options - Other) to detect if the SOURCE Operating System is 32bit/64bit? Kinda like $(TargetCPU) but a $(SrcCPU)? Thanks! - Dennis Fehr -- ___ Lazarus mailing list

[Lazarus] Debugging woes [Debugger error]

2014-03-11 Thread Den
Hi all! I just thought I'd ask to see if anyone else was having the same problems as me with the current Lazarus SVN Trunk.. I'm using Linux 64bit (No Widget Set, no LCL). When you exit the program it states Debugger Error with the usual Ooops, the debugger entered the error state Save

[Lazarus] N00b question, and I apologize.. (Adding file to FPC Package to be recognized by Lazarus)

2014-01-29 Thread Den
Hi there all, I really do apologize for this noobish question but, let's say I add a file to one of the packages in FPC, alter the fpmake.pp etc, etc.. All is fine, and the compiler is great with it, it runs, all is well.. However, I can't 'ctrl-click' the Unit a Uses Clause to jump to

Re: [Lazarus] N00b question, and I apologize.. (Adding file to FPC Package to be recognized by Lazarus)

2014-01-29 Thread Den
I have not.. And indeed it works! Thank you Mattias. ^_^ On 14-01-29 02:02 PM, Mattias Gaertner wrote: On Wed, 29 Jan 2014 13:17:13 -0600 Den cyr...@gmail.com wrote: Hi there all, I really do apologize for this noobish question but, let's say I add a file to one of the packages

Re: [Lazarus] Touchscreen

2013-06-30 Thread Den Jean
On Sunday, June 30, 2013 11:17:57 AM zeljko wrote: I have some apps that uses touchscreen too (qtlcl), and there's nothing I do not get touch events with qt lcl embedded (beaglebone), I know about, QWidget_SetAttribute(QtHandle, QtWA_AcceptTouchEvents);

Re: [Lazarus] Beagle Bone

2013-06-17 Thread Den Jean
On Monday, June 17, 2013 11:16:19 AM Michael Schnell wrote: Did anybody yet use Lazarus to do a project to be run on a BeagleBone ( http://beagleboard.org/Products/BeagleBone%20Black ) ? Here is a demo of a LCL/Qt program running on the BeagleBone ( = predecessor of BeagleBone Black).

Re: [Lazarus] Thanks for Lazarus

2013-06-11 Thread Erwin van den Bosch
+1 A big thanks for all those contributors who are bringing the magic to Pascal back! Thanks, Erwin Op 11-06-13 08:56, Reinier Olislagers schreef: Usually people only voice complaints and ideas for improvement, but I want to thank all contributors for an excellent, snappy IDE. I was just

Re: [Lazarus] TOpenGLControl: multisampling not working (Linux/GLX)

2013-02-26 Thread Den Jean
On Tuesday, February 26, 2013 08:07:16 PM zeljko wrote: Only bindings are missing. it is a lot of work :-) -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] TOpenGLControl: multisampling not working (Linux/GLX)

2013-02-26 Thread Den Jean
On Tuesday, February 26, 2013 09:29:04 PM Den Jean wrote: it is a lot of work This is very alpha and after lots of hacks to get this far. FPC Qt4 OpenGL: http://users.telenet.be/Jan.Van.hijfte/qtforfpc/V2.6RC2/splitbuild-qt4pas-V2.6RC2_Qt4.8.4.tar.gz $ grep qgl -i qt4.pas | wc -l 545

Re: [Lazarus] New user interface for future major releases of Lazarus

2012-12-04 Thread Erwin van den Bosch
What is important for me is the height of the Editor window. I want to have as much as possible text visible in the editor. So any new interface should concentrate on putting things on de left and right site of the screen. With the editor maximised in the centre. The current Lazarus IDE does

Re: [Lazarus] Why doesn't this work?

2012-11-29 Thread Erwin van den Bosch
Op 29-11-2012 1:13, Maxim Ganetsky schreef: 29.11.2012 2:15, Erwin van den Bosch пишет: procedure TForm1.Button1Click(Sender: TObject); var iLastError: integer; begin iLastError:=10053; if iLastError in [10053, 10054] then Label1.Caption:='Yes, it works

[Lazarus] Why doesn't this work?

2012-11-28 Thread Erwin van den Bosch
procedure TForm1.Button1Click(Sender: TObject); var iLastError: integer; begin iLastError:=10053; if iLastError in [10053, 10054] then Label1.Caption:='Yes, it works!' else Label1.Caption:='No, it doesn''t work!'; // Output : No, it doesn''t work! end;

Re: [Lazarus] For Qt LCL users

2012-11-06 Thread den . jean
What is happening on Qt5 for Lazarus? Even though Qt5 brings serious changes, qwidget based code will still be support. So Lazarus LCL/Qt may see little impact. http://blog.qt.digia.com/blog/2012/04/18/qt-5-c-and-qt-widgets/ For the binding a lot of work is probably needed to

Re: [Lazarus] Lazarus 1.0 Release

2012-08-29 Thread Erwin van den Bosch
This is great news! This is best thing that happens after the release of Delphi 1. :-) I want to thank all the developers and everyone who have contributed to this project. You all did a great job! -- Erwin van den Bosch Op 29-08-12 19:51, Mattias Gaertner schreef: The Lazarus team

Re: [Lazarus] TDBGrid broken in svn fixes_0_9_30

2011-06-13 Thread Erwin van den Bosch
Op 13-6-2011 8:06, zeljko schreef: Same problem exist with trunk? I don't know. I'm on the stable branch. Just dropped an TDBGrid onto form and it looks ok (trunk lazarus). Zeljko, have you tested the fixes branch? I'm on the fixes branch. I will test the trunk tree today. (First some

Re: [Lazarus] TDBGrid broken in svn fixes_0_9_30

2011-06-13 Thread Erwin van den Bosch
Op 13-06-11 08:46, Erwin van den Bosch schreef: Op 13-6-2011 8:06, zeljko schreef: Same problem exist with trunk? I don't know. I'm on the stable branch. Just dropped an TDBGrid onto form and it looks ok (trunk lazarus). Zeljko, have you tested the fixes branch? I'm on the fixes branch. I

Re: [Lazarus] TDBGrid broken in svn fixes_0_9_30

2011-06-13 Thread Erwin van den Bosch
Op 13-06-11 12:40, zeljko schreef: Don't know, no time to test fixes_0_9_30 atm ... z. I compared the file lcl/interfaces/qt/qtwinapi.inc in fixes_0_9_30 with the one in trunk. Find a few lines of code that wasn't in the trunk tree. Fixed the bug in the attached patch. Regards, Erwin.

[Lazarus] TDBGrid broken in svn fixes_0_9_30

2011-06-12 Thread Erwin van den Bosch
TDBGrid does look weird and doesn't function anymore in svn: branches/fixes_0_9_30 Revision 31056 does work. Revision 31057 doesn't :-( fpc 2.4.2 Opensuse 11.2 x64 lazarus compiled for QT Regard, Erwin -- ___ Lazarus mailing list

Re: [Lazarus] TDBGrid broken in svn fixes_0_9_30

2011-06-12 Thread Erwin van den Bosch
will not help too. Have you test it? It happens on Linux with QT. Same problem exist with trunk? I don't know. I'm on the stable branch. Regards, Erwin. Bart On 6/13/11, Erwin van den Boscher...@deseine.nl wrote: TDBGrid does look weird and doesn't function anymore in svn: branches/fixes_0_9_30

[Lazarus] Writing a custom lazarus dropdown control

2011-06-08 Thread Erwin van den Bosch
for that project. I have written a small Delphi app/unit with the main functionality. (Delphi 2007) http://download.fpc-lazarus.nl/DropdownCtrl.rar There is a compiled exe included. Please take a look at the code. Can it be done with Lazarus? Thanks! Regards, Erwin van den Bosch

Re: [Lazarus] FPC and Lazarus on ARM

2011-04-05 Thread Den Jean
/N900/LazN900_AltTab.png http://users.telenet.be/Jan.Van.hijfte/qtforfpc/N900/LazN900_Editor.png http://users.telenet.be/Jan.Van.hijfte/qtforfpc/N900/LazN900_Main.png http://users.telenet.be/Jan.Van.hijfte/qtforfpc/N900/LazN900_ObjectInspector.png regards, Den Jean

Re: [Lazarus] Qt is avaliable on Android, so LCL Qt-Arm is working also?

2011-03-30 Thread Den Jean
an android device, but if you need changes to the binding feel free to ask. Perhaps some Qt classes or methods are not available on the Qt Android port, I can e.g. make them conditionally available in the same way I differentiate between Linux/Windows/MacOsX/Maemo currently. regards, Den Jean

Re: [Lazarus] FPC and Lazarus on ARM

2011-03-26 Thread Den Jean
On Saturday 26 March 2011 15:05:49 Marco van de Voort wrote: It would be interesting to see how the efika fares. (also 25min I'd expect, Google translate if your French is rusty. http://www.blogarm.net/test-du-genesi-efikamx-smartbook-par-pipou24/

Re: [Lazarus] FPC and Lazarus on ARM

2011-03-24 Thread Den Jean
On Thursday 24 March 2011 12:58:40 Kjow wrote: Maemo/MeeGo are arm-linux distro, maemo is based on debian meego on fedora. So I think that the wiki could be used to installa fpc/lazarus on any arm-linux platform. :) This one also contains arm platform instructions

Re: [Lazarus] Android and QT ?

2011-02-28 Thread Den Jean
in Qt c++ (just a window and a button hooked to quit). I do not know the state of android-lighthouse Then you can see how much of the fpc binding compiles. Compiling the binding has very similar requirements as to compiling a Qt c++ library (which is what it is) regards, Den Jean

[Lazarus] Compile error on Win7 x64

2010-12-15 Thread Erwin van den Bosch
Hello, I'm getting compile errors on the current SVN on Windows 7 x64 / fpc 2.4.3. Error: Can't overide method Realloc. No Int64 ...etc unit LCLMemManager; ... ... {$IF FPC_FULLVERSION20402} TStreamSizeType = PtrInt; {$ELSE} TStreamSizeType = Longint; {$IFEND} { TExtMemoryStream }

Re: [Lazarus] Compile error on Win7 x64

2010-12-15 Thread Erwin van den Bosch
Vincent, I will check that. Thanks for quick answer! Erwin Op 15-12-2010 17:03, Vincent Snijders schreef: 2010/12/15 Erwin van den Boscher...@deseine.nl: Hello, I'm getting compile errors on the current SVN on Windows 7 x64 / fpc 2.4.3. Error: Can't overide method Realloc. No Int64 ...etc

Re: [Lazarus] Qt4pas under Haiku...

2010-08-04 Thread Den Jean
haiku is defined) } else { message(The define haiku is NOT defined) } and provide me the output on this mailing list http://lists.lazarus.freepascal.org/pipermail/qt/ kind regards, Den Jean -- ___ Lazarus mailing list Lazarus

Re: [Lazarus] GPS Navigation Software develpment

2010-07-06 Thread Den Jean
On Tuesday 06 July 2010 15:40:07 John vd Waeter wrote: Interesting! Do you see possibilities to use Lazarus creating apps for e.g. the Maemo-phones? technically that is very well possible, but maybe the N900 3.5 inch screen is too small (same as older TomToms) --

Re: [Lazarus] GPS Navigation Software develpment

2010-07-06 Thread Den Jean
On Tuesday 06 July 2010 21:29:35 John vd Waeter wrote: Anyone got as far as a graphical Hello World on the N900 using Lazarus? Lazarus Gtk : http://wiki.lazarus.freepascal.org/Setup_Cross_Compile_For_ARM Lazarus Qt: ===

[Lazarus] Can't compile Lazarus anymore

2010-04-17 Thread Erwin van den Bosch
I can't compile Lazarus anymore. (current svn trunk revision 24680) I use make clean all bigide On opensuse 11.1 X86_64 and I use gtk2 widgets, fpc 2.4.0 This is the error output: Compiling synhighlighterlfm.pas synhighlighterlfm.pas(720,13) Error: Illegal type conversion: ^untyped to

Re: [Lazarus] Can't compile Lazarus anymore

2010-04-17 Thread Erwin van den Bosch
That helped a bit. But also look at synhighlighterdiff.pas line 731. Same there. After that it compiles ok! Typecasting pointers is such fun in object pascal! Why don't we go back to c++? ;-) Groetjes, Erwin Op 17-04-10 21:12, Martin schreef: On 17/04/2010 20:01, Erwin van den Bosch wrote: I

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-10 Thread Den Jean
hope it is less cryptic now. So if you are in a situation that you miss a .so and only have a .so.6, you should not start renaming things, but just add file links or install the devel package for that library. kind regards, Den Jean -- ___ Lazarus

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-09 Thread Den Jean
On Thursday 08 April 2010 21:59:13 Kjow wrote: libQT4.Pas.so is accepted by linker, but now... do you know where can I found the other libraries requested by ld? (like libQtWebKit.so etc) I can't find these in my device, and on the web I found only the sources... learn about apt-get,

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-09 Thread Den Jean
On Friday 09 April 2010 18:48:31 Kjow wrote: learn about apt-get, apt-cache search and google :-) http://talk.maemo.org/showthread.php?t=46785 at first glance it probably is: apt-get update apt-get install libqt4-maemo5-* Thank you! This thread is very useful, I installed the

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-09 Thread Den Jean
On Friday 09 April 2010 21:46:39 Kjow wrote: 2010/4/9 Den Jean den.j...@telenet.be: on your device you need the libs (libqt4-maemo5*) on the cross development platform you also need the devel libs (links named .so to actual libs) read this ?! apt-get install libqt4-dev or something like

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-08 Thread Den Jean
a fpc qt4 app or lazarus/qt, define MAEMO5. Not tested because no H/W available and also Maemo scratchbox arm graphics do not work yet. regards, Den Jean -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org

Re: [Lazarus] libQt4Pas.so for ARM

2010-04-07 Thread Den Jean
On Wednesday 07 April 2010 11:13:16 Kjow wrote: I tried to make it myself, but I don't understand what to do... An arm binary is too dependent of the arm target platform characteristics. What is the target arm platform ? -- ___ Lazarus mailing

[Lazarus] Planned Lazarus day in the netherlands?

2010-04-05 Thread Erwin van den Bosch
interesting! Erwin van den Bosch -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Re: [Lazarus] Planned Lazarus day in the netherlands?

2010-04-05 Thread Erwin van den Bosch
On 5-4-2010 22:15, Michael Van Canneyt wrote: Has someone a bit more info on this planned lazarus day? url? Date? Location? I think this is very interesting! See: http://www.blaisepascal.eu/ 26 june 2010 in the neighbourhood of Utrecht. Thanks! --

[Lazarus] Panel height property not working

2010-03-11 Thread Erwin van den Bosch
Hello, Have a strange problem since revision 23943. The compiler/build info dialog does not look good. The panels on that form have a height of 1 pixel. I build the ide with gtk2. Revision 23942 is working fine. Viewing the infobuild.lfm in an text editor shows the right height property values.

Re: [Lazarus] QT: installaton error.

2010-02-22 Thread Den Jean
On Monday 22 February 2010 23:38:50 Kjow wrote: qtwinapi.inc(1181,7) Error: Can't determine which overloaded function to call see patch here: http://lists.lazarus.freepascal.org/pipermail/qt/2010-February/001475.html and explanation here:

Re: [Lazarus] qt45 lclwebkit2

2009-09-30 Thread Den Jean
of cookie saving,tabbed browsing, proxy usage,server authentication,flash,printing, ... http://users.telenet.be/Jan.Van.hijfte/qtforfpc/fpcqt4.html kind regards, Den Jean -- ___ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http

Re: [Lazarus] qt45 lclwebkit2

2009-09-30 Thread Den Jean
, you could enable the debugging printfs I left in qobject_hook.h and verify it is related to this bug fix. http://lists.lazarus.freepascal.org/pipermail/qt/2009-September/001272.html regards, Den Jean -- ___ Lazarus mailing list Lazarus