What is the signal for stack page switch?

Hi I’m using gtkmm4 and I am looking for a signal for stack page switches.
I tried registering for signal_show() but I don’t receive it.
Could find anything else in either:
https://developer-old.gnome.org/gtkmm/stable/classGtk_1_1Stack.html
or:
https://developer-old.gnome.org/gtkmm/stable/classGtk_1_1StackPage.html#a818fe4cde5d5a5c6f402eb1a31a251d4

You can use the “notify” signal on the visible-child or visible-child-name properties of the stack, and then call gtk_stack_get_page() to retrieve the stack page object.

1 Like

THX! that’s exactly what I needed

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.