gtkmm: Gtk::MenuShell Class Reference

The abstract base class for Gtk::Menu and Gtk::MenuBar. More...

Inheritance diagram for Gtk::MenuShell:
Collaboration diagram for Gtk::MenuShell:

List of all members.

Public Member Functions

virtual ~MenuShell ()
GtkMenuShell* gobj ()
 Provides access to the underlying C GtkObject.

const GtkMenuShell* gobj () const
 Provides access to the underlying C GtkObject.

void append (MenuItem& menu_item)
void prepend (MenuItem& menu_item)
void insert (MenuItem& menu_item, int position)
void select_item (MenuItem& menu_item)
void deselect ()
void activate_item (MenuItem& menu_item, bool force_deactivate=false)
void select_first (bool search_sensitive=true)
 Select the first visible or selectable child of the menu shell; don't select tearoff items unless the only item is a tearoff item.

void deactivate ()
void cancel ()
 Cancels the selection within the menu shell.

Glib::SignalProxy0< void > signal_deactivate ()
Glib::SignalProxy0< void > signal_selection_done ()
Glib::SignalProxy1< gboolean, int > signal_move_selected ()
void accelerate (Window& window)
 Initializes menu accelerators.

void accelerate (Widget& parent)
 Initializes menu accelerators.

bool get_take_focus () const
 Returns true if the menu shell will take the keyboard focus on popup.

void set_take_focus (bool take_focus=true)
 If take_focus is true (the default) the menu shell will take the keyboard focus so that it will receive all keyboard events which is needed to enable keyboard navigation in menus.

Widgetget_selected_item ()
const Widgetget_selected_item () const
Widgetget_parent_shell ()
const Widgetget_parent_shell () const
Glib::PropertyProxy< bool > property_take_focus ()
 A boolean that determines whether the menu grabs the keyboard focus.

Glib::PropertyProxy_ReadOnly

< bool > 
property_take_focus () const
 A boolean that determines whether the menu grabs the keyboard focus.

Protected Member Functions

virtual void on_deactivate ()
virtual void on_selection_done ()
virtual gboolean on_move_selected (int distance)
 MenuShell ()

Related Functions

(Note that these are not member functions.)

Gtk::MenuShellwrap (GtkMenuShell* object, bool take_copy=false)
 A Glib::wrap() method for this object.


Detailed Description

The abstract base class for Gtk::Menu and Gtk::MenuBar.

It is a container of Gtk::MenuItem objects arranged in a list which can be navigated, selected, and activated by the user to perform application functions. It can have a submenu associated with it, allowing for nested hierarchical menus. Use append(), prepend() and insert() to add Gtk::MenuItem widgets.


Constructor & Destructor Documentation

virtual Gtk::MenuShell::~MenuShell ( ) [virtual]
Gtk::MenuShell::MenuShell ( ) [protected]

Member Function Documentation

void Gtk::MenuShell::accelerate ( Window window)

Initializes menu accelerators.

This method initializes the menu accelerators. Therefore an AccelGroup object is needed which is stored in each Window object in the Gtkmm library implementation.

When using MenuBar and OptionMenu objects this method is called automatically when the menus are realized. Because most likely the MenuBar and OptionMenu is attached to a window at this time and the window object can be found automatically.

Important note when using popup menus: If you are using accelerated menu entries inside a popup menu you have to call the accelerate() method manually. This is because the popup menu is not connected to any window and the accelerators should be initialized even before the popup menu is shown. The right place to call the accelerate() method is right after the popup menu has been build.

Parameters:
windowWindow where the menu is shown. Inside this window the AccelGroup object is stored that will be used to initialize the accelerators.
void Gtk::MenuShell::accelerate ( Widget parent)

Initializes menu accelerators.

Does the same as the accelerate(Window& window) method. But you can use any parent widget where the menu is used. This method then gets the toplevel window using Widget::get_toplevel() and uses this window for registering the menu accelerators.

Parameters:
parentParent widget used as starting point for searching the toplevel window.
void Gtk::MenuShell::activate_item ( MenuItem menu_item,
bool  force_deactivate = false 
)
void Gtk::MenuShell::append ( MenuItem menu_item)
void Gtk::MenuShell::cancel ( )

