diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-02-02 01:07:39 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-02-02 01:07:39 -0500 |
commit | 30cc1512e634417eb040bd5a287736c1ef7782d9 (patch) | |
tree | 7fcb1dbbe0e184f762bc6f29dd6e362cd01112e3 /gtk/gtkdrawingarea.c | |
parent | 09d1b28249af38448be0b52d00dd9924adac5d1c (diff) | |
download | gtk+-30cc1512e634417eb040bd5a287736c1ef7782d9.tar.gz |
Docs: Use markdown for lists
This greatly reduces the amount of xml in the docs.
Diffstat (limited to 'gtk/gtkdrawingarea.c')
-rw-r--r-- | gtk/gtkdrawingarea.c | 41 |
1 files changed, 13 insertions, 28 deletions
diff --git a/gtk/gtkdrawingarea.c b/gtk/gtkdrawingarea.c index 07c1053b8b..50ff45abe5 100644 --- a/gtk/gtkdrawingarea.c +++ b/gtk/gtkdrawingarea.c @@ -38,34 +38,19 @@ * elements. It's essentially a blank widget; you can draw on it. After * creating a drawing area, the application may want to connect to: * - * <itemizedlist> - * <listitem> - * <para> - * Mouse and button press signals to respond to input from - * the user. (Use gtk_widget_add_events() to enable events - * you wish to receive.) - * </para> - * </listitem> - * <listitem> - * <para> - * The #GtkWidget::realize signal to take any necessary actions - * when the widget is instantiated on a particular display. - * (Create GDK resources in response to this signal.) - * </para> - * </listitem> - * <listitem> - * <para> - * The #GtkWidget::configure-event signal to take any necessary - * actions when the widget changes size. - * </para> - * </listitem> - * <listitem> - * <para> - * The #GtkWidget::draw signal to handle redrawing the - * contents of the widget. - * </para> - * </listitem> - * </itemizedlist> + * - Mouse and button press signals to respond to input from + * the user. (Use gtk_widget_add_events() to enable events + * you wish to receive.) + * + * - The #GtkWidget::realize signal to take any necessary actions + * when the widget is instantiated on a particular display. + * (Create GDK resources in response to this signal.) + * + * - The #GtkWidget::configure-event signal to take any necessary + * actions when the widget changes size. + * + * - The #GtkWidget::draw signal to handle redrawing the + * contents of the widget. * * The following code portion demonstrates using a drawing * area to display a circle in the normal widget foreground |