summaryrefslogtreecommitdiff
path: root/javascript/jsapi/text.bnd
blob: eb17a943ebb268a3cf35f2579294222d228cc64f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* Binding to generate Text interface
 *
 * Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * Released under the terms of the MIT License,
 *         http://www.opensource.org/licenses/mit-license
 */


webidlfile "html.idl";

hdrcomment "Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>";
hdrcomment "This file is part of NetSurf, http://www.netsurf-browser.org/";
hdrcomment "Released under the terms of the MIT License,";
hdrcomment "        http://www.opensource.org/licenses/mit-license";

preamble %{

#include <dom/dom.h>

#include "utils/config.h"
#include "utils/log.h"
#include "render/html_internal.h"
#include "javascript/jsapi.h"

#include "text.h"

%}

#include "dom.bnd"

binding text {
    type js_libdom; /* the binding type */

    interface Text; /* Web IDL interface to generate */

    private "dom_text *" node;
    private "struct html_content *" htmlc; 
}

api finalise %{
        if (private != NULL) {
                dom_node_unref(private->node);
        }
%}