#include <cr-doc-handler.h>
Data Fields | |
CRDocHandlerPriv * | priv |
gpointer | app_data |
This pointer is to be used by the application for it custom needs. | |
void(* | start_document )(CRDocHandler *a_this) |
Is called at the beginning of the parsing of the document. | |
void(* | end_document )(CRDocHandler *a_this) |
Is called to notify the end of the parsing of the document. | |
void(* | charset )(CRDocHandler *a_this, CRString *a_charset, CRParsingLocation *a_charset_sym_location) |
Is called to notify an at charset rule. | |
void(* | import_style )(CRDocHandler *a_this, GList *a_media_list, CRString *a_uri, CRString *a_uri_default_ns, CRParsingLocation *a_location) |
Is called to notify an import statement in the stylesheet. | |
void(* | import_style_result )(CRDocHandler *a_this, GList *a_media_list, CRString *a_uri, CRString *a_uri_default_ns, CRStyleSheet *a_sheet) |
void(* | namespace_declaration )(CRDocHandler *a_this, CRString *a_prefix, CRString *a_uri, CRParsingLocation *a_location) |
Is called to notify a namespace declaration. | |
void(* | comment )(CRDocHandler *a_this, CRString *a_comment) |
Is called to notify a comment. | |
void(* | start_selector )(CRDocHandler *a_this, CRSelector *a_selector_list) |
Is called to notify the beginning of a rule statement. | |
void(* | end_selector )(CRDocHandler *a_this, CRSelector *a_selector_list) |
Is called to notify the end of a rule statement. | |
void(* | property )(CRDocHandler *a_this, CRString *a_name, CRTerm *a_expression, gboolean a_is_important) |
Is called to notify a declaration. | |
void(* | start_font_face )(CRDocHandler *a_this, CRParsingLocation *a_location) |
Is called to notify the start of a font face statement. | |
void(* | end_font_face )(CRDocHandler *a_this) |
Is called to notify the end of a font face statement. | |
void(* | start_media )(CRDocHandler *a_this, GList *a_media_list, CRParsingLocation *a_location) |
Is called to notify the beginning of a media statement. | |
void(* | end_media )(CRDocHandler *a_this, GList *a_media_list) |
Is called to notify the end of a media statement. | |
void(* | start_page )(CRDocHandler *a_this, CRString *a_name, CRString *a_pseudo_page, CRParsingLocation *a_location) |
Is called to notify the beginning of a page statement. | |
void(* | end_page )(CRDocHandler *a_this, CRString *a_name, CRString *pseudo_page) |
Is called to notify the end of a page statement. | |
void(* | ignorable_at_rule )(CRDocHandler *a_this, CRString *a_name) |
Is Called to notify an unknown at-rule not supported by this parser. | |
void(* | error )(CRDocHandler *a_this) |
Is called to notify a parsing error. | |
void(* | unrecoverable_error )(CRDocHandler *a_this) |
Is called to notify an unrecoverable parsing error. | |
gboolean | resolve_import |
gulong | ref_count |
An instance of this class is to be passed to a parser. Then, during the parsing the parser calls the convenient function pointer whenever a particular event (a css construction) occurs.
Definition at line 53 of file cr-doc-handler.h.
gpointer _CRDocHandler::app_data |
This pointer is to be used by the application for it custom needs.
It is there to extend the doc handler.
Definition at line 61 of file cr-doc-handler.h.
void(* _CRDocHandler::charset)(CRDocHandler *a_this, CRString *a_charset, CRParsingLocation *a_charset_sym_location) |
Is called to notify an at charset rule.
a_this | the document handler. | |
a_charset | the declared charset. |
void(* _CRDocHandler::comment)(CRDocHandler *a_this, CRString *a_comment) |
Is called to notify a comment.
a_this | a pointer to the current instance of CRDocHandler. | |
a_comment | the comment. |
void(* _CRDocHandler::end_document)(CRDocHandler *a_this) |
Is called to notify the end of the parsing of the document.
a_this | a pointer to the current instance of CRDocHandler. |
void(* _CRDocHandler::end_font_face)(CRDocHandler *a_this) |
Is called to notify the end of a font face statement.
a_this | a pointer to the current instance of CRDocHandler. |
void(* _CRDocHandler::end_media)(CRDocHandler *a_this, GList *a_media_list) |
Is called to notify the end of a media statement.
a_this | a pointer to the current instance of CRDocHandler. | |
a_media_list | a double linked list of GString * objects. Each GString objects is actually a destination media for the style information. |
void(* _CRDocHandler::end_page)(CRDocHandler *a_this, CRString *a_name, CRString *pseudo_page) |
Is called to notify the end of a page statement.
a_this | a pointer to the current instance of CRDocHandler. | |
a_name | the name of the page (if any, null otherwise). | |
a_pseudo_page | the pseudo page (if any, null otherwise). |
void(* _CRDocHandler::end_selector)(CRDocHandler *a_this, CRSelector *a_selector_list) |
Is called to notify the end of a rule statement.
a_this | the current instance of CRDocHandler. | |
a_selector_list | the list of selectors that precedes the rule declarations. This pointer is the same as the one passed to start_selector() ; |
void(* _CRDocHandler::error)(CRDocHandler *a_this) |
Is called to notify a parsing error.
After this error the application must ignore the rule being parsed, if any. After completion of this callback, the parser will then try to resume the parsing, ignoring the current error.
void(* _CRDocHandler::ignorable_at_rule)(CRDocHandler *a_this, CRString *a_name) |
Is Called to notify an unknown at-rule not supported by this parser.
void(* _CRDocHandler::import_style)(CRDocHandler *a_this, GList *a_media_list, CRString *a_uri, CRString *a_uri_default_ns, CRParsingLocation *a_location) |
Is called to notify an import statement in the stylesheet.
a_this | the current instance of CRDocHandler. | |
a_media_list | a doubly linked list of GString objects. Each GString object contains a string which is the destination media for style information. | |
a_uri | the uri of the imported style sheet. | |
a_uri_default_ns | the default namespace of URI | |
a_location | the parsing location of the '@import' keyword. of the imported style sheet. |
void(* _CRDocHandler::import_style_result)(CRDocHandler *a_this, GList *a_media_list, CRString *a_uri, CRString *a_uri_default_ns, CRStyleSheet *a_sheet) |
void(* _CRDocHandler::namespace_declaration)(CRDocHandler *a_this, CRString *a_prefix, CRString *a_uri, CRParsingLocation *a_location) |
Is called to notify a namespace declaration.
Not used yet.
a_this | the current instance of CRDocHandler. | |
a_prefix | the prefix of the namespace. | |
a_uri | the uri of the namespace. | |
a_location | the location of the "@namespace" keyword. |
Definition at line 55 of file cr-doc-handler.h.
void(* _CRDocHandler::property)(CRDocHandler *a_this, CRString *a_name, CRTerm *a_expression, gboolean a_is_important) |
Is called to notify a declaration.
a_this | a pointer to the current instance of CRDocHandler. | |
a_name | the name of the parsed property. | |
a_expression | a css expression that represents the value of the property. A css expression is actually a linked list of 'terms'. Each term can be linked to other using operators. |
gulong _CRDocHandler::ref_count |
Definition at line 272 of file cr-doc-handler.h.
gboolean _CRDocHandler::resolve_import |
Definition at line 271 of file cr-doc-handler.h.
void(* _CRDocHandler::start_document)(CRDocHandler *a_this) |
Is called at the beginning of the parsing of the document.
a_this | a pointer to the current instance of CRDocHandler. |
void(* _CRDocHandler::start_font_face)(CRDocHandler *a_this, CRParsingLocation *a_location) |
Is called to notify the start of a font face statement.
The parser invokes this method at the beginning of every font face statement in the style sheet. There will be a corresponding end_font_face () event for every start_font_face () event.
a_this | a pointer to the current instance of CRDocHandler. | |
a_location | the parsing location of the "\@font-face" keyword. |
void(* _CRDocHandler::start_media)(CRDocHandler *a_this, GList *a_media_list, CRParsingLocation *a_location) |
Is called to notify the beginning of a media statement.
The parser will invoke this method at the beginning of every media statement in the style sheet. There will be a corresponding end_media() event for every start_media() event.
a_this | a pointer to the current instance of CRDocHandler. | |
a_media_list | a double linked list of CRString * objects. Each CRString objects is actually a destination media for the style information. |
void(* _CRDocHandler::start_page)(CRDocHandler *a_this, CRString *a_name, CRString *a_pseudo_page, CRParsingLocation *a_location) |
Is called to notify the beginning of a page statement.
The parser invokes this function at the beginning of every page statement in the style sheet. There will be a corresponding end_page() event for every single start_page() event.
a_this | a pointer to the current instance of CRDocHandler. | |
a_name | the name of the page (if any, null otherwise). | |
a_pseudo_page | the pseudo page (if any, null otherwise). | |
a_location | the parsing location of the "\@page" keyword. |
void(* _CRDocHandler::start_selector)(CRDocHandler *a_this, CRSelector *a_selector_list) |
Is called to notify the beginning of a rule statement.
a_this | the current instance of CRDocHandler. | |
a_selector_list | the list of selectors that precedes the rule declarations. |
void(* _CRDocHandler::unrecoverable_error)(CRDocHandler *a_this) |
Is called to notify an unrecoverable parsing error.
This is the place to put emergency routines that free allocated resources.