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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/* -*- Mode: vala; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
/*
*
* Copyright (C) 2016 Daniel Espinosa <esodan@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Daniel Espinosa <esodan@gmail.com>
*/
public interface GXml.DomDocument : GLib.Object,
GXml.DomNode,
GXml.DomParentNode,
GXml.DomNonElementParentNode
{
public abstract DomImplementation implementation { get; }
public abstract string url { get; }
public abstract string document_uri { get; }
public abstract string origin { get; }
public abstract string compat_mode { get; }
public abstract string character_set { get; }
public abstract string content_type { get; }
public abstract DomDocumentType? doctype { owned get; }
public abstract DomElement? document_element { owned get; }
public abstract DomHTMLCollection get_elements_by_tag_name (string local_name);
public abstract DomHTMLCollection get_elements_by_tag_name_ns (string? namespace, string local_name);
public abstract DomHTMLCollection get_elements_by_class_name(string classNames);
public abstract DomElement create_element (string local_name) throws GLib.Error;
public abstract DomElement create_element_ns (string? namespace, string qualified_name) throws GLib.Error;
public abstract DomDocumentFragment create_document_fragment();
public abstract DomText create_text_node (string data) throws GLib.Error;
public abstract DomComment create_comment (string data) throws GLib.Error;
public abstract DomProcessingInstruction create_processing_instruction (string target, string data) throws GLib.Error;
public abstract DomNode import_node (DomNode node, bool deep = false) throws GLib.Error;
public abstract DomNode adopt_node (DomNode node) throws GLib.Error;
/**
* No implemented jet. This can lead to API changes in future versions.
*/
public abstract DomEvent create_event (string interface) throws GLib.Error;
/**
* No implemented jet. This can lead to API changes in future versions.
*/
public abstract DomRange create_range();
// NodeFilter.SHOW_ALL = 0xFFFFFFFF
/**
* No implemented jet. This can lead to API changes in future versions.
*/
public abstract DomNodeIterator create_node_iterator (DomNode root, int whatToShow = (int) 0xFFFFFFFF, DomNodeFilter? filter = null);
/**
* No implemented jet. This can lead to API changes in future versions.
*/
public abstract DomTreeWalker create_tree_walker (DomNode root, int what_to_show = (int) 0xFFFFFFFF, DomNodeFilter? filter = null);
}
public interface GXml.DomXMLDocument : GLib.Object, GXml.DomDocument {}
/**
* No implemented jet. This can lead to API changes in future versions.
*/
public interface GXml.DomImplementation : GLib.Object {
public abstract DomDocumentType create_document_type (string qualified_name, string public_id, string system_id) throws GLib.Error;
public abstract DomXMLDocument create_document (string? nspace,
string? qualified_name,
DomDocumentType? doctype = null) throws GLib.Error;
public abstract Document create_html_document (string title);
public virtual bool has_feature() { return true; } // useless; always returns true
}
/**
* No implemented jet. This can lead to API changes in future versions.
*/
public interface GXml.DomDocumentFragment : GLib.Object,
GXml.DomNode,
GXml.DomParentNode,
GXml.DomNonElementParentNode
{}
/**
* No implemented jet. This can lead to API changes in future versions.
*/
public interface GXml.DomDocumentType : GLib.Object, GXml.DomNode, GXml.DomChildNode {
public abstract string name { get; }
public abstract string public_id { get; }
public abstract string system_id { get; }
}
|