Package ch.bailu.gtk.glib
Interface MarkupParseFlags
public interface MarkupParseFlags
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
No special behaviour.static final int
flag you should not usestatic final int
Ignore (don't report) qualified
attributes and tags, along with their contents.static final int
Normally errors caught by GMarkup
itself have line/column information prefixed to them to let the
caller know the location of the error.static final int
When this flag is set, CDATA marked
sections are not passed literally to the @passthrough function of
the parser.
-
Field Details
-
DEFAULT_FLAGS
static final int DEFAULT_FLAGSNo special behaviour. Since: 2.74- See Also:
-
DO_NOT_USE_THIS_UNSUPPORTED_FLAG
static final int DO_NOT_USE_THIS_UNSUPPORTED_FLAGflag you should not use- See Also:
-
TREAT_CDATA_AS_TEXT
static final int TREAT_CDATA_AS_TEXTWhen this flag is set, CDATA marked
sections are not passed literally to the @passthrough function of
the parser. Instead, the content of the section (without the
`<![CDATA[` and `]]>`) is
passed to the @text function. This flag was added in GLib 2.12- See Also:
-
PREFIX_ERROR_POSITION
static final int PREFIX_ERROR_POSITIONNormally errors caught by GMarkup
itself have line/column information prefixed to them to let the
caller know the location of the error. When this flag is set the
location information is also prefixed to errors generated by the
#GMarkupParser implementation functions- See Also:
-
IGNORE_QUALIFIED
static final int IGNORE_QUALIFIEDIgnore (don't report) qualified
attributes and tags, along with their contents. A qualified
attribute or tag is one that contains ':' in its name (ie: is in
another namespace). Since: 2.40.- See Also:
-