set_draw_func


Description:

public void set_draw_func (owned DrawingAreaDrawFunc? draw_func)

Setting a draw function is the main thing you want to do when using a drawing area.

The draw function is called whenever GTK needs to draw the contents of the drawing area to the screen.

The draw function will be called during the drawing stage of GTK. In the drawing stage it is not allowed to change properties of any GTK widgets or call any functions that would cause any properties to be changed. You should restrict yourself exclusively to drawing your contents in the draw function.

If what you are drawing does change, call [method@Gtk.Widget.queue_draw] on the drawing area. This will cause a redraw and will call draw_func again.

Parameters:

this

a `GtkDrawingArea`

draw_func

callback that lets you draw the drawing area's contents

destroy

destroy notifier for user_data

user_data

user data passed to draw_func