summaryrefslogtreecommitdiff
path: root/pango/pango-engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pango-engine.h')
-rw-r--r--pango/pango-engine.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/pango/pango-engine.h b/pango/pango-engine.h
index 16b39c3f..b634fd88 100644
--- a/pango/pango-engine.h
+++ b/pango/pango-engine.h
@@ -60,7 +60,7 @@ typedef struct _PangoEngineClass PangoEngineClass;
/**
* PangoEngine:
*
- * #PangoEngine is the base class for all types of language and
+ * `PangoEngine` is the base class for all types of language and
* script specific engines. It has no functionality by itself.
*
* Deprecated: 1.38
@@ -74,7 +74,7 @@ struct _PangoEngine
/**
* PangoEngineClass:
*
- * Class structure for #PangoEngine
+ * Class structure for `PangoEngine`
*
* Deprecated: 1.38
**/
@@ -91,7 +91,7 @@ GType pango_engine_get_type (void) G_GNUC_CONST;
* PANGO_ENGINE_TYPE_LANG:
*
* A string constant defining the engine type for language engines.
- * These engines derive from #PangoEngineLang.
+ * These engines derive from `PangoEngineLang`.
*
* Deprecated: 1.38
*/
@@ -109,10 +109,10 @@ typedef struct _PangoEngineLangClass PangoEngineLangClass;
/**
* PangoEngineLang:
*
- * The #PangoEngineLang class is implemented by engines that
+ * The `PangoEngineLang` class is implemented by engines that
* customize the rendering-system independent part of the
* Pango pipeline for a particular script or language. For
- * instance, a custom #PangoEngineLang could be provided for
+ * instance, a custom `PangoEngineLang` could be provided for
* Thai to implement the dictionary-based word boundary
* lookups needed for that language.
*
@@ -133,7 +133,7 @@ struct _PangoEngineLang
* but in newer versions, pango_default_break() is always called and
* this is called after that to allow tailoring the breaking results.
*
- * Class structure for #PangoEngineLang
+ * Class structure for `PangoEngineLang`
*
* Deprecated: 1.38
**/
@@ -158,7 +158,7 @@ GType pango_engine_lang_get_type (void) G_GNUC_CONST;
* PANGO_ENGINE_TYPE_SHAPE:
*
* A string constant defining the engine type for shaping engines.
- * These engines derive from #PangoEngineShape.
+ * These engines derive from `PangoEngineShape`.
*
* Deprecated: 1.38
*/
@@ -176,13 +176,13 @@ typedef struct _PangoEngineShapeClass PangoEngineShapeClass;
/**
* PangoEngineShape:
*
- * The #PangoEngineShape class is implemented by engines that
+ * The `PangoEngineShape` class is implemented by engines that
* customize the rendering-system dependent part of the
* Pango pipeline for a particular script or language.
- * A #PangoEngineShape implementation is then specific to both
+ * A `PangoEngineShape` implementation is then specific to both
* a particular rendering system or group of rendering systems
* and to a particular script. For instance, there is one
- * #PangoEngineShape implementation to handle shaping Arabic
+ * `PangoEngineShape` implementation to handle shaping Arabic
* for Fontconfig-based backends.
*
* Deprecated: 1.38
@@ -194,9 +194,9 @@ struct _PangoEngineShape
/**
* PangoEngineShapeClass:
- * @script_shape: Given a font, a piece of text, and a #PangoAnalysis
+ * @script_shape: Given a font, a piece of text, and a `PangoAnalysis`
* structure, converts characters to glyphs and positions the
- * resulting glyphs. The results are stored in the #PangoGlyphString
+ * resulting glyphs. The results are stored in the `PangoGlyphString`
* that is passed in. (The implementation should resize it
* appropriately using pango_glyph_string_set_size()). All fields
* of the @log_clusters and @glyphs array must be filled in, with
@@ -205,7 +205,7 @@ struct _PangoEngineShape
* using the @log_clusters array. Each input character must occur in one
* of the output logical clusters;
* if no rendering is desired for a character, this may involve
- * inserting glyphs with the #PangoGlyph ID #PANGO_GLYPH_EMPTY, which
+ * inserting glyphs with the `PangoGlyph` ID %PANGO_GLYPH_EMPTY, which
* is guaranteed never to render. If the shaping fails for any reason,
* the shaper should return with an empty (zero-size) glyph string.
* If the shaper has not set the size on the glyph string yet, simply
@@ -215,7 +215,7 @@ struct _PangoEngineShape
* implementation simply returns the coverage information for the
* font itself unmodified.
*
- * Class structure for #PangoEngineShape
+ * Class structure for `PangoEngineShape`
*
* Deprecated: 1.38
**/
@@ -247,7 +247,7 @@ typedef struct _PangoEngineScriptInfo PangoEngineScriptInfo;
/**
* PangoEngineScriptInfo:
- * @script: a #PangoScript. The value %PANGO_SCRIPT_COMMON has
+ * @script: a `PangoScript`. The value %PANGO_SCRIPT_COMMON has
* the special meaning here of "all scripts"
* @langs: a semicolon separated list of languages that this
* engine handles for this script. This may be empty,
@@ -259,7 +259,7 @@ typedef struct _PangoEngineScriptInfo PangoEngineScriptInfo;
* indicates that this engine is specific to all
* languages for this range.
*
- * The #PangoEngineScriptInfo structure contains
+ * The `PangoEngineScriptInfo` structure contains
* information about how the shaper covers a particular script.
*
* Deprecated: 1.38
@@ -278,7 +278,7 @@ struct _PangoEngineScriptInfo
* @scripts: array of scripts this engine supports.
* @n_scripts: number of items in @scripts.
*
- * The #PangoEngineInfo structure contains information about a particular
+ * The `PangoEngineInfo` structure contains information about a particular
* engine. It contains the following fields:
*
* Deprecated: 1.38
@@ -307,7 +307,7 @@ void script_engine_list (PangoEngineInfo **engines,
/**
* script_engine_init: (skip)
- * @module: a #GTypeModule structure used to associate any
+ * @module: a `GTypeModule` structure used to associate any
* GObject types created in this module with the module.
*
* Do not use.
@@ -374,7 +374,7 @@ prefix ## _register_type (GTypeModule *module) \
* @instance_init: (nullable): Instance initialization function for the new type, or %NULL
*
* Outputs the necessary code for GObject type registration for a
- * #PangoEngineLang class defined in a module. Two static symbols
+ * `PangoEngineLang` class defined in a module. Two static symbols
* are defined.
*
* <programlisting>
@@ -405,7 +405,7 @@ prefix ## _register_type (GTypeModule *module) \
* @instance_init: (nullable): Instance initialization function for the new type, or %NULL
*
* Outputs the necessary code for GObject type registration for a
- * #PangoEngineShape class defined in a module. Two static symbols
+ * `PangoEngineShape` class defined in a module. Two static symbols
* are defined.
*
* <programlisting>