gtk.drawing_area

Module for [DrawingArea] class

Types 3

[gtk.drawing_area.DrawingArea] is a widget that allows drawing with cairo.

!An example GtkDrawingArea

It’s essentially a blank widget; you can draw on it. After creating a drawing area, the application may want to connect to:

  • The [gtk.widget.Widget.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 [gtk.drawing_area.DrawingArea.resize] signal to take any necessary

actions when the widget changes size.

  • Call [gtk.drawing_area.DrawingArea.setDrawFunc] 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 color.

Simple GtkDrawingArea usage

static void
draw_function (GtkDrawingArea *area,
              cairo_t        *cr,
              int             width,
              int             height,
              gpointer        data)
{
 GdkRGBA color;

 cairo_arc (cr,
            width / 2.0, height / 2.0,
            MIN (width, height) / 2.0,
            0, 2 * G_PI);

 gtk_widget_get_color (GTK_WIDGET (area),
                       &color);
 gdk_cairo_set_source_rgba (cr, &color);

 cairo_fill (cr);
}

int
main (int argc, char **argv)
{
 gtk_init ();

 GtkWidget *area = gtk_drawing_area_new ();
 gtk_drawing_area_set_content_width (GTK_DRAWING_AREA (area), 100);
 gtk_drawing_area_set_content_height (GTK_DRAWING_AREA (area), 100);
 gtk_drawing_area_set_draw_func (GTK_DRAWING_AREA (area),
                                 draw_function,
                                 NULL, NULL);
 return 0;
}

The draw function is normally called when a drawing area first comes onscreen, or when it’s covered by another window and then uncovered. You can also force a redraw by adding to the “damage region” of the drawing area’s window using [gtk.widget.Widget.queueDraw]. This will cause the drawing area to call the draw function again.

The available routines for drawing are documented in the

Cairo documentation; GDK

offers additional API to integrate with Cairo, like func@Gdk.cairo_set_source_rgba or func@Gdk.cairo_set_source_pixbuf.

To receive mouse events on a drawing area, you will need to use event controllers. To receive keyboard events, you will need to set the “can-focus” property on the drawing area, and you should probably draw some user-visible indication that the drawing area is focused.

If you need more complex control over your widget, you should consider creating your own [gtk.widget.Widget] subclass.

Methods
GType _gType() @property
DrawingArea self()Returns `this`, for use in `with` statements.
DrawingAreaGidBuilder builder()Get builder for [gtk.drawing_area.DrawingArea] Returns: New builder object
int contentHeight() @propertyGet `contentHeight` property. Returns: The content height.
void contentHeight(int propval) @propertySet `contentHeight` property. Params: propval = The content height.
int contentWidth() @propertyGet `contentWidth` property. Returns: The content width.
void contentWidth(int propval) @propertySet `contentWidth` property. Params: propval = The content width.
int getContentHeight()Retrieves the content height of the [gtk.drawing_area.DrawingArea]. Returns: The height requested for content of the drawing area
int getContentWidth()Retrieves the content width of the [gtk.drawing_area.DrawingArea]. Returns: The width requested for content of the drawing area
void setContentHeight(int height)Sets the desired height of the contents of the drawing area.
void setContentWidth(int width)Sets the desired width of the contents of the drawing area.
void setDrawFunc(gtk.types.DrawingAreaDrawFunc drawFunc = null)Setting a draw function is the main thing you want to do when using a drawing area.
gulong connectResize(T)(T callback, Flag!"After" after = No.After) if (isCallable!T && is(ReturnType!T == void) && (Parameters!T.length < 1 || (ParameterStorageClassTuple!T[0] == ParameterStorageClass.none && is(Parameters!T[0] == int))) && (Parameters!T.length < 2 || (ParameterStorageClassTuple!T[1] == ParameterStorageClass.none && is(Parameters!T[1] == int))) && (Parameters!T.length < 3 || (ParameterStorageClassTuple!T[2] == ParameterStorageClass.none && is(Parameters!T[2] : gtk.drawing_area.DrawingArea))) && Parameters!T.length < 4)Connect to `Resize` signal.
Constructors
this(void * ptr, Flag!"Take" take)
this()Creates a new drawing area. Returns: a new [gtk.drawing_area.DrawingArea]
Methods
T contentHeight(int propval)Set `contentHeight` property. Params: propval = The content height. Returns: Builder instance for fluent chaining
T contentWidth(int propval)Set `contentWidth` property. Params: propval = The content width. Returns: Builder instance for fluent chaining

Fluent builder for [gtk.drawing_area.DrawingArea]