I have a gtkmm3 application where I plan to use a class derived from Gtk::Assistant
to perform some user configuration. As Gtk::Assistant
is derived from Gtk::Window
(and not Gtk::Dialog
) there is no run()
that I can call to get the assistant displayed.
As the good book says I use Gtk::Application::run(window)
to bring up the main application window, but I'm clueless about how to show a second window from my main window in a gtkmm3 application. In gtkmm2.4 I'm pretty sure a Gtk::Main::run(assistant)
would have done the job. I feel totally dumb that even after going through gtk-demo source code I am unable to figure this out. Some help would be appreciated.