Re: [fpc-pascal] Timers in FPC

2007-06-01 Thread Michael Van Canneyt
On Fri, 1 Jun 2007, Flávio Etrusco wrote: > BTW, while I'm still somewhat on-topic (but quite lazy ;-) , is there > a high-resolution timer in FCL? If not, what about including Martin > Waldenburg's qmwfasttime? Shall I file a request in Mantis? Don't bother, because it will not be included, as

Re: [fpc-pascal] Timers in FPC

2007-06-01 Thread Vincent Snijders
Flávio Etrusco schreef: BTW, while I'm still somewhat on-topic (but quite lazy ;-) , is there a high-resolution timer in FCL? If not, what about including Martin Waldenburg's qmwfasttime? Shall I file a request in Mantis? Also take a look at: http://wiki.lazarus.freepascal.org/EpikTimer Vinc

Re: [fpc-pascal] Timers in FPC

2007-06-01 Thread Flávio Etrusco
BTW, while I'm still somewhat on-topic (but quite lazy ;-) , is there a high-resolution timer in FCL? If not, what about including Martin Waldenburg's qmwfasttime? Shall I file a request in Mantis? Best regards, Flávio ___ fpc-pascal maillist - fpc-p

Re: [fpc-pascal] Timers in FPC

2007-06-01 Thread Rick Seiden
There's a contributed units link on the freepascal.org home page. Perhaps it could go there. Right under it is a Contribute link that allows you to add it to the contributed units database. I know this i

Re: [fpc-pascal] Timers in FPC

2007-05-31 Thread Michael Van Canneyt
On Thu, 31 May 2007, Graeme Geldenhuys wrote: > On 5/31/07, Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > > > > Do you mind if I split up the implementation like this: > > > > TTimer - Exposes all needed properties, events. Delegates work > > to TTimerDriver. > > TTimerDriver

Re: [fpc-pascal] Timers in FPC

2007-05-31 Thread Graeme Geldenhuys
On 5/31/07, Michael Van Canneyt <[EMAIL PROTECTED]> wrote: Do you mind if I split up the implementation like this: TTimer - Exposes all needed properties, events. Delegates work to TTimerDriver. TTimerDriver - Abstract class which has 2 methods and a property to do the a

Re: [fpc-pascal] Timers in FPC

2007-05-31 Thread Michael Van Canneyt
On Thu, 31 May 2007, Graeme Geldenhuys wrote: > > > I guess I'm a bit late in asking, seeing that I already implemented by > > > own thread based timer. I works 100% for what I need. I just wondered > > > if there was something like that built into FPC that I missed. I > > > would like to compa

Re: [fpc-pascal] Timers in FPC

2007-05-31 Thread Graeme Geldenhuys
> I guess I'm a bit late in asking, seeing that I already implemented by > own thread based timer. I works 100% for what I need. I just wondered > if there was something like that built into FPC that I missed. I > would like to compare the implementations, or share mine if FPC > doesn't have one.

Re: [fpc-pascal] Timers in FPC

2007-05-31 Thread Michael Van Canneyt
On Thu, 31 May 2007, Graeme Geldenhuys wrote: > Hi, > > What timers classes or components does FPC have? For example > something that can fire every 200ms or ever 2 minutes, etc... I'm not > worried about high precision timers etc... Being out by a couple of > milliseconds is not a issue. >

[fpc-pascal] Timers in FPC

2007-05-31 Thread Graeme Geldenhuys
Hi, What timers classes or components does FPC have? For example something that can fire every 200ms or ever 2 minutes, etc... I'm not worried about high precision timers etc... Being out by a couple of milliseconds is not a issue. For example Delphi and Lazarus has a TTimer which does the job