gtkmm 2.24.2
|
Use this class and its subclasses to build menu items. More...
Public Member Functions | |
MenuElem (MenuItem& child) | |
MenuElem (const Glib::ustring& label, const CallSlot& slot=CallSlot()) | |
Create a labeled, non-accelerated MenuItem with a sigc::slot. | |
MenuElem (const Glib::ustring& label, const AccelKey& key, const CallSlot& slot=CallSlot()) | |
Create a labeled, accelerated MenuItem with a sigc::slot. | |
MenuElem (const Glib::ustring& label, Gtk::Menu& submenu) | |
Create a labeled, non-accelerated MenuItem with a submenu. | |
MenuElem (const Glib::ustring& label, const AccelKey& key, Gtk::Menu& submenu) | |
Create a labeled, accelerated MenuItem with a submenu. |
Use this class and its subclasses to build menu items.
For example,
m_Menu_File.items().push_back( Gtk::Menu_Helpers::MenuElem("_New", sigc::mem_fun(*this, &ExampleWindow::on_menu_file_new) ) );
Gtk::Menu_Helpers::MenuElem::MenuElem | ( | MenuItem& | child | ) |
Gtk::Menu_Helpers::MenuElem::MenuElem | ( | const Glib::ustring & | label, |
const CallSlot & | slot = CallSlot() |
||
) |
Create a labeled, non-accelerated MenuItem with a sigc::slot.
label | The menu item's name |
slot | Use sigc::mem_fun() to specify a signal handler |
Gtk::Menu_Helpers::MenuElem::MenuElem | ( | const Glib::ustring & | label, |
const AccelKey& | key, | ||
const CallSlot & | slot = CallSlot() |
||
) |
Create a labeled, accelerated MenuItem with a sigc::slot.
label | The menu item's name |
key | The accelerator key combination |
slot | Use sigc::mem_fun() to specify a signal handler |
Gtk::Menu_Helpers::MenuElem::MenuElem | ( | const Glib::ustring & | label, |
Gtk::Menu& | submenu | ||
) |
Create a labeled, non-accelerated MenuItem with a submenu.
label | The menu item's name |
submenu | The sub menu |
Gtk::Menu_Helpers::MenuElem::MenuElem | ( | const Glib::ustring & | label, |
const AccelKey& | key, | ||
Gtk::Menu& | submenu | ||
) |
Create a labeled, accelerated MenuItem with a submenu.
label | The menu item's name |
key | The accelerator key combination |
submenu | The sub menu |