HomeSort by relevance Sort by last modified time
    Searched defs:MenuItemView (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/views/controls/menu/
menu_item_view.cc 39 // is itself a MenuItemView, but it uses a different ID so that it isn't
40 // identified as a MenuItemView.
42 class EmptyMenuMenuItem : public MenuItemView {
44 explicit EmptyMenuMenuItem(MenuItemView* parent)
45 : MenuItemView(parent, 0, EMPTY) {
67 // MenuItemView ---------------------------------------------------------------
70 const int MenuItemView::kMenuItemViewID = 1001;
73 const int MenuItemView::kEmptyMenuItemViewID =
74 MenuItemView::kMenuItemViewID + 1;
77 int MenuItemView::icon_area_width_ = 0
    [all...]
menu_item_view.h 41 // 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 {
117 explicit MenuItemView(MenuDelegate* delegate)
    [all...]

Completed in 96 milliseconds