Cancels the selection within the menu shell.

Since gtkmm 2.4:
void Gtk::MenuShell::deactivate ( )
void Gtk::MenuShell::deselect ( )
Widget* Gtk::MenuShell::get_parent_shell ( )
const Widget* Gtk::MenuShell::get_parent_shell ( ) const
Widget* Gtk::MenuShell::get_selected_item ( )
const Widget* Gtk::MenuShell::get_selected_item ( ) const
bool Gtk::MenuShell::get_take_focus ( ) const

Returns true if the menu shell will take the keyboard focus on popup.

Since gtkmm 2.8:
Returns:
true if the menu shell will take the keyboard focus on popup.
const GtkMenuShell* Gtk::MenuShell::gobj ( ) const [inline]

Provides access to the underlying C GtkObject.

Reimplemented from Gtk::Container.

Reimplemented in Gtk::Menu, Gtk::MenuBar, and Gtk::RecentChooserMenu.

GtkMenuShell* Gtk::MenuShell::gobj ( ) [inline]

Provides access to the underlying C GtkObject.

Reimplemented from Gtk::Container.

Reimplemented in Gtk::Menu, Gtk::MenuBar, and Gtk::RecentChooserMenu.

void Gtk::MenuShell::insert ( MenuItem menu_item,
int  position 
)
virtual void Gtk::MenuShell::on_deactivate ( ) [protected, virtual]
virtual gboolean Gtk::MenuShell::on_move_selected ( int  distance) [protected, virtual]
virtual void Gtk::MenuShell::on_selection_done ( ) [protected, virtual]
void Gtk::MenuShell::prepend ( MenuItem menu_item)
Glib::PropertyProxy<bool> Gtk::MenuShell::property_take_focus ( )

A boolean that determines whether the menu grabs the keyboard focus.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly<bool> Gtk::MenuShell::property_take_focus ( ) const

A boolean that determines whether the menu grabs the keyboard focus.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
void Gtk::MenuShell::select_first ( bool  search_sensitive = true)

Select the first visible or selectable child of the menu shell; don't select tearoff items unless the only item is a tearoff item.

Since gtkmm 2.2:
Parameters:
search_sensitiveIf true, search for the first selectable menu item, otherwise select nothing if the first item isn't sensitive. This should be false if the menu is being popped up initially.
void Gtk::MenuShell::select_item ( MenuItem menu_item)
void Gtk::MenuShell::set_take_focus ( bool  take_focus = true)

If take_focus is true (the default) the menu shell will take the keyboard focus so that it will receive all keyboard events which is needed to enable keyboard navigation in menus.

Setting take_focus to false is useful only for special applications like virtual keyboard implementations which should not take keyboard focus.

The take_focus state of a menu or menu bar is automatically propagated to submenus whenever a submenu is popped up, so you don't have to worry about recursively setting it for your entire menu hierarchy. Only when programmatically picking a submenu and popping it up manually, the take_focus property of the submenu needs to be set explicitely.

Note that setting it to false has side-effects:

If the focus is in some other app, it keeps the focus and keynav in the menu doesn't work. Consequently, keynav on the menu will only work if the focus is on some toplevel owned by the onscreen keyboard.

To avoid confusing the user, menus with take_focus set to false should not display mnemonics or accelerators, since it cannot be guaranteed that they will work.

See also gdk_keyboard_grab()

Since gtkmm 2.8:
Parameters:
take_focustrue if the menu shell should take the keyboard focus on popup.
Glib::SignalProxy0< void > Gtk::MenuShell::signal_deactivate ( )
Prototype:
void on_my_deactivate()
Glib::SignalProxy1< gboolean,int > Gtk::MenuShell::signal_move_selected ( )
Prototype:
gboolean on_my_move_selected(int distance)
Glib::SignalProxy0< void > Gtk::MenuShell::signal_selection_done ( )
Prototype:
void on_my_selection_done()

Friends And Related Function Documentation

Gtk::MenuShell* wrap ( GtkMenuShell *  object,
bool  take_copy = false 
) [related]

A Glib::wrap() method for this object.

Parameters:
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
Returns:
A C++ instance that wraps this C instance.

The documentation for this class was generated from the following file:
  • gtkmm/menushell.h