Top |
GObject ╰── WebKitDOMObject ╰── WebKitDOMNode ╰── WebKitDOMDocument ╰── WebKitDOMHTMLDocument
WebKitDOMElement * webkit_dom_document_create_element (WebKitDOMDocument *self
,const gchar *tagName
,GError **error
);
WebKitDOMDocumentFragment *
webkit_dom_document_create_document_fragment
(WebKitDOMDocument *self
);
WebKitDOMText * webkit_dom_document_create_text_node (WebKitDOMDocument *self
,const gchar *data
);
WebKitDOMComment * webkit_dom_document_create_comment (WebKitDOMDocument *self
,const gchar *data
);
WebKitDOMCDATASection * webkit_dom_document_create_cdata_section (WebKitDOMDocument *self
,const gchar *data
,GError **error
);
WebKitDOMProcessingInstruction * webkit_dom_document_create_processing_instruction (WebKitDOMDocument *self
,const gchar *target
,const gchar *data
,GError **error
);
WebKitDOMAttr * webkit_dom_document_create_attribute (WebKitDOMDocument *self
,const gchar *name
,GError **error
);
WebKitDOMHTMLCollection * webkit_dom_document_get_elements_by_tag_name_as_html_collection (WebKitDOMDocument *self
,const gchar *tagname
);
Since: 2.12
WebKitDOMNode * webkit_dom_document_import_node (WebKitDOMDocument *self
,WebKitDOMNode *importedNode
,gboolean deep
,GError **error
);
WebKitDOMElement * webkit_dom_document_create_element_ns (WebKitDOMDocument *self
,const gchar *namespaceURI
,const gchar *qualifiedName
,GError **error
);
WebKitDOMAttr * webkit_dom_document_create_attribute_ns (WebKitDOMDocument *self
,const gchar *namespaceURI
,const gchar *qualifiedName
,GError **error
);
WebKitDOMHTMLCollection * webkit_dom_document_get_elements_by_tag_name_ns_as_html_collection (WebKitDOMDocument *self
,const gchar *namespaceURI
,const gchar *localName
);
Since: 2.12
WebKitDOMNode * webkit_dom_document_adopt_node (WebKitDOMDocument *self
,WebKitDOMNode *source
,GError **error
);
WebKitDOMEvent * webkit_dom_document_create_event (WebKitDOMDocument *self
,const gchar *eventType
,GError **error
);
WebKitDOMRange *
webkit_dom_document_create_range (WebKitDOMDocument *self
);
WebKitDOMNodeIterator * webkit_dom_document_create_node_iterator (WebKitDOMDocument *self
,WebKitDOMNode *root
,gulong whatToShow
,WebKitDOMNodeFilter *filter
,gboolean expandEntityReferences
,GError **error
);
WebKitDOMTreeWalker * webkit_dom_document_create_tree_walker (WebKitDOMDocument *self
,WebKitDOMNode *root
,gulong whatToShow
,WebKitDOMNodeFilter *filter
,gboolean expandEntityReferences
,GError **error
);
WebKitDOMCSSStyleDeclaration * webkit_dom_document_get_override_style (WebKitDOMDocument *self
,WebKitDOMElement *element
,const gchar *pseudoElement
);
WebKitDOMXPathExpression * webkit_dom_document_create_expression (WebKitDOMDocument *self
,const gchar *expression
,WebKitDOMXPathNSResolver *resolver
,GError **error
);
WebKitDOMXPathNSResolver * webkit_dom_document_create_ns_resolver (WebKitDOMDocument *self
,WebKitDOMNode *nodeResolver
);
WebKitDOMXPathResult * webkit_dom_document_evaluate (WebKitDOMDocument *self
,const gchar *expression
,WebKitDOMNode *contextNode
,WebKitDOMXPathNSResolver *resolver
,gushort type
,WebKitDOMXPathResult *inResult
,GError **error
);
gboolean webkit_dom_document_exec_command (WebKitDOMDocument *self
,const gchar *command
,gboolean userInterface
,const gchar *value
);
gboolean webkit_dom_document_query_command_enabled (WebKitDOMDocument *self
,const gchar *command
);
gboolean webkit_dom_document_query_command_indeterm (WebKitDOMDocument *self
,const gchar *command
);
gboolean webkit_dom_document_query_command_state (WebKitDOMDocument *self
,const gchar *command
);
gboolean webkit_dom_document_query_command_supported (WebKitDOMDocument *self
,const gchar *command
);
gchar * webkit_dom_document_query_command_value (WebKitDOMDocument *self
,const gchar *command
);
WebKitDOMNodeList * webkit_dom_document_get_elements_by_name (WebKitDOMDocument *self
,const gchar *elementName
);
WebKitDOMElement * webkit_dom_document_element_from_point (WebKitDOMDocument *self
,glong x
,glong y
);
WebKitDOMCSSStyleDeclaration *
webkit_dom_document_create_css_style_declaration
(WebKitDOMDocument *self
);
WebKitDOMHTMLCollection * webkit_dom_document_get_elements_by_class_name_as_html_collection (WebKitDOMDocument *self
,const gchar *classNames
);
Since: 2.12
WebKitDOMElement * webkit_dom_document_get_element_by_id (WebKitDOMDocument *self
,const gchar *elementId
);
WebKitDOMElement * webkit_dom_document_query_selector (WebKitDOMDocument *self
,const gchar *selectors
,GError **error
);
WebKitDOMNodeList * webkit_dom_document_query_selector_all (WebKitDOMDocument *self
,const gchar *selectors
,GError **error
);
WebKitDOMDocumentType *
webkit_dom_document_get_doctype (WebKitDOMDocument *self
);
WebKitDOMDOMImplementation *
webkit_dom_document_get_implementation
(WebKitDOMDocument *self
);
WebKitDOMElement *
webkit_dom_document_get_document_element
(WebKitDOMDocument *self
);
gchar *
webkit_dom_document_get_input_encoding
(WebKitDOMDocument *self
);
gchar *
webkit_dom_document_get_xml_encoding (WebKitDOMDocument *self
);
gchar *
webkit_dom_document_get_xml_version (WebKitDOMDocument *self
);
void webkit_dom_document_set_xml_version (WebKitDOMDocument *self
,const gchar *value
,GError **error
);
gboolean
webkit_dom_document_get_xml_standalone
(WebKitDOMDocument *self
);
void webkit_dom_document_set_xml_standalone (WebKitDOMDocument *self
,gboolean value
,GError **error
);
gchar *
webkit_dom_document_get_document_uri (WebKitDOMDocument *self
);
void webkit_dom_document_set_document_uri (WebKitDOMDocument *self
,const gchar *value
);
WebKitDOMDOMWindow *
webkit_dom_document_get_default_view (WebKitDOMDocument *self
);
WebKitDOMStyleSheetList *
webkit_dom_document_get_style_sheets (WebKitDOMDocument *self
);
void webkit_dom_document_set_title (WebKitDOMDocument *self
,const gchar *value
);
gchar *
webkit_dom_document_get_design_mode (WebKitDOMDocument *self
);
Since: 2.14
void webkit_dom_document_set_design_mode (WebKitDOMDocument *self
,const gchar *value
);
Since: 2.14
gchar *
webkit_dom_document_get_referrer (WebKitDOMDocument *self
);
gchar * webkit_dom_document_get_cookie (WebKitDOMDocument *self
,GError **error
);
void webkit_dom_document_set_cookie (WebKitDOMDocument *self
,const gchar *value
,GError **error
);
WebKitDOMHTMLElement *
webkit_dom_document_get_body (WebKitDOMDocument *self
);
void webkit_dom_document_set_body (WebKitDOMDocument *self
,WebKitDOMHTMLElement *value
,GError **error
);
WebKitDOMHTMLHeadElement *
webkit_dom_document_get_head (WebKitDOMDocument *self
);
WebKitDOMHTMLCollection *
webkit_dom_document_get_images (WebKitDOMDocument *self
);
WebKitDOMHTMLCollection *
webkit_dom_document_get_applets (WebKitDOMDocument *self
);
WebKitDOMHTMLCollection *
webkit_dom_document_get_links (WebKitDOMDocument *self
);
WebKitDOMHTMLCollection *
webkit_dom_document_get_forms (WebKitDOMDocument *self
);
WebKitDOMHTMLCollection *
webkit_dom_document_get_anchors (WebKitDOMDocument *self
);
WebKitDOMHTMLCollection *
webkit_dom_document_get_embeds (WebKitDOMDocument *self
);
Since: 2.14
WebKitDOMHTMLCollection *
webkit_dom_document_get_plugins (WebKitDOMDocument *self
);
Since: 2.14
WebKitDOMHTMLCollection *
webkit_dom_document_get_scripts (WebKitDOMDocument *self
);
Since: 2.14
gchar *
webkit_dom_document_get_last_modified (WebKitDOMDocument *self
);
gchar *
webkit_dom_document_get_charset (WebKitDOMDocument *self
);
void webkit_dom_document_set_charset (WebKitDOMDocument *self
,const gchar *value
);
gchar *
webkit_dom_document_get_ready_state (WebKitDOMDocument *self
);
gchar *
webkit_dom_document_get_character_set (WebKitDOMDocument *self
);
gchar *
webkit_dom_document_get_preferred_stylesheet_set
(WebKitDOMDocument *self
);
gchar *
webkit_dom_document_get_selected_stylesheet_set
(WebKitDOMDocument *self
);
void webkit_dom_document_set_selected_stylesheet_set (WebKitDOMDocument *self
,const gchar *value
);
WebKitDOMElement *
webkit_dom_document_get_active_element
(WebKitDOMDocument *self
);
gchar *
webkit_dom_document_get_compat_mode (WebKitDOMDocument *self
);
Since: 2.14
WebKitDOMNodeList * webkit_dom_document_get_elements_by_class_name (WebKitDOMDocument *self
,const gchar *class_name
);
webkit_dom_document_get_elements_by_class_name
has been deprecated since version 2.12 and should not be used in newly-written code.
Use webkit_dom_document_get_elements_by_class_name_as_html_collection()
instead.
WebKitDOMNodeList * webkit_dom_document_get_elements_by_tag_name (WebKitDOMDocument *self
,const gchar *tag_name
);
webkit_dom_document_get_elements_by_tag_name
has been deprecated since version 2.12 and should not be used in newly-written code.
Use webkit_dom_document_get_elements_by_tag_name_as_html_collection()
instead.
WebKitDOMNodeList * webkit_dom_document_get_elements_by_tag_name_ns (WebKitDOMDocument *self
,const gchar *namespace_uri
,const gchar *tag_name
);
webkit_dom_document_get_elements_by_tag_name_ns
has been deprecated since version 2.12 and should not be used in newly-written code.
Use webkit_dom_document_get_elements_by_tag_name_ns_as_html_collection()
instead.
WebKitDOMEntityReference * webkit_dom_document_create_entity_reference (WebKitDOMDocument *self
,const gchar *name
,GError **error
);
webkit_dom_document_create_entity_reference
has been deprecated since version 2.12 and should not be used in newly-written code.
This function has been removed from the DOM spec and it just returns NULL
.
gchar *
webkit_dom_document_get_default_charset
(WebKitDOMDocument *self
);
webkit_dom_document_get_default_charset
has been deprecated since version 2.14 and should not be used in newly-written code.
WebKitDOMRange * webkit_dom_document_caret_range_from_point (WebKitDOMDocument *self
,glong x
,glong y
);
Since: 2.16
void
webkit_dom_document_webkit_cancel_fullscreen
(WebKitDOMDocument *self
);
Since: 2.16
void
webkit_dom_document_webkit_exit_fullscreen
(WebKitDOMDocument *self
);
Since: 2.16
void
webkit_dom_document_exit_pointer_lock (WebKitDOMDocument *self
);
Since: 2.16
gchar *
webkit_dom_document_get_content_type (WebKitDOMDocument *self
);
Since: 2.16
gchar *
webkit_dom_document_get_dir (WebKitDOMDocument *self
);
Since: 2.16
void webkit_dom_document_set_dir (WebKitDOMDocument *self
,const gchar *value
);
Since: 2.16
gboolean
webkit_dom_document_get_webkit_is_fullscreen
(WebKitDOMDocument *self
);
Since: 2.16
gboolean
webkit_dom_document_get_webkit_fullscreen_keyboard_input_allowed
(WebKitDOMDocument *self
);
Since: 2.16
WebKitDOMElement *
webkit_dom_document_get_webkit_current_fullscreen_element
(WebKitDOMDocument *self
);
Since: 2.16
gboolean
webkit_dom_document_get_webkit_fullscreen_enabled
(WebKitDOMDocument *self
);
Since: 2.16
WebKitDOMElement *
webkit_dom_document_get_webkit_fullscreen_element
(WebKitDOMDocument *self
);
Since: 2.16
WebKitDOMElement *
webkit_dom_document_get_pointer_lock_element
(WebKitDOMDocument *self
);
Since: 2.16
gchar *
webkit_dom_document_get_visibility_state
(WebKitDOMDocument *self
);
Since: 2.16
gboolean
webkit_dom_document_get_hidden (WebKitDOMDocument *self
);
Since: 2.16
WebKitDOMHTMLScriptElement *
webkit_dom_document_get_current_script
(WebKitDOMDocument *self
);
Since: 2.16
gchar *
webkit_dom_document_get_origin (WebKitDOMDocument *self
);
Since: 2.16
WebKitDOMElement *
webkit_dom_document_get_scrolling_element
(WebKitDOMDocument *self
);
Since: 2.16
WebKitDOMHTMLCollection *
webkit_dom_document_get_children (WebKitDOMDocument *self
);
Since: 2.16
WebKitDOMElement *
webkit_dom_document_get_first_element_child
(WebKitDOMDocument *self
);
Since: 2.16
WebKitDOMElement *
webkit_dom_document_get_last_element_child
(WebKitDOMDocument *self
);
Since: 2.16
gulong
webkit_dom_document_get_child_element_count
(WebKitDOMDocument *self
);
Since: 2.16
“active-element”
property“active-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:active-element.
Flags: Read
“anchors”
property“anchors” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:anchors.
Flags: Read
“applets”
property“applets” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:applets.
Flags: Read
“body”
property“body” WebKitDOMHTMLElement *
read-only WebKitDOMHTMLElement* Document:body.
Flags: Read
“character-set”
property“character-set” gchar *
read-only gchar* Document:character-set.
Flags: Read
Default value: ""
“charset”
property“charset” gchar *
read-write gchar* Document:charset.
Flags: Read / Write
Default value: ""
“child-element-count”
property“child-element-count” gulong
read-only gulong Document:child-element-count.
Flags: Read
“children”
property“children” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:children.
Flags: Read
“compat-mode”
property“compat-mode” gchar *
read-only gchar* Document:compat-mode.
Flags: Read
Default value: ""
“content-type”
property“content-type” gchar *
read-only gchar* Document:content-type.
Flags: Read
Default value: ""
“cookie”
property“cookie” gchar *
read-write gchar* Document:cookie.
Flags: Read / Write
Default value: ""
“current-script”
property“current-script” WebKitDOMHTMLScriptElement *
read-only WebKitDOMHTMLScriptElement* Document:current-script.
Flags: Read
“default-view”
property“default-view” WebKitDOMDOMWindow *
read-only WebKitDOMDOMWindow* Document:default-view.
Flags: Read
“design-mode”
property“design-mode” gchar *
read-write gchar* Document:design-mode.
Flags: Read / Write
Default value: ""
“dir”
property“dir” gchar *
read-write gchar* Document:dir.
Flags: Read / Write
Default value: ""
“doctype”
property“doctype” WebKitDOMDocumentType *
read-only WebKitDOMDocumentType* Document:doctype.
Flags: Read
“document-element”
property“document-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:document-element.
Flags: Read
“document-uri”
property“document-uri” gchar *
read-write gchar* Document:document-uri.
Flags: Read / Write
Default value: ""
“domain”
property“domain” gchar *
read-only gchar* Document:domain.
Flags: Read
Default value: ""
“embeds”
property“embeds” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:embeds.
Flags: Read
“first-element-child”
property“first-element-child” WebKitDOMElement *
read-only WebKitDOMElement* Document:first-element-child.
Flags: Read
“forms”
property“forms” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:forms.
Flags: Read
“head”
property“head” WebKitDOMHTMLHeadElement *
read-only WebKitDOMHTMLHeadElement* Document:head.
Flags: Read
“hidden”
property“hidden” gboolean
read-only gboolean Document:hidden.
Flags: Read
Default value: FALSE
“images”
property“images” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:images.
Flags: Read
“implementation”
property“implementation” WebKitDOMDOMImplementation *
read-only WebKitDOMDOMImplementation* Document:implementation.
Flags: Read
“input-encoding”
property“input-encoding” gchar *
read-only gchar* Document:input-encoding.
Flags: Read
Default value: ""
“last-element-child”
property“last-element-child” WebKitDOMElement *
read-only WebKitDOMElement* Document:last-element-child.
Flags: Read
“last-modified”
property“last-modified” gchar *
read-only gchar* Document:last-modified.
Flags: Read
Default value: ""
“links”
property“links” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:links.
Flags: Read
“origin”
property“origin” gchar *
read-only gchar* Document:origin.
Flags: Read
Default value: ""
“plugins”
property“plugins” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:plugins.
Flags: Read
“pointer-lock-element”
property“pointer-lock-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:pointer-lock-element.
Flags: Read
“preferred-stylesheet-set”
property“preferred-stylesheet-set” gchar *
read-only gchar* Document:preferred-stylesheet-set.
Flags: Read
Default value: ""
“ready-state”
property“ready-state” gchar *
read-only gchar* Document:ready-state.
Flags: Read
Default value: ""
“referrer”
property“referrer” gchar *
read-only gchar* Document:referrer.
Flags: Read
Default value: ""
“scripts”
property“scripts” WebKitDOMHTMLCollection *
read-only WebKitDOMHTMLCollection* Document:scripts.
Flags: Read
“scrolling-element”
property“scrolling-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:scrolling-element.
Flags: Read
“selected-stylesheet-set”
property“selected-stylesheet-set” gchar *
read-write gchar* Document:selected-stylesheet-set.
Flags: Read / Write
Default value: ""
“style-sheets”
property“style-sheets” WebKitDOMStyleSheetList *
read-only WebKitDOMStyleSheetList* Document:style-sheets.
Flags: Read
“title”
property“title” gchar *
read-write gchar* Document:title.
Flags: Read / Write
Default value: ""
“visibility-state”
property“visibility-state” gchar *
read-only gchar* Document:visibility-state.
Flags: Read
Default value: ""
“webkit-current-full-screen-element”
property“webkit-current-full-screen-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:webkit-current-full-screen-element.
Flags: Read
“webkit-full-screen-keyboard-input-allowed”
property“webkit-full-screen-keyboard-input-allowed” gboolean
read-only gboolean Document:webkit-full-screen-keyboard-input-allowed.
Flags: Read
Default value: FALSE
“webkit-fullscreen-element”
property“webkit-fullscreen-element” WebKitDOMElement *
read-only WebKitDOMElement* Document:webkit-fullscreen-element.
Flags: Read
“webkit-fullscreen-enabled”
property“webkit-fullscreen-enabled” gboolean
read-only gboolean Document:webkit-fullscreen-enabled.
Flags: Read
Default value: FALSE
“webkit-is-full-screen”
property“webkit-is-full-screen” gboolean
read-only gboolean Document:webkit-is-full-screen.
Flags: Read
Default value: FALSE
“xml-encoding”
property“xml-encoding” gchar *
read-only gchar* Document:xml-encoding.
Flags: Read
Default value: ""
“xml-standalone”
property“xml-standalone” gboolean
read-write gboolean Document:xml-standalone.
Flags: Read / Write
Default value: FALSE
“xml-version”
property“xml-version” gchar *
read-write gchar* Document:xml-version.
Flags: Read / Write
Default value: ""