Re: Awesomium D wrappers/bindings

2012-12-29 Thread evilrat
i hate myself sometimes. figured out what the stuck is wrong. it was my raw input problems. so awesomium just need key down without text, and for text input one would need just set type and text fields.

Re: Awesomium D wrappers/bindings

2012-12-29 Thread evilrat
doh.. now it inputs 2 char in a row, this is really stupid because i'm not sending anything but single char event

Re: Awesomium D wrappers/bindings

2012-12-29 Thread evilrat
On Saturday, 29 December 2012 at 14:33:14 UTC, David wrote: Now that you say it, in my demo that also doesn't work, probably because of my ugly int -> dchar -> wchar casts i've debugged thru webflow demo, so they inject input 3 times in a row - keydown followed by keyup containing only vir

Re: Amber

2012-12-29 Thread Jacob Carlborg
On 2012-12-21 19:02, Lars Ivar Igesund wrote: Dear D community, I've been urged by many others to post about Amber here. It is a programming language being derived from D1, with a compiler written using D1 and Tango, with LLVM and C backends. The quality of code and documention is alpha (or pre-

Re: Remus

2012-12-29 Thread Namespace
On Friday, 28 December 2012 at 21:19:47 UTC, Namespace wrote: Update: Now available: auto ref compiler. Because I assume that the 'auto ref' situation won't be fixed in this release, I wrote a workaround which provides remedy. But I still hope, that someone writes a solution. So these code: h

Re: Remus

2012-12-29 Thread Namespace
Before I forget: the specially imported compiler flag "-del" deletes the (temporary) generated files immediately after compiling.

Re: Awesomium D wrappers/bindings

2012-12-29 Thread David
Am 29.12.2012 08:20, schrieb evilrat: > i can't make that damn raw input spit out unicode chars, and by some > reason awesomium internal func don't eat key codes too(well it eat, but > no chars in input), this is the only problem left before wrapper become > somehow useful... Now that you say it,