~ubuntu-branches/ubuntu/karmic/pango1.0/karmic-security

« back to all changes in this revision

Viewing changes to pango/pango-impl-utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Loic Minier
  • Date: 2007-12-18 21:11:37 UTC
  • mfrom: (1.2.44 upstream)
  • Revision ID: james.westby@ubuntu.com-20071218211137-0ibmwreimvxf3cp1
Tags: 1.19.2-1ubuntu1
* Sync with Debian; Ubuntu changes are:
  - Add patch 30_anymetrics, turns on FC_ANY_METRICS whenever looking up
    fonts with fontconfig; lets fontconfig's configuration know that we
    don't care about getting a font with exactly the same shape as the
    family we asked for and fixes (eg) a firefox vs. evince font metrics
    ugliness issue.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
                         parent_type, G_TYPE_FLAG_ABSTRACT)
76
76
 
77
77
 
78
 
 
79
 
/* Warning history.  Used to not spew some warnings more than once. */
80
 
typedef struct _PangoWarningHistory PangoWarningHistory;
81
 
 
82
 
struct _PangoWarningHistory {
83
 
  guint shape_font              : 1;
84
 
  guint shape_shape_engine      : 1;
85
 
  guint get_glyph_extents       : 1;
86
 
  guint get_metrics             : 1;
87
 
  guint get_font_map            : 1;
88
 
};
89
 
 
90
 
extern PangoWarningHistory _pango_warning_history;
91
 
 
92
 
 
93
78
/* String interning for static strings */
94
79
#define I_(string) g_intern_static_string (string)
95
80