Re: [fpc-pascal] wkhtmltopdf - trying use h2pas...

2011-02-07 Thread ik
On Sun, Feb 6, 2011 at 19:29, Marcos Douglas m...@delfire.net wrote: On Sat, Feb 5, 2011 at 8:59 AM, ik ido...@gmail.com wrote: Webkit already translated to Pascal, and you use the API, and the amount of time to use the API is shorter then the amount of time to translate the header

Re: [fpc-pascal] Re: Correct use of var in function calls?

2011-02-07 Thread michael . vancanneyt
On Sun, 6 Feb 2011, Florian Klämpfl wrote: Am 06.02.2011 18:53, schrieb Bo Berglund: So in summary: If the called method changes the length of teh dynamic array it must be passed as a var, otherwise the length change will be lost when exiting the method. I'd even propose that one uses var

[fpc-pascal] Javascript in Desktop Applications

2011-02-07 Thread Anthony Walter
Over at stackoverflow someone askedhttp://stackoverflow.com/questions/4913178/javascript-in-delphi-applications, Is it possible to utilize javascript in the making of windows desktop applications. I wrote up a pascal based solution to add javascript access to your desktop programs. If you have any

Re: [fpc-pascal] Javascript in Desktop Applications

2011-02-07 Thread michael . vancanneyt
On Mon, 7 Feb 2011, Anthony Walter wrote: Over at stackoverflow someone askedhttp://stackoverflow.com/questions/4913178/javascript-in-delphi-applications, Is it possible to utilize javascript in the making of windows desktop applications. I wrote up a pascal based solution to add javascript

Re: [fpc-pascal] Javascript in Desktop Applications

2011-02-07 Thread Andrew Brunner
On Mon, Feb 7, 2011 at 7:35 AM, michael.vancann...@wisa.be wrote: A cross-platform solution is to use one of libsee or BESEN. The latter is implemented in 100% native Object Pascal. Michael. BESEN is very, very, very well written but I can't seem to get any indication how to use it in my

Re: [fpc-pascal] Javascript in Desktop Applications

2011-02-07 Thread michael . vancanneyt
On Mon, 7 Feb 2011, Andrew Brunner wrote: On Mon, Feb 7, 2011 at 7:35 AM, michael.vancann...@wisa.be wrote: A cross-platform solution is to use one of libsee or BESEN. The latter is implemented in 100% native Object Pascal. Michael. BESEN is very, very, very well written but I can't

Re: [fpc-pascal] Javascript in Desktop Applications

2011-02-07 Thread Brian Winfrey
On Mon, Feb 7, 2011 at 6:27 AM, michael.vancann...@wisa.be wrote: On Mon, 7 Feb 2011, Andrew Brunner wrote: On Mon, Feb 7, 2011 at 7:35 AM,  michael.vancann...@wisa.be wrote: A cross-platform solution is to use one of libsee or BESEN. The latter is implemented in 100% native Object

Re: [fpc-pascal] Javascript in Desktop Applications

2011-02-07 Thread Michael Van Canneyt
On Mon, 7 Feb 2011, Brian Winfrey wrote: Well, if you can't get BESEN to work, libsee definitely does. I even have an article on how to do it. Michael. ___ fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] Javascript in Desktop Applications

2011-02-07 Thread Andrew Brunner
On Mon, Feb 7, 2011 at 10:39 AM, Brian Winfrey bwcod...@gmail.com wrote: I have some interest in exploring javascript implementations for fpc. http://code.google.com/p/fpcjs/  -- Is this comparable to what you have noted? Actually fpcjs is the first project that I, (myself), have seen that

Re: [fpc-pascal] Javascript in Desktop Applications

2011-02-07 Thread Andrew Brunner
Hmmm... Mozilla is open source... :-) We are free to port the Scripting Engine to Pascal as long as we have the source? no? On Mon, Feb 7, 2011 at 11:31 AM, Michael Van Canneyt mich...@freepascal.org wrote: No, that project embeds mozilla in FPC. ___