BMenuItem

Derived from: public BInvoker, public BArchivable

Declared in: be/interface/MenuItem.h

Library: libbe.so


Overview

[method summary]

A BMenuItem object displays one item within a menu and contains the state associated with the item. By default, menu items are displayed simply as textual labels, like "Format" or "Save As...". Derived classes can be defined to draw something other than a label--or something in addition to the label.


Kinds of Items

Some menu items set up the menu hierarchy by giving users access to submenus. A submenu remains hidden until the user operates the item that controls it.

Other items accomplish specific actions. When the user invokes the item, it sends a message to a target BLooper and BHandler, usually the window where the menu at the root of the hierarchy (a BMenuBar object) is displayed. The action that the item initiates, or the state that it sets, depends entirely on the message and the target's response to it.

The message and the target can be customized for every item. BMenuItem derives in part from the BInvoker class, so each item retains a model for the BMessage it sends and can have a target that's different from other items in the same menu.

Items can also have a visual presence, but do nothing. Instances of the BSeparatorItem class, which is derived from BMenuItem, serve only to visually separate groups of items in the menu.


Shortcuts and Triggers

Any menu item (except for those that control submenus) can be associated with a keyboard shortcut, a character the user can type in combination with a Command key (and possibly other modifiers) to invoke the item. The shortcut character is displayed in the item to the right of the label. All shortcuts for menu items require the user to hold down the Command key.

A shortcut works even when the item it invokes isn't visible on-screen. It, therefore, has to be unique within the window (within the entire menu hierarchy).

Every menu item is also associated with a trigger, a character that the user can type (without the Command key) to invoke the item. The trigger works only while the menu is both open on-screen and can be operated using the keyboard. It therefore must be unique only within a particular branch of the menu hierarchy (within the menu).

The trigger is one of the characters that's displayed within the item--either the keyboard shortcut or a character in the label. When it's possible for the trigger to invoke the item, the character is underlined. Like shortcuts, triggers are case-insensitive.

For an item to have a keyboard shortcut, the application must explicitly assign one. However, by default, the Interface Kit chooses and assigns triggers for all items. The default choice can be altered by the SetTrigger() function.


Marked Items

An item can also be marked (with a check mark drawn to the left of the label) in order to indicate that the state it sets is currently in effect. Items are marked by the SetMarked() function. A menu can be set up so that items are automatically marked when they're selected and exactly one item is marked at all times. (See SetRadioMode() in the BMenu class.)


Disabled Items

Items can also be enabled or disabled (by the SetEnabled() function). A disabled item is drawn in muted tones to indicate that it doesn't work. It can't be selected or invoked. If the item controls a specific action, it won't post the message that initiates the action. If it controls a submenu, it will still bring the submenu to the screen, but all the items in submenu will be disabled. If an item in the submenu brings its own submenu to the screen, items in that submenu will also be disabled. Disabling the superitem for a submenu in effect disables a whole branch of the menu hierarchy.

See also: the BMenu class, the BSeparatorItem class


Hook Functions

All BMenuItem hook functions are protected. They should be implemented only if you design a special type of menu item that displays something other than a textual label.

Draw()
Draws the entire item; can be reimplemented to draw the item in a different way.

DrawContent()
Draws the item label; can be reimplemented to draw something other than a label.

GetContentSize()
Provides the width and height of the item's content area, which is based on the length of the label and the current font; can be reimplemented to provide the size required to draw something other than a label.

Highlight()
Highlights the item when it's selected; can be reimplemented to do highlighting in some way other than the default.

TruncateLabel()
Cuts characters from the item's label so the item will fit in the space provided; can be reimplemented to cut more intelligently taking the content of the label into account.


Constructor and Destructor


BMenuItem()

      BMenuItem(const char *label, BMessage *message,
         char shortcut = NULL, uint32 modifiers = NULL) 
      BMenuItem(BMenu *submenu, BMessage *message = NULL) 
      BMenuItem(BMessage *archive) 

