| Top |
Functions
| ETableState * | e_table_state_new () |
| ETableState * | e_table_state_vanilla () |
| void | e_table_state_parse_context_push () |
| ETableState * | e_table_state_parse_context_pop () |
| struct _ETableSpecification * | e_table_state_ref_specification () |
| gboolean | e_table_state_load_from_file () |
| void | e_table_state_load_from_string () |
| void | e_table_state_load_from_node () |
| void | e_table_state_save_to_file () |
| gchar * | e_table_state_save_to_string () |
| xmlNode * | e_table_state_save_to_node () |
| ETableState * | e_table_state_duplicate () |
Functions
e_table_state_vanilla ()
ETableState *
e_table_state_vanilla (struct _ETableSpecification *specification);
e_table_state_parse_context_push ()
void e_table_state_parse_context_push (GMarkupParseContext *context,struct _ETableSpecification *specification);
Creates a new ETableState from a segment of XML data being fed to
context
. Call this function for the appropriate opening tag from the
start_element callback of a GMarkupParser,
then call e_table_state_parse_context_pop() for the corresponding
closing tag from the end_element callback.
e_table_state_parse_context_pop ()
ETableState *
e_table_state_parse_context_pop (GMarkupParseContext *context);
Creates a new ETableState from a segment of XML data being fed to
context
. Call e_table_state_parse_context_push() for the appropriate
opening tag from the start_element callback of
a GMarkupParser, then call this function for the corresponding closing
tag from the end_element callback.
Unreference the newly-created ETableState with g_object_unref() when
finished with it.
e_table_state_ref_specification ()
struct _ETableSpecification *
e_table_state_ref_specification (ETableState *state);
Returns the ETableSpecification passed to e_table_state_new().
The returned ETableSpecification is referenced for thread-safety and must
be unreferenced with g_object_unref() when finished with it.
e_table_state_load_from_file ()
gboolean e_table_state_load_from_file (ETableState *state,const gchar *filename);
e_table_state_load_from_string ()
void e_table_state_load_from_string (ETableState *state,const gchar *xml);
e_table_state_load_from_node ()
void e_table_state_load_from_node (ETableState *state,const xmlNode *node);
e_table_state_save_to_file ()
void e_table_state_save_to_file (ETableState *state,const gchar *filename);
e_table_state_save_to_node ()
xmlNode * e_table_state_save_to_node (ETableState *state,xmlNode *parent);
e_table_state_duplicate ()
ETableState *
e_table_state_duplicate (ETableState *state);
Creates a new ETableState cloned from state
.
Property Details
The “specification” property
“specification” ETableSpecification *
Specification for the table state.
Flags: Read / Write / Construct Only
