setDrawFunc

open fun setDrawFunc(drawFunc: DrawingAreaDrawFunc)

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

drawFunc

callback that lets you draw the drawing area's contents