Initializes the BMenuItem to display label (which can be NULL if the item belongs to a derived class that's designed to display something other than text) and assigns it a model message (which also can be NULL).

Whenever the user invokes the item, the model message is copied and the copy is posted and marked for delivery to the target handler. Three pieces of information are added to the copy before it's posted:

Data name Type code Description
"when" B_INT64_TYPE The time the item was invoked, as measured by the number of microseconds since 12:00:00 AM January 1, 1970.
"source" B_POINTER_TYPE A pointer to the BMenuItem object.
"index" B_INT32_TYPE The index of the item, its ordinal position in the menu. Indices begin at 0.

These names should not be used for any data that you place in the message.

By default, the target of the message is the window associated with the item's menu hierarchy--the window where the BMenuBar at the root of the hierarchy is located. Another target can be designated by calling the SetTarget() function (inherited from BInvoker).

The constructor can also optionally set a keyboard shortcut for the item. The character that's passed as the shortcut parameter will be displayed to the right of the item's label. It's the accepted practice to display uppercase shortcut characters only, even though the actual character the user types may not be uppercase.

The modifiers mask, not the shortcut character, determines which modifier keys the user must hold down for the shortcut to work--including whether the Shift key must be down. The mask can be formed by combining any of the modifiers constants, especially these:

B_SHIFT_KEY
B_CONTROL_KEY
B_OPTION_KEY
B_COMMAND_KEY

However, B_COMMAND_KEY is required for all keyboard shortcuts; it doesn't have to be explicitly included in the mask. For example, setting the shortcut to 'U' with no modifiers would mean that the letter 'U' would be displayed alongside the item label and Command-u would invoke the item. The same shortcut with a B_SHIFT_KEY modifiers mask would mean that the uppercase character (Command-Shift-U) would invoke the item.

If the BMenuItem is constructed to control a submenu, it can't take a shortcut and it typically doesn't post messages--its role is to bring up the submenu. However, it can be assigned a model message if the application must take some collateral action when the submenu is opened. The item's initial label will be taken from the name of the submenu. It can be changed after construction by calling SetLabel().

See also: BInvoker::SetTarget(), BInvoker::SetMessage(), SetLabel()


~BMenuItem()

      virtual ~BMenuItem()

Frees the item's label and its model BMessage object. If the item controls a submenu, that menu and all its items are also freed. Deleting a BMenuItem destroys the entire menu hierarchy under that item.


Static Functions


Instantiate()

      static BArchivable *Instantiate(BMessage *archive) 

Returns a new BMenuItem object, allocated by new and created with the version of the constructor that takes a BMessage archive. However, if the archive message doesn't contain data for a BMenuItem object, Instantiate() returns NULL.

See also: BArchivable::Instantiate(), instantiate_object(), Archive()


Member Functions


Archive()

      virtual status_t Archive(BMessage *archive, bool deep = true) const

Calls the inherited version of Archive(), then adds a complete description of the item to the BMessage archive, includings its label, shortcut, trigger, and whether it's marked or not. If the deep flag is true and the BMenuItem controls a submenu, this function also adds the submenu to the archive.

See also: BArchivable::Archive(), Instantiate() static function


ContentLocation()

      BPoint ContentLocation(void) const

Returns the left top corner of the content area of the item, in the coordinate system of the BMenu to which it belongs. The content area of an item is the area where it displays its label (or whatever graphic substitutes for the label). It doesn't include the part of the item where a check mark or a keyboard shortcut could be displayed, nor the border and background around the content area.

You would need to call this function only if you're implementing a DrawContent() function to draw the contents of the menu item (likely something other than a label). The content rectangle can be calculated from the point returned by this function and the size specified by GetContentSize().

If the item isn't part of a menu, the return value is indeterminate.

See also: GetContentSize(), DrawContent()


Draw(), DrawContent()

      virtual void Draw(void)
      virtual void DrawContent(void)

These functions draw the menu item and highlight it if it's currently selected. They're called by the Draw() function of the BMenu where the item is located whenever the menu is required to display itself; they don't need to be called from within application code.

However, they can both be overridden by derived classes that display something other than a textual label. The Draw() function is called first. It draws the background for the entire item, then calls DrawContent() to draw the label within the item's content area. After DrawContent() returns, it draws the check mark (if the item is currently marked) and the keyboard shortcut (if any). It finishes by calling Highlight() if the item is currently selected.

Both functions draw by calling functions of the BMenu in which the item is located. For example:

   void MyItem::DrawContent()
   {
       . . .
       Menu()->DrawBitmap(image);
       . . .
   }

A derived class can override either Draw(), if it needs to draw the entire item, or DrawContent(), if it needs to draw only within the content area. A Draw() function can find the frame rectangle it should draw within by calling the BMenuItem's Frame() function; a DrawContent() function can calculate the content area from the point returned by ContentLocation() and the dimensions provided by GetContentSize().

When DrawContent() is called, the pen is positioned to draw the item's label and the high color is appropriately set. The high color may be a shade of gray, if the item is disabled, or black if it's enabled. If some other distinction is used to distinguish disabled from enabled items, DrawContent() should check the item's current state by calling IsEnabled().

Note: If a derived class implements its own DrawContent() function, but still wants to draw a textual string, it should do so by assigning the string as the BMenuItem's label and calling the inherited version of DrawContent(), not by calling DrawString(). This preserves the BMenuItem's ability to display a trigger character in the string.

See also: Highlight(), Frame(), ContentLocation(), GetContentSize()


Frame()

      BRect Frame(void) const

Returns the rectangle that frames the entire menu item, in the coordinate system of the BMenu to which the item belongs. If the item hasn't been added to a menu, the return value is indeterminate.

See also: BMenu::AddItem()


GetContentSize()

      virtual void GetContentSize(float *width, float *height)

Writes the size of the item's content area into the variables referred to by width and height. The content area of an item is the area where its label (or whatever substitutes for the label) is drawn.

A BMenu calls GetContentSize() for each of its items as it arranges them in a column or a row; the function is not called for items in a matrix. The information it provides helps determine where each item is located and the overall size of the menu.

GetContentSize() must report a size that's large enough to display the content of the item (and separate one item from another). By default, it reports an area just large enough to display the item's label. This area is calculated from the label and the BMenu's current font.

If you design a class derived from BMenuItem and implement your own Draw() or DrawContent() function, you should also implement a GetContentSize() function to report how much room will be needed to draw the item's contents.

See also: DrawContent(), ContentLocation()


Highlight()

      virtual void Highlight(bool flag)

Highlights the menu item when flag is true, and removes the highlighting when flag is false. Highlighting simply inverts all the colors in the item's frame rectangle (except for the check mark).

This function is called by the Draw() function whenever the item is selected and needs to be drawn in its highlighted state. There's no reason to call it yourself, unless you define your own version of Draw(). However, it can be reimplemented in a derived class, if items belonging to that class need to be highlighted in some way other than simple inversion.

See also: Draw()


Invoke()

      virtual status_t Invoke(BMessage *message = NULL)

Augments the BInvoker version of Invoke() to ensure that only enabled menu items that are attached to a menu hierarchy can be invoked. This function appropriately marks items when the user invokes them. Before sending a message, it adds "when", "source", and "index" field to it, as explained under the BMenuItem constructor.

See also: BInvoker::Invoke()


IsEnabled() see SetEnabled()


isMarked() see SetMarked()


IsSelected()

      bool IsSelected(void) const

Returns true if the menu item is currently selected, and false if not. Selected items are highlighted.


Label() see SetLabel()


Menu()

      BMenu *Menu(void) const

Returns the menu where the item is located, or NULL if the item hasn't yet been added to a menu.

See also: BMenu::AddItem()


SetEnabled(), IsEnabled()

      virtual void SetEnabled(bool enabled)
      bool IsEnabled(void) const

SetEnabled() enables the BMenuItem if the enabled flag is true, disables it if enabled is false, and updates the item if it's visible on-screen. If the item controls a submenu, this function calls the submenu's SetEnabled() virtual function, passing it the same flag. This ensures that the submenu is enabled or disabled as well.

IsEnabled() returns true if the BMenuItem is enabled, its menu is enabled, and all menus above it in the hierarchy are enabled. It returns false if the item is disabled or any objects above it in the menu hierarchy are disabled.

Items and menus are enabled by default.

When using these functions, keep in mind that:

See also: BMenu::SetEnabled()


SetLabel(), Label()

      virtual void SetLabel(const char *string)
      const char *Label(void) const

SetLabel() frees the item's current label and copies string to replace it. If the menu is visible on-screen, it will be redisplayed with the item's new label. If necessary, the menu will become wider (or narrower) so that it fits the new label.

The Interface Kit calls this virtual function to:

Label() returns a pointer to the current label.

See also: BMenu::SetLabelFromMarked(), the BMenuItem constructor


SetMarked(), IsMarked()

      virtual void SetMarked(bool flag)
      bool IsMarked(void) const

SetMarked() adds a check mark to the left of the item label if flag is true, or removes an existing mark if flag is false. If the menu is visible on-screen. it's redisplayed with or without the mark.

IsMarked() returns whether the item is currently marked.

See also: BMenu::SetLabelFromMarked(), BMenu::FindMarked()


SetShortcut(), Shortcut()

      virtual void SetShortcut(char shortcut, uint32 modifiers) 
      char Shortcut(uint32 *modifiers = NULL) const

SetShortcut() sets the shortcut character that's displayed at the right edge of the menu item and the set of modifiers that are associated with the character. These two arguments work just like the arguments passed to the BMenuItem constructor. See the constructor for a more complete description.

Shortcut() returns the character that's used as the keyboard shortcut for invoking the item, and writes a mask of all the modifier keys the shortcut requires to the variable referred to by modifiers. Since the Command key is required to operate the keyboard shortcut for any menu item, B_COMMAND_KEY will always be part of the modifiers mask. The mask can also be tested against the B_CONTROL_KEY, B_OPTION_KEY, and B_SHIFT_KEY constants.

The shortcut is initially set by the BMenuItem constructor.

See also: the BMenuItem constructor


SetTrigger(), Trigger()

      virtual void SetTrigger(char trigger)
      char Trigger(void) const

SetTrigger() sets the trigger character that the user can type to invoke the item while the item's menu is open on-screen. If a trigger is not set, the Interface Kit will select one for the item, so it's not necessary to call SetTrigger().

The character passed to this function has to match a character displayed in the item--either the keyboard shortcut or a character in the label. The case of the character doesn't matter; lowercase arguments will match uppercase characters in the item and uppercase arguments will match lowercase characters. When the item can be invoked by its trigger, the trigger character is underlined.

If more than one character in the item matches the character passed, SetTrigger() tries first to mark the keyboard shortcut. Failing that, it tries to mark an uppercase letter at the beginning of a word. Failing that, it marks the first instance of the character in the label.

If the trigger doesn't match any characters in the item, the item won't have a trigger, not even one selected by the system.

Trigger() returns the character set by SetTrigger(), or NULL if SetTrigger() didn't succeed or if SetTrigger() was never called and the trigger is selected automatically.

See also: BMenu::SetTriggersEnabled()


Shortcut() see SetShortcut()


Submenu()

      BMenu *Submenu(void) const

Returns the BMenu object that the item controls, or NULL if the item doesn't control a submenu.

See also: the BMenuItem constructor, the BMenu class


Trigger() see SetTrigger()


TruncateLabel()

      virtual void TruncateLabel(float maxWidth, char *newLabel) 

Removes characters from the middle of the item label and replaces them with an ellipsis. This is done so that the label will fit within maxWidth coordinate units. The shortened string is copied into the newLabel buffer.

This function is called by the BMenuItem when it draws the item's label, but only if it's necessary to fit a long item into a smaller space. It can be reimplemented by derived classes to do a better job of shortening the string based on the actual content of the label.

Your version of TruncateLabel() should be careful to not cut the trigger character from the string.

See also: BFont::GetTrunctatedStrings()


Archived Fields

The Archive() function adds the following fields to its BMessage argument:

Field Type code Meaning
"_label" B_STRING_TYPE Text label of the menu item.
"_disable" B_BOOL_TYPE true if menu item is disabled.
"_marked" B_BOOL_TYPE true if menu item is marked.
"_user_trig" B_INT32_TYPE User-defined trigger character.
"_shortcut" B_INT32_TYPE Shortcut character.
"_mods" B_INT32_TYPE Shortcut modifiers.
"_msg" B_MESSAGE_TYPE Modal message for the item.
"_submenu" B_MESSAGE_TYPE Submenu (only in deep copy).

Some of these fields may not be present if the setting they represent isn't used, or is the default value. For example, if no shortcut key was defined, the "_shortcut" and "_mods" fields won't be found in the archive.






The Be Book, in lovely HTML, for BeOS Release 4.

Copyright © 1998 Be, Inc. All rights reserved.

Last modified January 29, 1998.