* bindings/vapi/javascriptcore-4.0.vapi: Add some methods to GlobalContext for accessing JSValues as ints. * src/client/components/client-web-view.vala (ClientWebView): Hook up UserContentManager script messages handler and handler implementation for "preferredHeightChanged", update the new preferred_height prop on the class, and queue a resize. Hook those values up to the GTK allocation machinery. (ClientWebView::get_int_result): Convenience method for getting an int from a JavascriptResult. (ClientWebView::get_preferred_height): Report back values as reported by messages from the script handler. (ClientWebView::register_message_handler): Convenience method for registering script messages handlers. * src/client/conversation-viewer/conversation-web-view.vala (ConversationWebView): Remove now-redundant GTK allocation machinery. * ui/client-web-view.js: Post a message to preferredHeightChanged when the page is sorta-kinda loaded.
22 lines
578 B
Vala
22 lines
578 B
Vala
/* javascriptcore-4.0.vapi. */
|
|
|
|
[CCode (cprefix = "JS", gir_namespace = "JavaScriptCore", gir_version = "4.0", lower_case_cprefix = "JS_", cheader_filename = "JavaScriptCore/JavaScript.h")]
|
|
namespace JS {
|
|
|
|
[CCode (cname = "JSGlobalContextRef")]
|
|
[SimpleType]
|
|
public struct GlobalContext {
|
|
|
|
[CCode (cname = "JSValueIsNumber")]
|
|
public bool isNumber(JS.Value value);
|
|
|
|
[CCode (cname = "JSValueToNumber")]
|
|
public double toNumber(JS.Value value, out JS.Value err);
|
|
|
|
}
|
|
|
|
[CCode (cname = "JSValueRef")]
|
|
[SimpleType]
|
|
public struct Value {
|
|
}
|
|
}
|