~ubuntu-branches/ubuntu/lucid/gtkhtml3.14/lucid

« back to all changes in this revision

Viewing changes to gtkhtml/htmlengine-save.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-03-02 18:57:17 UTC
  • mfrom: (1.1.38 upstream)
  • Revision ID: james.westby@ubuntu.com-20090302185717-20mon8ak0a7bwsx4
Tags: 1:3.25.92-0ubuntu1
New upstream version:
Bug Fixes:
#549838 : Revert workarounds for HTML entities 
#569365 : Do not draw a cursor without a window 
#570276 : Change Word Wrap accelerator to CtrlK 
#570728 : Use gtk_show_uri in html-editor 
#571621 : Replace a g_assert
#571654 : Clear also primary selection 
#571738 : Remove unused libart_lgpl includes 

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
                                                                 const gchar               *buffer,
65
65
                                                                 int                        len);
66
66
 
 
67
/* Takes a string sequence of the form (delim, (val, delim)*, NULL)
 
68
   and outputs the delimiters verbatim and the values entity-encoded.
 
69
   Useful for writing properly-encoded tags with attributes.
 
70
 
 
71
   Example: html_engine_save_delims_and_vals (state, "<TAG ATTR1=\"", attr1, "\" ATTR2=\"", attr2, "\">", NULL);
 
72
   */
 
73
gboolean             html_engine_save_delims_and_vals           (HTMLEngineSaveState *state,
 
74
                                                                 const gchar *first,
 
75
                                                                 ...);
 
76
 
67
77
/* Saving a whole tree.  */
68
78
gboolean             html_engine_save                           (HTMLEngine                *engine,
69
79
                                                                 HTMLEngineSaveReceiverFn   receiver,