Top | ![]() |
![]() |
![]() |
![]() |
GXmlDomDocumentGXmlDomDocument — No implemented jet. This can lead to API changes in future versions. |
GXmlDomHTMLCollection * gxml_dom_document_get_elements_by_tag_name (GXmlDomDocument *self
,const gchar *local_name
);
GXmlDomHTMLCollection * gxml_dom_document_get_elements_by_tag_name_ns (GXmlDomDocument *self
,const gchar *namespace
,const gchar *local_name
);
GXmlDomHTMLCollection * gxml_dom_document_get_elements_by_class_name (GXmlDomDocument *self
,const gchar *classNames
);
GXmlDomElement * gxml_dom_document_create_element (GXmlDomDocument *self
,const gchar *local_name
,GError **error
);
self |
the GXmlDomDocument instance |
|
local_name |
|
|
error |
location to store the error occuring, or |
GXmlDomElement * gxml_dom_document_create_element_ns (GXmlDomDocument *self
,const gchar *namespace
,const gchar *qualified_name
,GError **error
);
self |
the GXmlDomDocument instance |
|
@namespace |
|
|
qualified_name |
|
|
error |
location to store the error occuring, or |
GXmlDomDocumentFragment *
gxml_dom_document_create_document_fragment
(GXmlDomDocument *self
);
GXmlDomText * gxml_dom_document_create_text_node (GXmlDomDocument *self
,const gchar *data
,GError **error
);
self |
the GXmlDomDocument instance |
|
data |
|
|
error |
location to store the error occuring, or |
GXmlDomComment * gxml_dom_document_create_comment (GXmlDomDocument *self
,const gchar *data
,GError **error
);
self |
the GXmlDomDocument instance |
|
data |
|
|
error |
location to store the error occuring, or |
GXmlDomProcessingInstruction * gxml_dom_document_create_processing_instruction (GXmlDomDocument *self
,const gchar *target
,const gchar *data
,GError **error
);
self |
the GXmlDomDocument instance |
|
target |
|
|
data |
|
|
error |
location to store the error occuring, or |
GXmlDomNode * gxml_dom_document_import_node (GXmlDomDocument *self
,GXmlDomNode *node
,gboolean deep
,GError **error
);
self |
the GXmlDomDocument instance |
|
node |
|
|
deep |
|
|
error |
location to store the error occuring, or |
GXmlDomNode * gxml_dom_document_adopt_node (GXmlDomDocument *self
,GXmlDomNode *node
,GError **error
);
self |
the GXmlDomDocument instance |
|
node |
|
|
error |
location to store the error occuring, or |
GXmlDomEvent * gxml_dom_document_create_event (GXmlDomDocument *self
,const gchar *interface
,GError **error
);
No implemented jet. This can lead to API changes in future versions.
self |
the GXmlDomDocument instance |
|
@interface |
|
|
error |
location to store the error occuring, or |
GXmlDomRange *
gxml_dom_document_create_range (GXmlDomDocument *self
);
No implemented jet. This can lead to API changes in future versions.
GXmlDomNodeIterator * gxml_dom_document_create_node_iterator (GXmlDomDocument *self
,GXmlDomNode *root
,gulong whatToShow
,GXmlDomNodeFilter *filter
);
No implemented jet. This can lead to API changes in future versions.
GXmlDomTreeWalker * gxml_dom_document_create_tree_walker (GXmlDomDocument *self
,GXmlDomNode *root
,gulong what_to_show
,GXmlDomNodeFilter *filter
);
No implemented jet. This can lead to API changes in future versions.
GXmlDomImplementation *
gxml_dom_document_get_implementation (GXmlDomDocument *self
);
Get and return the current value of the "implementation" property.
const gchar *
gxml_dom_document_get_url (GXmlDomDocument *self
);
Get and return the current value of the "url" property.
const gchar *
gxml_dom_document_get_document_uri (GXmlDomDocument *self
);
Get and return the current value of the "document-uri" property.
const gchar *
gxml_dom_document_get_origin (GXmlDomDocument *self
);
Get and return the current value of the "origin" property.
const gchar *
gxml_dom_document_get_compat_mode (GXmlDomDocument *self
);
Get and return the current value of the "compat-mode" property.
const gchar *
gxml_dom_document_get_character_set (GXmlDomDocument *self
);
Get and return the current value of the "character-set" property.
const gchar *
gxml_dom_document_get_content_type (GXmlDomDocument *self
);
Get and return the current value of the "content-type" property.
GXmlDomDocumentType *
gxml_dom_document_get_doctype (GXmlDomDocument *self
);
Get and return the current value of the "doctype" property.
GXmlDomElement *
gxml_dom_document_get_document_element
(GXmlDomDocument *self
);
Get and return the current value of the "document-element" property.
GXmlDomDocumentType * gxml_dom_implementation_create_document_type (GXmlDomImplementation *self
,const gchar *qualified_name
,const gchar *public_id
,const gchar *system_id
,GError **error
);
self |
the GXmlDomImplementation instance |
|
qualified_name |
|
|
public_id |
|
|
system_id |
|
|
error |
location to store the error occuring, or |
GXmlDomXMLDocument * gxml_dom_implementation_create_document (GXmlDomImplementation *self
,const gchar *nspace
,const gchar *qualified_name
,GXmlDocumentType *doctype
,GError **error
);
self |
the GXmlDomImplementation instance |
|
nspace |
|
|
qualified_name |
|
|
doctype |
|
|
error |
location to store the error occuring, or |
GXmlDocument * gxml_dom_implementation_create_html_document (GXmlDomImplementation *self
,const gchar *title
);
gboolean
gxml_dom_implementation_has_feature (GXmlDomImplementation *self
);
const gchar *
gxml_dom_document_type_get_name (GXmlDomDocumentType *self
);
Get and return the current value of the "name" property.
const gchar *
gxml_dom_document_type_get_public_id (GXmlDomDocumentType *self
);
Get and return the current value of the "public-id" property.
const gchar *
gxml_dom_document_type_get_system_id (GXmlDomDocumentType *self
);
Get and return the current value of the "system-id" property.
struct GXmlDomDocumentIface { GTypeInterface parent_iface; GXmlDomHTMLCollection* (*get_elements_by_tag_name) (GXmlDomDocument* self, const gchar* local_name); GXmlDomHTMLCollection* (*get_elements_by_tag_name_ns) (GXmlDomDocument* self, const gchar* namespace, const gchar* local_name); GXmlDomHTMLCollection* (*get_elements_by_class_name) (GXmlDomDocument* self, const gchar* classNames); GXmlDomElement* (*create_element) (GXmlDomDocument* self, const gchar* local_name, GError** error); GXmlDomElement* (*create_element_ns) (GXmlDomDocument* self, const gchar* namespace, const gchar* qualified_name, GError** error); GXmlDomDocumentFragment* (*create_document_fragment) (GXmlDomDocument* self); GXmlDomText* (*create_text_node) (GXmlDomDocument* self, const gchar* data, GError** error); GXmlDomComment* (*create_comment) (GXmlDomDocument* self, const gchar* data, GError** error); GXmlDomProcessingInstruction* (*create_processing_instruction) (GXmlDomDocument* self, const gchar* target, const gchar* data, GError** error); GXmlDomNode* (*import_node) (GXmlDomDocument* self, GXmlDomNode* node, gboolean deep, GError** error); GXmlDomNode* (*adopt_node) (GXmlDomDocument* self, GXmlDomNode* node, GError** error); GXmlDomEvent* (*create_event) (GXmlDomDocument* self, const gchar* interface, GError** error); GXmlDomRange* (*create_range) (GXmlDomDocument* self); GXmlDomNodeIterator* (*create_node_iterator) (GXmlDomDocument* self, GXmlDomNode* root, gulong whatToShow, GXmlDomNodeFilter* filter); GXmlDomTreeWalker* (*create_tree_walker) (GXmlDomDocument* self, GXmlDomNode* root, gulong what_to_show, GXmlDomNodeFilter* filter); GXmlDomImplementation* (*get_implementation) (GXmlDomDocument* self); const gchar* (*get_url) (GXmlDomDocument* self); const gchar* (*get_document_uri) (GXmlDomDocument* self); const gchar* (*get_origin) (GXmlDomDocument* self); const gchar* (*get_compat_mode) (GXmlDomDocument* self); const gchar* (*get_character_set) (GXmlDomDocument* self); const gchar* (*get_content_type) (GXmlDomDocument* self); GXmlDomDocumentType* (*get_doctype) (GXmlDomDocument* self); GXmlDomElement* (*get_document_element) (GXmlDomDocument* self); };
Interface for creating GXmlDomDocument implementations.
the parent interface structure |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
getter method for the abstract property "implementation" |
||
getter method for the abstract property "url" |
||
getter method for the abstract property "document-uri" |
||
getter method for the abstract property "origin" |
||
getter method for the abstract property "compat-mode" |
||
getter method for the abstract property "character-set" |
||
getter method for the abstract property "content-type" |
||
getter method for the abstract property "doctype" |
||
getter method for the abstract property "document-element" |
struct GXmlDomXMLDocumentIface { GTypeInterface parent_iface; };
Interface for creating GXmlDomXMLDocument implementations.
typedef struct _GXmlDomImplementation GXmlDomImplementation;
No implemented jet. This can lead to API changes in future versions.
struct GXmlDomImplementationIface { GTypeInterface parent_iface; GXmlDomDocumentType* (*create_document_type) (GXmlDomImplementation* self, const gchar* qualified_name, const gchar* public_id, const gchar* system_id, GError** error); GXmlDomXMLDocument* (*create_document) (GXmlDomImplementation* self, const gchar* nspace, const gchar* qualified_name, GXmlDocumentType* doctype, GError** error); GXmlDocument* (*create_html_document) (GXmlDomImplementation* self, const gchar* title); gboolean (*has_feature) (GXmlDomImplementation* self); };
Interface for creating GXmlDomImplementation implementations.
the parent interface structure |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
||
virtual method called by |
typedef struct _GXmlDomDocumentFragment GXmlDomDocumentFragment;
No implemented jet. This can lead to API changes in future versions.
struct GXmlDomDocumentFragmentIface { GTypeInterface parent_iface; };
Interface for creating GXmlDomDocumentFragment implementations.
typedef struct _GXmlDomDocumentType GXmlDomDocumentType;
No implemented jet. This can lead to API changes in future versions.
struct GXmlDomDocumentTypeIface { GTypeInterface parent_iface; const gchar* (*get_name) (GXmlDomDocumentType* self); const gchar* (*get_public_id) (GXmlDomDocumentType* self); const gchar* (*get_system_id) (GXmlDomDocumentType* self); };
Interface for creating GXmlDomDocumentType implementations.