[pango/line-breaker: 5/18] Add PangoAlignment
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/line-breaker: 5/18] Add PangoAlignment
- Date: Sat, 15 Jan 2022 15:37:29 +0000 (UTC)
commit 9e30c3bac7da89d17ee8ecf14acb54dbe4284bb0
Author: Matthias Clasen <mclasen redhat com>
Date: Fri Jan 14 21:42:05 2022 -0500
Add PangoAlignment
Tnis is an enum that combines alignment and justification.
This makes sense, is commonly done in other systems, and
lets us pass a single argument instead of 3 (align, justify
and justify-last).
pango/pango-types.h | 10 ++++++++++
1 file changed, 10 insertions(+)
---
diff --git a/pango/pango-types.h b/pango/pango-types.h
index a359c91a..2bce6075 100644
--- a/pango/pango-types.h
+++ b/pango/pango-types.h
@@ -302,6 +302,16 @@ typedef enum {
} PangoEllipsizeMode;
+typedef enum
+{
+ PANGO_ALIGNMENT_LEFT,
+ PANGO_ALIGNMENT_CENTER,
+ PANGO_ALIGNMENT_RIGHT,
+ PANGO_ALIGNMENT_JUSTIFY,
+ PANGO_ALIGNMENT_JUSTIFY_ALL,
+} PangoAlignmentMode;
+
+
G_END_DECLS
#endif /* __PANGO_TYPES_H__ */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]