Package | Description |
---|---|
com.google.gwt.user.client.ui |
Widgets, Panels, and other user-interface classes.
|
Modifier and Type | Method and Description |
---|---|
MenuItem |
MenuBar.addItem(MenuItem item)
Adds a menu item to the bar.
|
MenuItem |
MenuBar.addItem(SafeHtml html,
MenuBar popup)
Adds a menu item to the bar, that will open the specified menu when it is
selected.
|
MenuItem |
MenuBar.addItem(SafeHtml html,
Scheduler.ScheduledCommand cmd)
Adds a menu item to the bar containing SafeHtml, that will fire the given
command when it is selected.
|
MenuItem |
MenuBar.addItem(String text,
boolean asHTML,
MenuBar popup)
Adds a menu item to the bar, that will open the specified menu when it is
selected.
|
MenuItem |
MenuBar.addItem(String text,
boolean asHTML,
Scheduler.ScheduledCommand cmd)
Adds a menu item to the bar, that will fire the given command when it is
selected.
|
MenuItem |
MenuBar.addItem(String text,
MenuBar popup)
Adds a menu item to the bar, that will open the specified menu when it is
selected.
|
MenuItem |
MenuBar.addItem(String text,
Scheduler.ScheduledCommand cmd)
Adds a menu item to the bar, that will fire the given command when it is
selected.
|
protected MenuItem |
MenuBar.getSelectedItem()
Returns the
MenuItem that is currently selected (highlighted)
by the user. |
MenuItem |
MenuBar.insertItem(MenuItem item,
int beforeIndex)
Adds a menu item to the bar at a specific index.
|
Modifier and Type | Method and Description |
---|---|
protected List<MenuItem> |
MenuBar.getItems()
Returns a list containing the
MenuItem objects in the menu
bar. |
Modifier and Type | Method and Description |
---|---|
MenuItem |
MenuBar.addItem(MenuItem item)
Adds a menu item to the bar.
|
int |
MenuBar.getItemIndex(MenuItem item)
Get the index of a
MenuItem . |
MenuItem |
MenuBar.insertItem(MenuItem item,
int beforeIndex)
Adds a menu item to the bar at a specific index.
|
void |
MenuBar.removeItem(MenuItem item)
Removes the specified menu item from the bar.
|
void |
MenuBar.selectItem(MenuItem item)
Select the given MenuItem, which must be a direct child of this MenuBar.
|
Copyright © 2018. All rights reserved.