diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-11-05 20:49:20 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-11-05 20:49:20 +0100 |
commit | 0e0c4ee1299ce4e08a2185e50f9831563579594f (patch) | |
tree | f75a3dca0f12462059c42ea069afaa031aeced21 /gtk/gtkentry.h | |
parent | cf71dbde906dc7bdebae4c4c6a49f0c002254c20 (diff) | |
download | gtk+-0e0c4ee1299ce4e08a2185e50f9831563579594f.tar.gz |
docs: move documentation to inline comments: GtkEntry
Diffstat (limited to 'gtk/gtkentry.h')
-rw-r--r-- | gtk/gtkentry.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h index 2810bbf538..b540aed3d2 100644 --- a/gtk/gtkentry.h +++ b/gtk/gtkentry.h @@ -54,6 +54,15 @@ G_BEGIN_DECLS #define GTK_IS_ENTRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ENTRY)) #define GTK_ENTRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ENTRY, GtkEntryClass)) +/** + * GtkEntryIconPosition: + * @GTK_ENTRY_ICON_PRIMARY: At the beginning of the entry (depending on the text direction). + * @GTK_ENTRY_ICON_SECONDARY: At the end of the entry (depending on the text direction). + * + * Specifies the side of the entry at which an icon is placed. + * + * Since: 2.16 + */ typedef enum { GTK_ENTRY_ICON_PRIMARY, |