gtk2/docs/reference/gtk/tmpl/gtkdrawingarea.sgml

116 lines
3.2 KiB
Plaintext
Raw Normal View History

1999-08-16 18:51:52 +00:00
<!-- ##### SECTION Title ##### -->
GtkDrawingArea
<!-- ##### SECTION Short_Description ##### -->
a widget for custom user interface elements.
<!-- ##### SECTION Long_Description ##### -->
<para>
The #GtkDrawingArea widget is used for creating custom user interface
elements. It's essentially a blank widget; you can draw on
<literal>widget-&gt;window</literal>. After creating a drawing area,
the application may want to connect to:
1999-08-16 18:51:52 +00:00
<itemizedlist>
<listitem>
<para>
Mouse and button press signals to respond to input from
the user.
</para>
</listitem>
<listitem>
<para>
The "realize" signal to take any necessary actions
when the widget is instantiated on a particular display.
(Create GDK resources in response to this signal.)
1999-08-16 18:51:52 +00:00
</para>
</listitem>
<listitem>
<para>
The "configure_event" signal to take any necessary actions
1999-08-16 18:51:52 +00:00
when the widget changes size.
</para>
</listitem>
<listitem>
<para>
The "expose_event" signal to handle redrawing the
contents of the widget.
</para>
</listitem>
</itemizedlist>
</para>
<para>
The following code portion demonstrates using a drawing
area to display a circle in the normal widget foreground
color.
Note that GDK automatically clears the exposed area
to the background color before sending the expose event, and
that drawing is implicitly clipped to the exposed area.
1999-08-16 18:51:52 +00:00
</para>
<example>
<title>Simple <structname>GtkDrawingArea</structname> usage.</title>
1999-08-16 18:51:52 +00:00
<programlisting>
gboolean
expose_event_callback (GdkWidget *widget, GdkEventExpose *event, gpointer data)
1999-08-16 18:51:52 +00:00
{
gdk_draw_arc (widget->window,
widget->style->fg_gc[GTK_WIDGET_STATE (widget)],
1999-08-16 18:51:52 +00:00
TRUE,
0, 0, widget->allocation.width, widget->allocation.height,
1999-08-16 18:51:52 +00:00
0, 64 * 360);
1999-08-16 18:51:52 +00:00
return TRUE;
}
[...]
GtkWidget *drawing_area = gtk_drawing_area_new (<!>);
gtk_widget_set_size_request (drawing_area, 100, 100);
g_signal_connect (G_OBJECT (drawing_area), "expose_event",
G_CALLBACK (expose_event_callback), NULL);
1999-08-16 18:51:52 +00:00
</programlisting>
</example>
1999-08-16 18:51:52 +00:00
<para>
Expose events are normally delivered when a drawing area first comes
onscreen, or when it's covered by another window and then uncovered
(exposed). You can also force an expose event by adding to the "damage
region" of the drawing area's window; gtk_widget_queue_draw_area() and
gdk_window_invalidate_rect() are equally good ways to do this. You'll
then get an expose event for the invalid region.
</para>
1999-08-16 18:51:52 +00:00
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### STRUCT GtkDrawingArea ##### -->
<para>
The #GtkDrawingArea struct contains private data only, and
1999-08-16 18:51:52 +00:00
should be accessed using the functions below.
</para>
<!-- ##### FUNCTION gtk_drawing_area_new ##### -->
<para>
Creates a new drawing area.
1999-08-16 18:51:52 +00:00
</para>
@Returns: a new #GtkDrawingArea
1999-08-16 18:51:52 +00:00
<!-- ##### FUNCTION gtk_drawing_area_size ##### -->
<para>
Sets the size that the drawing area will request
1999-08-16 18:51:52 +00:00
in response to a "size_request" signal. The
drawing area may actually be allocated a size
larger than this depending on how it is packed
within the enclosing containers.
</para>
@darea: a #GtkDrawingArea.
@width: the width to request.
@height: the height to request.