According to my research, there is currently no direct way to take a screenshot of a widget with Gtk4. The repeatedly mentioned GtkSnapshot object is used exclusively internally, i.e. when a GtkWidget is rendered.
So the only option left is to derive your own GtkWidget and then override the virtual function “snapshot” accordingly. This is also recommended in the documentation: “The typical way to obtain a GtkSnapshot object is as an argument to the Gtk.WidgetClass.snapshot vfunc.”
Using a block entry from April 2020, I have now tried to get a GtkSnapshot:
void
demo_snapshot (GtkWidget *widget, GtkSnapshot *snapshot)
{
GdkRGBA red, green, yellow, blue;
float w, h;
gdk_rgba_parse (&red, "red");
gdk_rgba_parse (&green, "green");
gdk_rgba_parse (&yellow, "yellow");
gdk_rgba_parse (&blue, "blue");
w = gtk_widget_get_width (widget) / 2.0;
h = gtk_widget_get_height (widget) / 2.0;
gtk_snapshot_append_color (snapshot, &red,
&GRAPHENE_RECT_INIT(0, 0, w, h));
gtk_snapshot_append_color (snapshot, &green,
&GRAPHENE_RECT_INIT(w, 0, w, h));
gtk_snapshot_append_color (snapshot, &yellow,
&GRAPHENE_RECT_INIT(0, h, w, h));
gtk_snapshot_append_color (snapshot, &blue,
&GRAPHENE_RECT_INIT(w, h, w, h));
// generates an error message
GskRenderNode* node = gtk_snapshot_to_node (snapshot);
}
Unfortunately, I get the following error message here:
/* (_snapshot-2:8960): Gtk-WARNING **: 12:10:01.002: Too many gtk_snapshot_push() calls. 5 states remaining.
**
Gtk:ERROR:../../../gtk/gtksnapshot.c:247:gtk_snapshot_get_current_state: assertion failed: (size > 0)
Bail out! Gtk:ERROR:../../../gtk/gtksnapshot.c:247:gtk_snapshot_get_current_state: assertion failed: (size > 0)
Aborted (core dumped)
*/
How could I use the GtkSnapshot to read and print it out into a GdkTexture?