diff options
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkbin.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk/gtkbin.c b/gtk/gtkbin.c index 16f13794ee..3d533b2de2 100644 --- a/gtk/gtkbin.c +++ b/gtk/gtkbin.c @@ -24,6 +24,19 @@ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ +/** + * SECTION:gtkbin + * @Short_description: A container with just one child + * @Title: GtkBin + * + * The #GtkBin widget is a container with just one child. + * It is not very useful itself, but it is useful for deriving subclasses, + * since it provides common code needed for handling a single child widget. + * + * Many GTK+ widgets are subclasses of #GtkBin, including #GtkWindow, + * #GtkButton, #GtkFrame, #GtkHandleBox or #GtkScrolledWindow. + */ + #include "config.h" #include "gtkbin.h" #include "gtkintl.h" |