[fpc-pascal] How to know if an objects implements an interface

2005-07-21 Thread Agustin Barto
I have a class that has a TObject field. In some of the instances of this class the field will contain an objetct from a class that implements certain interface. What can I do to check if the referenced object implements the interface? ___ fpc-pascal mai

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Den Jean
On Thursday 21 July 2005 06:53 pm, Alain Vitry wrote: > Den, > Could you point me to some reading/starting point on how to make those > bindings ? > Swig doesn't support pascal yet. > I have a fresh QT4 bindings for pascal in mind. > Thanks There are several ways: kalyptus: see cvs/fpc/

Re: [fpc-pascal] Translating scientific libraries

2005-07-21 Thread C Western
Michael Van Canneyt wrote: On Thu, 21 Jul 2005, Agustin Barto wrote: I'd like to use some scientific/math librearies like LAPACK and GNU/GSL with fpc. I already know about h2pas and external subroutines and variables, but I wanted to know if these methods will be able to deal with libraries

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Alain Vitry
Den, Could you point me to some reading/starting point on how to make those bindings ? Swig doesn't support pascal yet. I have a fresh QT4 bindings for pascal in mind. Thanks Le 21 juil. 05, à 18:46, Den Jean a écrit : The binding is made in C/C++, one of the makefiles is 2730 lines. So it

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Den Jean
On Thursday 21 July 2005 05:21 pm, Matt Emson wrote: > Excellent. I do have a Mandrake 8.1 and Mandrake 9.0 install CD hanging > about. Are either of those preferable? I would also like to get it going > under Windows.. just because I know I'll be in Windows for more frequently. > Was there a spec

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Matt Emson
> The fpc qte binding demo program shows that it is usable. > If however you have problems and think it is binding or fpc > related, I am always willing to investigate this. > I just did so for someone who had a problem with QLCDNumber, > it probably is a small fpc bug concerning passing a double p

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Jonas Maebe
On 21 Jul 2005, at 16:57, Marc Perkel wrote: How do I get off this list? I'd like to turn it off for now. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal Go to the above url, enter

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Vincent Snijders
Marc Perkel wrote: How do I get off this list? I'd like to turn it off for now. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal Take a look at the URL posted at the bottom of this m

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Marc Perkel
Never mind - i figured it out - duh I'm such and idiot! Marc Perkel wrote: How do I get off this list? I'd like to turn it off for now. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Marc Perkel
How do I get off this list? I'd like to turn it off for now. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Den Jean
On Thursday 21 July 2005 04:22 pm, Florian Klaempfl wrote: > > I realise this is slightly off > > topic, but I remember the developer working on the bindings posted to this > > list a while back. > > The fpc qte binding demo program shows that it is usable. If however you have problems and think

[fpc-pascal] Mac OS X Pascal Interfaces

2005-07-21 Thread Adriaan van Os
The latest version of the Mac OS X Pascal Interfaces can be downloaded from . Detailed release notes are included with the package, a summary is given below. Most important news is that compatible interfaces for

Re: [fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Florian Klaempfl
Matt Emson wrote: > Just laid my hands on a used Zaurus SL5500. I was wondering how stable the > Zaurus cross compiler and QT wrapper were? Should be very usable. > I realise this is slightly off > topic, but I remember the developer working on the bindings posted to this > list a while back. >

[fpc-pascal] Sharp Zaurus ARM port stability?

2005-07-21 Thread Matt Emson
Just laid my hands on a used Zaurus SL5500. I was wondering how stable the Zaurus cross compiler and QT wrapper were? I realise this is slightly off topic, but I remember the developer working on the bindings posted to this list a while back. Any info? TTFN, Matt __

Re: [fpc-pascal] Translating scientific libraries

2005-07-21 Thread Michael Van Canneyt
On Thu, 21 Jul 2005, Agustin Barto wrote: > I'd like to use some scientific/math librearies like LAPACK and > GNU/GSL with fpc. I already know about h2pas and external subroutines > and variables, but I wanted to know if these methods will be able to > deal with libraries as complex as LAPACK (c

[fpc-pascal] Translating scientific libraries

2005-07-21 Thread Agustin Barto
I'd like to use some scientific/math librearies like LAPACK and GNU/GSL with fpc. I already know about h2pas and external subroutines and variables, but I wanted to know if these methods will be able to deal with libraries as complex as LAPACK (clapack obviously) and GSL. I'm porting my graduate t

[fpc-pascal] fast integer multiplication

2005-07-21 Thread Vincent Snijders
Hi, Suppose I have the following code: var a,b: dword; c: qword; begin a := 1000; b := 2000; c := a * b; writeln(c); end. Now, although c is large enough to contain the result only the lower dword is filled. I can force correct results by using c := qword(a) * b, but the