Searched defs:MenuItemView (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/views/controls/menu/
H A Dmenu_item_view.cc38 // is itself a MenuItemView, but it uses a different ID so that it isn't
39 // identified as a MenuItemView.
41 class EmptyMenuMenuItem : public MenuItemView {
43 explicit EmptyMenuMenuItem(MenuItemView* parent)
44 : MenuItemView(parent, 0, EMPTY) {
66 // MenuItemView ---------------------------------------------------------------
69 const int MenuItemView::kMenuItemViewID = 1001;
72 const int MenuItemView::kEmptyMenuItemViewID =
73 MenuItemView::kMenuItemViewID + 1;
76 int MenuItemView
90 MenuItemView::MenuItemView(MenuDelegate* delegate) function in class:views::MenuItemView
576 MenuItemView::MenuItemView(MenuItemView* parent, function in class:views::MenuItemView
[all...]
H A Dmenu_item_view.h41 // MenuItemView --------------------------------------------------------------
43 // MenuItemView represents a single menu item with a label and optional icon.
44 // Each MenuItemView may also contain a submenu, which in turn may contain
47 // To use a menu create an initial MenuItemView using the constructor that
51 // MenuItemView is itself a View, which means you can add Views to each
52 // MenuItemView. This is normally NOT want you want, rather add other child
53 // Views to the submenu of the MenuItemView. Any child views of the MenuItemView
63 class VIEWS_EXPORT MenuItemView : public View { class in namespace:views
117 explicit MenuItemView(MenuDelegat
[all...]

Completed in 253 milliseconds