summaryrefslogtreecommitdiff
path: root/pango/pango-font.h
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-12-10 23:45:26 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-12-10 23:45:26 +0000
commit7c5519bf1e9a090d8da67f915dde5e4ff19a9bf5 (patch)
treeb8eefd8fcb9abbf6e28cf35336e3ed1ada1af04a /pango/pango-font.h
parent9455fae9cabc70de63743546cf4399eac50e68ce (diff)
downloadpango-7c5519bf1e9a090d8da67f915dde5e4ff19a9bf5.tar.gz
=== Released 1.1.5 ===PANGO_1_1_5
Tue Dec 10 18:37:19 2002 Owen Taylor <otaylor@redhat.com> * === Released 1.1.5 === * pango/pango-attributes.h pango/pango-font.h pango/pango-fontset.h pango/pango-fontmap.h: Add explicit /*< public >*/ /*< private *>/ guards. (See #95398 for gtk-doc changes making this necessary)
Diffstat (limited to 'pango/pango-font.h')
-rw-r--r--pango/pango-font.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/pango/pango-font.h b/pango/pango-font.h
index 95031376..4750300d 100644
--- a/pango/pango-font.h
+++ b/pango/pango-font.h
@@ -210,12 +210,16 @@ struct _PangoFontFamily
struct _PangoFontFamilyClass
{
GObjectClass parent_class;
+
+ /*< public >*/
void (*list_faces) (PangoFontFamily *family,
PangoFontFace ***faces,
int *n_faces);
const char * (*get_name) (PangoFontFamily *family);
+ /*< private >*/
+
/* Padding for future expansion */
void (*_pango_reserved1) (void);
void (*_pango_reserved2) (void);
@@ -254,10 +258,14 @@ struct _PangoFontFace
struct _PangoFontFaceClass
{
GObjectClass parent_class;
+
+ /*< public >*/
const char * (*get_face_name) (PangoFontFace *face);
PangoFontDescription * (*describe) (PangoFontFace *face);
+ /*< private >*/
+
/* Padding for future expansion */
void (*_pango_reserved1) (void);
void (*_pango_reserved2) (void);
@@ -306,6 +314,8 @@ struct _PangoFont
struct _PangoFontClass
{
GObjectClass parent_class;
+
+ /*< public >*/
PangoFontDescription *(*describe) (PangoFont *font);
PangoCoverage * (*get_coverage) (PangoFont *font,
@@ -319,6 +329,7 @@ struct _PangoFontClass
PangoRectangle *logical_rect);
PangoFontMetrics * (*get_metrics) (PangoFont *font,
PangoLanguage *language);
+ /*< private >*/
/* Padding for future expansion */
void (*_pango_reserved1) (void);