Re: [Lazarus] When TException is distroyed?

2013-06-30 Thread Florian Klaempfl
Am 29.06.2013 23:59, schrieb William Oliveira Ferreira: Just a curiosity question: if we use try exception, the system auto create a texception object, but, when it is destroyed? When leaving the except block handling the exception (if AcquireExceptionObject has not been called). --

[Lazarus] Touchscreen

2013-06-30 Thread Koenraad Lelong
Hi, I'm considering an application that will run on a touchscreen. I made some test-apps, and I think there will be problems with things like scrollbars. Is there a way to make those bigger ? Or is there a way to implement the swipe to move items in a list ? The touchscreen is connected to a

Re: [Lazarus] Touchscreen

2013-06-30 Thread zeljko
On 06/30/2013 10:38 AM, Koenraad Lelong wrote: Hi, I'm considering an application that will run on a touchscreen. I made some test-apps, and I think there will be problems with things like scrollbars. Is there a way to make those bigger ? Or is there a way to implement the swipe to move items

[Lazarus] vase_trans.xpm

2013-06-30 Thread Junior
sorry my english is bad -- The png file vase_trans.xpm located in the directory lazarus/images (Lazarus trunk version 1.1). Not it Should be excluded? The figure shows the indication of an old version of lazarus. thanks --

Re: [Lazarus] storing value in the program using any input component

2013-06-30 Thread Zaher Dirkey
On Mon, Jun 24, 2013 at 8:50 PM, Johan Tu Toit johan.tut...@gmail.comwrote: MyEdtit.text to input without need of ​Without a database or file or some permanent storing device?​ Best Regards Zaher Dirkey -- ___ Lazarus mailing list

Re: [Lazarus] storing value in the program using any input component

2013-06-30 Thread Johan Tu Toit
yes On 6/30/13, Zaher Dirkey parm...@gmail.com wrote: On Mon, Jun 24, 2013 at 8:50 PM, Johan Tu Toit johan.tut...@gmail.comwrote: MyEdtit.text to input without need of Without a database or file or some permanent storing device? Best Regards Zaher Dirkey --

[Lazarus] Concerning GPL compatibility with more permissive licenses

2013-06-30 Thread Kenneth Cochran
I am working on a mini framework that acts as an abstraction over the Delphi and Lazarus IDE extension APIs. The idea is a single API that can be used to develop extensions for both. Most or all of the Lazarus source is covered under the GPL. It is my understanding that the GPL requires

Re: [Lazarus] Unicode branch

2013-06-30 Thread Marco van de Voort
On Sat, Jun 29, 2013 at 08:47:37PM -0400, waldo kitty wrote: (Some versions of?) Delphi deallocate interfaces at the end of a block of procedures, not immediately after first usage. first usage or last usage? Last usage of course, sorry. --

Re: [Lazarus] Concerning GPL compatibility with more permissive licenses

2013-06-30 Thread Reinier Olislagers
On 30-6-2013 5:37, Kenneth Cochran wrote: Most or all of the Lazarus source is covered under the GPL. It is my understanding that the GPL requires derivative works (by static linking) to also be open source. Do derivative works necessarily need to be under the same license? I would like to

Re: [Lazarus] Concerning GPL compatibility with more permissive licenses

2013-06-30 Thread Martin
On 30/06/2013 16:37, Kenneth Cochran wrote: I am working on a mini framework that acts as an abstraction over the Delphi and Lazarus IDE extension APIs. The idea is a single API that can be used to develop extensions for both. Most or all of the Lazarus source is covered under the GPL. It is

Re: [Lazarus] Unicode branch

2013-06-30 Thread Hans-Peter Diettrich
Marco van de Voort schrieb: On Sat, Jun 29, 2013 at 08:47:37PM -0400, waldo kitty wrote: (Some versions of?) Delphi deallocate interfaces at the end of a block of procedures, not immediately after first usage. first usage or last usage? Last usage of course, sorry. I'm somewhat confused

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] Touchscreen

2013-06-30 Thread Malcolm Poole
On 30/06/13 09:38, Koenraad Lelong wrote: I made some test-apps, and I think there will be problems with things like scrollbars. Is there a way to make those bigger ? Or is there a way to implement the swipe to move items in a list ? I decided to use fpgui for this; because it made it

Re: [Lazarus] Concerning GPL compatibility with more permissive licenses

