diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-03-15 05:58:39 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-05-05 15:38:46 -0400 |
commit | ca81028901de2ae5c73ab1c4216182bdfe817c92 (patch) | |
tree | 6bf959b02ab661c328bbbb638726f785ee675746 /gdk/gdkpango.h | |
parent | 96d1a1e9c5251b6a44f8a83fbdd60b7bd88f12a4 (diff) | |
download | gtk+-ca81028901de2ae5c73ab1c4216182bdfe817c92.tar.gz |
Add GDK_AVAILABLE_IN_ALL annotations in gdk
This is in preparation to modernizing our handing
of exported symbols.
Diffstat (limited to 'gdk/gdkpango.h')
-rw-r--r-- | gdk/gdkpango.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdk/gdkpango.h b/gdk/gdkpango.h index 28402cd0d0..348f8f3336 100644 --- a/gdk/gdkpango.h +++ b/gdk/gdkpango.h @@ -23,13 +23,16 @@ #endif #include <gdk/gdktypes.h> +#include <gdk/gdkversionmacros.h> G_BEGIN_DECLS /************************************************************************/ +GDK_AVAILABLE_IN_ALL PangoContext *gdk_pango_context_get_for_screen (GdkScreen *screen); #ifndef GDK_MULTIHEAD_SAFE +GDK_AVAILABLE_IN_ALL PangoContext *gdk_pango_context_get (void); #endif @@ -40,11 +43,13 @@ PangoContext *gdk_pango_context_get (void); * draw with the region as clip, only the given ranges are drawn. */ +GDK_AVAILABLE_IN_ALL cairo_region_t *gdk_pango_layout_line_get_clip_region (PangoLayoutLine *line, gint x_origin, gint y_origin, const gint *index_ranges, gint n_ranges); +GDK_AVAILABLE_IN_ALL cairo_region_t *gdk_pango_layout_get_clip_region (PangoLayout *layout, gint x_origin, gint y_origin, |