[gtkmm-documentation] Menus and Toolbars example: Add back the Toolbar
- From: Murray Cumming <murrayc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtkmm-documentation] Menus and Toolbars example: Add back the Toolbar
- Date: Tue, 1 Oct 2013 09:49:57 +0000 (UTC)
commit 8ffa9a16fc773a472f6fa13d262cc20a9a31c318
Author: Murray Cumming <murrayc murrayc com>
Date: Tue Oct 1 11:49:48 2013 +0200
Menus and Toolbars example: Add back the Toolbar
examples/book/menus_and_toolbars/examplewindow.cc | 24 ++++++++++++++------
1 files changed, 17 insertions(+), 7 deletions(-)
---
diff --git a/examples/book/menus_and_toolbars/examplewindow.cc
b/examples/book/menus_and_toolbars/examplewindow.cc
index 7dbfdd0..246aab2 100644
--- a/examples/book/menus_and_toolbars/examplewindow.cc
+++ b/examples/book/menus_and_toolbars/examplewindow.cc
@@ -57,7 +57,7 @@ ExampleWindow::ExampleWindow()
Glib::RefPtr<Gtk::Builder> m_refBuilder = Gtk::Builder::create();
//TODO? add_accel_group(m_refBuilder->get_accel_group());
- //Layout the actions in a menubar and toolbar:
+ //Layout the actions in a menubar:
const char* ui_info =
"<interface>"
" <menu id='menubar'>"
@@ -130,13 +130,23 @@ ExampleWindow::ExampleWindow()
//Add the MenuBar to the window:
m_Box.pack_start(*pMenuBar, Gtk::PACK_SHRINK);
-/*
- Gtk::Toolbar* pToolbar = 0;
- m_refBuilder->get_widget("ToolBar", pToolbar) ;
- //Add the MenuBar to the window:
- m_Box.pack_start(*pToolbar, Gtk::PACK_SHRINK);
-*/
+ //Create the toolbar and add it to a container widget:
+ Gtk::Toolbar* toolbar = Gtk::manage(new Gtk::Toolbar());
+ Gtk::ToolButton* button = Gtk::manage(new Gtk::ToolButton());
+ button->set_icon_name("document-new");
+ //We can't do this until we can break the ToolButton ABI: button->set_detailed_action_name("example.new");
+ gtk_actionable_set_detailed_action_name (GTK_ACTIONABLE (button->gobj()), "example.new");
+ toolbar->add(*button);
+
+ button = Gtk::manage(new Gtk::ToolButton());
+ button->set_icon_name("application-exit");
+ //We can't do this until we can break the ToolButton ABI: button->set_detailed_action_name("example.quit");
+ gtk_actionable_set_detailed_action_name (GTK_ACTIONABLE (button->gobj()), "example.quit");
+ toolbar->add(*button);
+
+ m_Box.pack_start(*toolbar, Gtk::PACK_SHRINK);
+
show_all_children();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]