2013-06-30 Thread Hans-Peter Diettrich
Martin schrieb: Actually, the IdeIntf is LGPL + linking permission. So, if you only use the IDEIntf (and LCL, RTL) and do not ship a pre-build IDE with your package included then you can use any license. Users can build an IDE with your package, but must publish the build exe (if I am right:

Re: [Lazarus] Unicode branch

2013-06-30 Thread Flávio Etrusco
On Sat, Jun 29, 2013 at 4:43 PM, Marcos Douglas m...@delfire.net wrote: On Fri, Jun 28, 2013 at 1:07 PM, Hans-Peter Diettrich drdiettri...@aol.com wrote: Graeme Geldenhuys schrieb: On 2013-06-27 21:32, Hans-Peter Diettrich wrote: I don't see how this is related to managed objects. If FPC

Re: [Lazarus] Unicode branch

2013-06-30 Thread Florian Klämpfl
Am 30.06.2013 18:25, schrieb Hans-Peter Diettrich: Marco van de Voort schrieb: On Sat, Jun 29, 2013 at 08:47:37PM -0400, waldo kitty wrote: (Some versions of?) Delphi deallocate interfaces at the end of a block of procedures, not immediately after first usage. first usage or last usage?

Re: [Lazarus] storing value in the program using any input component

2013-06-30 Thread Edilson Vieira
In order to keep any kind of info after turning off the machine where your program is running, you must put it somewhere so u need a file or data storage service that will be located at some machine also. 2013/6/30 Johan Tu Toit johan.tut...@gmail.com yes On 6/30/13, Zaher Dirkey

Re: [Lazarus] Unicode branch

2013-06-30 Thread Graeme Geldenhuys
On 2013-06-30 19:14, Florian Klämpfl wrote: It matters when people make assumptions when the a temp. Yes, people like Embarcadero themselves (even though it is not officially documented), or Embarcadero partners that ship products with Delphi (think Raize's CodeSite etc). I seriously doubt

Re: [Lazarus] Unicode branch

2013-06-30 Thread Graeme Geldenhuys
On 2013-06-30 17:25, Hans-Peter Diettrich wrote: I'm somewhat confused now. When an object has an definite last use, it should not matter when it is destroyed afterwards, sooner or later. The simplest example... You have code that executes when the Interface gets destroyed. A very simple

Re: [Lazarus] vase_trans.xpm

2013-06-30 Thread Mattias Gaertner
On Sun, 30 Jun 2013 10:11:47 -0300 Junior lazarus.li...@gmail.com wrote: sorry my english is bad -- The png file vase_trans.xpm located in the directory lazarus/images (Lazarus trunk version 1.1). Not it Should be excluded? The figure shows the indication of

Re: [Lazarus] Unicode branch

2013-06-30 Thread Hans-Peter Diettrich
Graeme Geldenhuys schrieb: On 2013-06-30 17:25, Hans-Peter Diettrich wrote: I'm somewhat confused now. When an object has an definite last use, it should not matter when it is destroyed afterwards, sooner or later. The simplest example... You have code that executes when the Interface gets

Re: [Lazarus] Unicode branch

2013-06-30 Thread Hans-Peter Diettrich
Florian Klämpfl schrieb: Am 30.06.2013 18:25, schrieb Hans-Peter Diettrich: Marco van de Voort schrieb: On Sat, Jun 29, 2013 at 08:47:37PM -0400, waldo kitty wrote: (Some versions of?) Delphi deallocate interfaces at the end of a block of procedures, not immediately after first usage. first

Re: [Lazarus] When TException is distroyed?

2013-06-30 Thread William Oliveira Ferreira
Well, good to know this. I never read something about... Thanks, Florian 2013/6/30 Florian Klaempfl flor...@freepascal.org Am 29.06.2013 23:59, schrieb William Oliveira Ferreira: Just a curiosity question: if we use try exception, the system auto create a texception object, but, when

Re: [Lazarus] Unicode branch

2013-06-30 Thread Martin Schreiber
On Monday 01 July 2013 00:33:43 Hans-Peter Diettrich wrote: Graeme Geldenhuys schrieb: On 2013-06-30 17:25, Hans-Peter Diettrich wrote: I'm somewhat confused now. When an object has an definite last use, it should not matter when it is destroyed afterwards, sooner or later. The simplest

Re: [Lazarus] Touchscreen

2013-06-30 Thread zeljko
On 06/30/2013 06:31 PM, Den Jean wrote: 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,