diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2013-09-27 14:36:51 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2013-09-27 14:36:51 -0400 |
commit | 6d08bcab0d2821365a2ffd955cbbb07270565664 (patch) | |
tree | 6bffdc716a62ea60c0db7ed08d7f5a0d205302f1 /pango/pango-item.h | |
parent | bb5c4c8497157afddcb5ced7e16c5dad4e893a03 (diff) | |
download | pango-6d08bcab0d2821365a2ffd955cbbb07270565664.tar.gz |
Bug 685167 - migrate docs to no-tmpl flavour
Patch from Rafał Mużyło.
Diffstat (limited to 'pango/pango-item.h')
-rw-r--r-- | pango/pango-item.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pango/pango-item.h b/pango/pango-item.h index 0775003c..b8e8ab67 100644 --- a/pango/pango-item.h +++ b/pango/pango-item.h @@ -30,8 +30,31 @@ typedef struct _PangoAnalysis PangoAnalysis; typedef struct _PangoItem PangoItem; /* TODO: if more flags are needed, turn this into a real PangoAnalysisFlags enum */ +/** + * PANGO_ANALYSIS_FLAG_CENTERED_BASELINE: + * + * Whether the segment should be shifted to center around the baseline. + * Used in vertical writing directions mostly. + * + * Since: 1.16 + */ #define PANGO_ANALYSIS_FLAG_CENTERED_BASELINE (1 << 0) +/** + * PangoAnalysis: + * @shape_engine: the engine for doing rendering-system-dependent processing. + * @lang_engine: the engine for doing rendering-system-independent processing. + * @font: the font for this segment. + * @level: the bidirectional level for this segment. + * @gravity: the glyph orientation for this segment (A #PangoGravity). + * @flags: boolean flags for this segment (currently only one) (Since: 1.16). + * @script: the detected script for this segment (A #PangoScript) (Since: 1.18). + * @language: the detected language for this segment. + * @extra_attrs: extra attributes for this segment. + * + * The #PangoAnalysis structure stores information about + * the properties of a segment of text. + */ struct _PangoAnalysis { PangoEngineShape *shape_engine; @@ -48,6 +71,11 @@ struct _PangoAnalysis GSList *extra_attrs; }; +/** + * PangoItem: + * + * The #PangoItem structure stores information abouta segment of text. + */ struct _PangoItem { gint offset; |