To access a widget, for instance to show()
a dialog, use
the get_widget()
method, providing the widget's name. This
name should be specified in the Glade Properties
window. If the widget could not be found, or is of the wrong type, then the
pointer will be set to nullptr.
Gtk::Dialog* pDialog = nullptr; builder->get_widget("DialogBasic", pDialog);
Gtk::Builder checks for a null pointer, and checks that the widget is of the expected type, and will show warnings on the command line about these.
Remember that you are not instantiating a widget with
get_widget()
, you are just obtaining a pointer to one that
already exists. You will always receive a pointer to the same instance when you
call get_widget()
on the same
Gtk::Builder
, with the same widget name. The
widgets are instantiated during Gtk::Builder::create_from_file()
.
get_widget()
returns child widgets that are
manage()
ed (see the Memory
Management chapter), so they will be deleted when their parent
container is deleted. So, if you get only a child widget from
Gtk::Builder, instead of a whole window, then you must
either put it in a Container
or delete it.
Windows
(such as Dialogs
) cannot
be managed because they have no parent container, so you must delete them at
some point.
This simple example shows how to load a Glade file at runtime and access the widgets with Gtk::Builder.
File: main.cc
(For use with gtkmm 3, not gtkmm 2)
#include <gtkmm.h> #include <iostream> Gtk::Dialog* pDialog = nullptr; static void on_button_clicked() { if(pDialog) pDialog->hide(); //hide() will cause main::run() to end. } int main (int argc, char **argv) { auto app = Gtk::Application::create(argc, argv, "org.gtkmm.example"); //Load the GtkBuilder file and instantiate its widgets: auto refBuilder = Gtk::Builder::create(); try { refBuilder->add_from_file("basic.glade"); } catch(const Glib::FileError& ex) { std::cerr << "FileError: " << ex.what() << std::endl; return 1; } catch(const Glib::MarkupError& ex) { std::cerr << "MarkupError: " << ex.what() << std::endl; return 1; } catch(const Gtk::BuilderError& ex) { std::cerr << "BuilderError: " << ex.what() << std::endl; return 1; } //Get the GtkBuilder-instantiated Dialog: refBuilder->get_widget("DialogBasic", pDialog); if(pDialog) { //Get the GtkBuilder-instantiated Button, and connect a signal handler: Gtk::Button* pButton = nullptr; refBuilder->get_widget("quit_button", pButton); if(pButton) { pButton->signal_clicked().connect( sigc::ptr_fun(on_button_clicked) ); } app->run(*pDialog); } delete pDialog; return 0; }