Graeme Geldenhuys | 1 Jul 08:57
Picon
Gravatar

Re: Is there anyone who use lazarus to develop the commercial products targeted on multiple platform?

2008/6/30 davy zhang <davyzhang <at> gmail.com>:
> Especially on mac.
>
> Recently I plan to port some of my products from windows to mac, if it
> is possible :)

I'm being nit picky now. :-)  You might need to distinquish between
using Lazarus IDE or using Lazarus's LCL. We use the Lazarus IDE for
cross platform development, but not the LCL.  ;-)

Regards,
 - Graeme -

_______________________________________________
fpGUI - a cross-platform Free Pascal GUI toolkit
http://opensoft.homeip.net/fpgui/
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Graeme Geldenhuys | 1 Jul 13:33
Picon
Gravatar

Re: Mac OS X : Latest Lazarus Revision : 15598 Does not work :(

2008/6/30 Vincent Snijders <vsnijders <at> quicknet.nl>:
>> When did code completion disappear?  Anybody know what revision of
>> Lazarus, the FPCUnit GUI Test Runner still worked?  It's a huge pain
>> in the butt trying to run selected tests with the Text Test Runner
>
> Look in the archives, when Marc announced the commit for the image handling rewrite.

Thanks, found it. For other that want to revert Lazarus to a more
stable state, until the image issues are sorted. The revision you want
is r15471.

Regards,
 - Graeme -

_______________________________________________
fpGUI - a cross-platform Free Pascal GUI toolkit
http://opensoft.homeip.net/fpgui/
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Osvaldo TCF | 1 Jul 19:27
Picon

Re: ubuntu 8.04 - fpc and lazarus svn - crosscompile: ubuntu -> win32

> Please define 'create all packages'.
Create debian packages fpc, fpc-src and lazarus from my local subversion
is done.
I want create fpc-crosswin32 debian pacages from my local subversion,
without internet connection.

> Did you install the fpc-crosswin32 package?
No, how can do that?

Please, more one, how can i do win32 setup from my local subversion
without internet conection?

I am a studant and install fpc and lazarus on several machines (ubuntu
and windows) on my school!

Thanks.

Em Seg, 2008-06-30 às 22:44 +0200, Mattias Gaertner escreveu:
> On Mon, 30 Jun 2008 16:22:27 -0300
> Osvaldo TCF <arquivostcf <at> gmail.com> wrote:
> 
> > Hi, i have:
> > -Ubuntu 8.04
> > -fpc fixes 2.2.3 from subversion
> > -lazarus r15400
> > -http://svn.freepascal.org/svn/fpcbuild/branches/fixes_2_2/install
> > from subversion: root repository:
> > http://svn.freepascal.org/svn/fpcbuild
> > 
> > How can:
(Continue reading)

Dominique Louis | 1 Jul 22:18
Picon
Gravatar

Re: Mac OS X : Latest Lazarus Revision : 15598 Does not work :(

Graeme Geldenhuys wrote:
> Thanks, found it. For other that want to revert Lazarus to a more
> stable state, until the image issues are sorted. The revision you want
> is r15471.

The only problem I found with that revision, at least on Mac OS X, is 
that the ide contains a Range Check error, which was fixed after that 
revision.

Dominique.
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Roland Turcan | 2 Jul 11:01
Picon
Gravatar

Re: Repainting nested components

Thanks for you answer.

I am converting one project from Delphi/Kylix to Lazarus and using SVN
versions of Lazarus with FPC 2.2.0.

This behavior is currently related to i386-linux-gtk. But I am going
to port it under MacOS too (Carbon).

MG> Some widgetsets use a mixture. That means it depends on the type of widget, what
MG> technique is used.

Where I can find information of differences among widgets?

TRoland;

<<< 30.6.2008 12:57 - Mattias Gärtner "nc-gaertnma <at> netcologne.de" >>>
MG> Zitat von Roland Turcan <konf <at> rotursoft.sk>:

>> Hello lazarus project!
>>
>> How to assure, that all nested components will be repainted after
>> calling MyPanel.Paint, because actually all components are behind new
>> rectangle.

MG> I'm not sure, if you found a bug or if you misunderstood the concept of event
MG> based painting and/or clipping.

MG> In general:
MG> TPanel and TRadioButton are TWinControls and have their own handle. So it is up
MG> to the widgetset (windows, gtk, carbon, qt, fpgui ...) to control the order and
(Continue reading)

Martin Friebe | 2 Jul 11:56
Picon

Re: Repainting nested components

Maybe the following may be of help.
http://bugs.freepascal.org/view.php?id=11560

I just spotted in the below
> How to assure, that all nested components will be repainted after
> calling MyPanel.Paint, because actually all components are behind new
I think you should call MyPanel.Invalidate, instead of MyPanel.Paint?  
that should take care of repainting any child-controls.

Best Regards
Martin

Roland Turcan wrote:
> Thanks for you answer.
>
> I am converting one project from Delphi/Kylix to Lazarus and using SVN
> versions of Lazarus with FPC 2.2.0.
>
> This behavior is currently related to i386-linux-gtk. But I am going
> to port it under MacOS too (Carbon).
>
> MG> Some widgetsets use a mixture. That means it depends on the type of widget, what
> MG> technique is used.
>
> Where I can find information of differences among widgets?
>
> TRoland;
>
> <<< 30.6.2008 12:57 - Mattias Gärtner "nc-gaertnma <at> netcologne.de" >>>
> MG> Zitat von Roland Turcan <konf <at> rotursoft.sk>:
(Continue reading)

Mattias Gärtner | 2 Jul 12:48
Picon
Favicon

Re: Repainting nested components

Zitat von Martin Friebe <lazarus <at> mfriebe.de>:

> Maybe the following may be of help.
> http://bugs.freepascal.org/view.php?id=11560
>
> I just spotted in the below
> > How to assure, that all nested components will be repainted after
> > calling MyPanel.Paint, because actually all components are behind new
> I think you should call MyPanel.Invalidate, instead of MyPanel.Paint?
> that should take care of repainting any child-controls.

He does not call Paint directly. He created his own TPanel descendant and
overrid Paint. That's the recommended way.
The problem is, that this does not work under gtk1, because the painting happens
after the gtk has painted TPanel and TRadioButton and he wants to paint between
those two. This works under the other widgetsets.

Mattias

_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Mattias Gärtner | 2 Jul 13:01
Picon
Favicon

Re: ubuntu 8.04 - fpc and lazarus svn - crosscompile: ubuntu -> win32

Zitat von Osvaldo TCF <arquivostcf <at> gmail.com>:

> > Please define 'create all packages'.
> Create debian packages fpc, fpc-src and lazarus from my local subversion
> is done.
> I want create fpc-crosswin32 debian pacages from my local subversion,
> without internet connection.

I don't know the minimum set of packages. But here is the list of packages that
I install:
apt-get install build-essential fakeroot libgpmg1-dev

build-essential is a meta package installing all kinds of developer
tools/sources.
And you need the binutils sources from
http://ftp.gnu.org/gnu/binutils/binutils-2.18.tar.gz. Download it to
~/freepascal/download/, because the script searches it there.

> > Did you install the fpc-crosswin32 package?
> No, how can do that?

It's available on the lazarus sourceforge page. But only for the 0.9.24 release.

> Please, more one, how can i do win32 setup from my local subversion
> without internet conection?

Do you mean for cross compiling from linux to win32?

> I am a studant and install fpc and lazarus on several machines (ubuntu
> and windows) on my school!
(Continue reading)

Alex du Plessis | 2 Jul 14:08
Favicon

Firebird connection

Hi All,

I tried connecting to a Firebird database using the TIBConnection 
component from the sqldb tab in the IDE.  The TIBConnection as well as 
the TSQLTransaction connects with no hiccups in the IDE.  I then created 
a TSQLQuery to select all fields from a table in the database and 
display it in a TDBGrid via a TDatasource. 

However, when trying to activate the query (both in the IDE and at 
runtime) it refuses to activate but also does not return with an error 
message. 

Does anybody have any ideas where I'm going wrong?

Thanx
Alex
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Osvaldo TCF | 2 Jul 14:17
Picon

Re: ubuntu 8.04 - fpc and lazarus svn - crosscompile: ubuntu -> win32


> 
> It's available on the lazarus sourceforge page. But only for the 0.9.24 release.
> 
How can i create it for svn release?


> And you need the binutils sources from
> http://ftp.gnu.org/gnu/binutils/binutils-2.18.tar.gz. Download it to

can i use the binutils source package from ubuntu repository?

> Do you mean for cross compiling from linux to win32?

Can i Create a lazarus and fpc install for win32 from my local subversion?

Thanks.

Em Qua, 2008-07-02 às 13:01 +0200, Mattias Gärtner escreveu:
> Zitat von Osvaldo TCF <arquivostcf <at> gmail.com>:
> 
> > > Please define 'create all packages'.
> > Create debian packages fpc, fpc-src and lazarus from my local subversion
> > is done.
> > I want create fpc-crosswin32 debian pacages from my local subversion,
> > without internet connection.
> 
> I don't know the minimum set of packages. But here is the list of packages that
> I install:
> apt-get install build-essential fakeroot libgpmg1-dev
(Continue reading)


Gmane