diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-04-18 19:40:17 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-04-18 19:46:29 +0200 |
commit | 72d5cc8cd51f8bc3f66186c668f2d4cfd191f6ca (patch) | |
tree | 39307a8ea9188e373c6d93545d3ad772c9e519fd /modules | |
parent | 508ed4bbabfc519269efe33331f2d49a8fcb6a4a (diff) | |
download | gtk+-72d5cc8cd51f8bc3f66186c668f2d4cfd191f6ca.tar.gz |
[docs] Move documentation to inline comments: GailTextUtil and GailMisc
Diffstat (limited to 'modules')
-rw-r--r-- | modules/other/gail/libgail-util/gailmisc.c | 12 | ||||
-rw-r--r-- | modules/other/gail/libgail-util/gailtextutil.c | 15 |
2 files changed, 27 insertions, 0 deletions
diff --git a/modules/other/gail/libgail-util/gailmisc.c b/modules/other/gail/libgail-util/gailmisc.c index ade1288bb4..81b1382199 100644 --- a/modules/other/gail/libgail-util/gailmisc.c +++ b/modules/other/gail/libgail-util/gailmisc.c @@ -28,6 +28,18 @@ */ /** + * SECTION:gailmisc + * @Short_description: GailMisc is a set of utility functions which may be + * useful to implementors of Atk interfaces for custom widgets. + * @Title: GailMisc + * + * GailMisc is a set of utility function which are used in the implemementation + * of Atk interfaces for GTK+ widgets. They may be useful to implementors of + * Atk interfaces for custom widgets. + */ + + +/** * gail_misc_get_extents_from_pango_rectangle: * @widget: The widget that contains the PangoLayout, that contains * the PangoRectangle diff --git a/modules/other/gail/libgail-util/gailtextutil.c b/modules/other/gail/libgail-util/gailtextutil.c index 5ef7f69a0a..ecfd8ef785 100644 --- a/modules/other/gail/libgail-util/gailtextutil.c +++ b/modules/other/gail/libgail-util/gailtextutil.c @@ -22,6 +22,21 @@ #include <stdlib.h> #include "gailtextutil.h" +/** + * SECTION:gailtextutil + * @Short_description: GailTextUtil is a utility class which can be used to + * implement some of the #AtkText functions for accessible objects + * which implement #AtkText. + * @Title: GailTextUtil + * + * GailTextUtil is a utility class which can be used to implement the + * #AtkText functions which get text for accessible objects which implement + * #AtkText. + * + * In GAIL it is used by the accsesible objects for #GnomeCanvasText, #GtkEntry, + * #GtkLabel, #GtkCellRendererText and #GtkTextView. + */ + static void gail_text_util_class_init (GailTextUtilClass *klass); static void gail_text_util_init (GailTextUtil *textutil); |