December 27, 2012
Am 27.12.2012 15:30, schrieb evilrat:
> On Thursday, 27 December 2012 at 13:16:33 UTC, David wrote:
>>
>> I started with an abstraction: https://github.com/Dav1dde/wonne
>>
>> Currently I've done only strings, I think I can add the rest today
> 
> just to mention, last time i tried D wchar with awesomium wchar it was pure fail, but may be i've just a bit messed up somewhere

It works fine (at least injecting char events as wchar), probably you
mixed up wchar_t and wchar16
December 27, 2012
Webcore, done
Webview, done (except the callbacks)
Renderbuffer, done

And bindings are waiting to get into deimos: https://github.com/D-Programming-Deimos/awesomium/pull/1
December 28, 2012
On Thursday, 27 December 2012 at 17:31:58 UTC, David wrote:
> Webcore, done
> Webview, done (except the callbacks)
> Renderbuffer, done
>
> And bindings are waiting to get into deimos:
> https://github.com/D-Programming-Deimos/awesomium/pull/1

will there be OOP wrapper in deimos? or deimos is purely for C header translation?
December 28, 2012
On Thursday, 27 December 2012 at 17:31:58 UTC, David wrote:
> Webcore, done
> Webview, done (except the callbacks)
> Renderbuffer, done
>
> And bindings are waiting to get into deimos:
> https://github.com/D-Programming-Deimos/awesomium/pull/1

will there be OOP wrapper? or deimos is purely for C headers translation?
December 28, 2012
On 12/27/2012 6:17 PM, evilrat wrote:
> will there be OOP wrapper? or deimos is purely for C headers translation?

Deimos is purely for C header translation.
December 28, 2012
On Thursday, 27 December 2012 at 17:31:58 UTC, David wrote:
> Webcore, done
> Webview, done (except the callbacks)
> Renderbuffer, done
>
> And bindings are waiting to get into deimos:
> https://github.com/D-Programming-Deimos/awesomium/pull/1

will there be OOP wrapper? or deimos is purely for C header translation?
December 28, 2012
oh god. it was lagging this morning, sry for flood
December 29, 2012
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...
December 29, 2012
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, in my demo that also doesn't work, probably because of my ugly int -> dchar -> wchar casts
December 30, 2012
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 virtual_keycode(awesomium code), key_scan_code and key text representation(taken from their getkey... func), the last one is char type input which contains all above but adds text and unmodified_text to event, so without full info it wont put text in browser...