Searched defs:menu (Results 1 - 25 of 91) sorted by relevance

1234

/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_menu_cocoa_controller.h5 // Controller (MVC) for the bookmark menu.
6 // All bookmark menu item commands get directed here.
26 // The Bookmarks menu
27 @property(nonatomic, readonly) NSMenu* menu; variable
29 // Return an autoreleased string to be used as a menu title for the
35 // Called by any Bookmark menu item.
36 // The menu item's tag is the bookmark ID.
/external/webkit/Examples/NetscapeCocoaPlugin/
H A DMenuHandler.h38 NSMenu *menu; variable
45 - (NSMenu *)menu;
/external/chromium/chrome/browser/ui/gtk/status_icons/
H A Dstatus_tray_gtk_unittest.cc36 ui::SimpleMenuModel* menu = new ui::SimpleMenuModel(NULL); local
37 menu->AddItem(0, ASCIIToUTF16("foo"));
38 icon->SetContextMenu(menu);
/external/chromium/chrome/browser/ui/views/status_icons/
H A Dstatus_tray_win_unittest.cc28 // Create an icon, set the images, tooltip, and context menu, then shut it
37 ui::SimpleMenuModel* menu = new ui::SimpleMenuModel(NULL); local
38 menu->AddItem(0, L"foo");
39 icon->SetContextMenu(menu);
/external/clang/test/CodeGen/
H A Dpragma-pack-3.c11 struct menu { struct in union:command
14 } menu; member in union:command
/external/webkit/Tools/TestResultServer/handlers/
H A Dmenu.py33 menu = [ variable
59 "menu": menu,
63 template.render("templates/menu.html", template_values))
/external/chromium/chrome/browser/status_icons/
H A Dstatus_icon.cc32 void StatusIcon::SetContextMenu(ui::MenuModel* menu) { argument
33 context_menu_contents_.reset(menu);
34 UpdatePlatformContextMenu(menu);
H A Dstatus_icon_unittest.cc21 virtual void UpdatePlatformContextMenu(ui::MenuModel* menu) {} argument
H A Dstatus_tray_unittest.cc20 virtual void UpdatePlatformContextMenu(ui::MenuModel* menu) {} argument
/external/webkit/Source/WebCore/platform/efl/
H A DContextMenuEfl.cpp30 ContextMenu::ContextMenu(void* menu) argument
32 getContextMenuItems(menu, m_items);
35 void ContextMenu::getContextMenuItems(void* menu, Vector<ContextMenuItem>& items) argument
/external/webkit/Tools/TestResultServer/
H A Dmain.py37 from handlers import menu namespace
48 ('/*|/menu', menu.Menu),
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_custom_menu.h42 GtkMenu menu; member in struct:_GtkCustomMenu
/external/chromium/chrome/browser/ui/views/bookmarks/
H A Dbookmark_context_menu.h10 #include "views/controls/menu/menu_delegate.h"
37 // Shows the context menu at the specified point.
40 views::MenuItemView* menu() const { return menu_.get(); } function in class:BookmarkContextMenu
64 // The parent of dialog boxes opened from the context menu.
67 // The menu itself.
70 // The node we're showing the menu for.
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Drender_view_context_menu_views.cc14 #include "views/controls/menu/menu_2.h"
53 HMENU menu = GetMenuHandle(); local
54 DCHECK(menu != NULL);
60 SetMenuInfo(menu, &mi);
/external/webkit/Source/WebCore/platform/gtk/
H A DContextMenuGtk.cpp49 void ContextMenu::setPlatformDescription(PlatformMenuDescription menu) argument
51 ASSERT(menu);
55 m_platformDescription = menu;
/external/webkit/Source/WebCore/platform/qt/
H A DScrollbarQt.cpp58 QMenu menu; local
59 QAction* actScrollHere = menu.addAction(QCoreApplication::translate("QWebPage", "Scroll here"));
60 menu.addSeparator();
62 QAction* actScrollTop = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Left edge") : QCoreApplication::translate("QWebPage", "Top"));
63 QAction* actScrollBottom = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Right edge") : QCoreApplication::translate("QWebPage", "Bottom"));
64 menu.addSeparator();
66 QAction* actPageUp = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Page left") : QCoreApplication::translate("QWebPage", "Page up"));
67 QAction* actPageDown = menu.addAction(horizontal ? QCoreApplication::translate("QWebPage", "Page right") : QCoreApplication::translate("QWebPage", "Page down"));
68 menu.addSeparator();
70 QAction* actScrollUp = menu
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DContextMenuWin.cpp47 ContextMenu::ContextMenu(HMENU menu) argument
49 getContextMenuItems(menu, m_items);
52 void ContextMenu::getContextMenuItems(HMENU menu, Vector<ContextMenuItem>& items) argument
57 int count = ::GetMenuItemCount(menu);
66 if (!::GetMenuItemInfo(menu, i, TRUE, &info))
79 if (::GetMenuItemInfo(menu, i, TRUE, &info))
87 HMENU menu = ::CreatePopupMenu(); local
117 ::InsertMenuW(menu, i, flags, newItem, title);
128 ::InsertMenuItem(menu, i, TRUE, &menuItem);
132 return menu;
[all...]
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DContextMenuClientHaiku.cpp43 PlatformMenuDescription ContextMenuClientHaiku::getCustomMenuFromDefaultItems(ContextMenu* menu) argument
45 return menu->platformDescription();
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DContextMenuClientQt.cpp44 PlatformMenuDescription ContextMenuClientQt::getCustomMenuFromDefaultItems(ContextMenu* menu) argument
47 return menu->releasePlatformDescription();
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebContextMenuProxyWin.cpp42 void WebContextMenuProxyWin::populateMenu(HMENU menu, const Vector<WebContextMenuItemData>& items) argument
53 ::AppendMenu(menu, flags, itemData.action(), title.charactersWithNullTermination());
59 ::AppendMenu(menu, MF_SEPARATOR, 0, 0);
65 ::AppendMenu(menu, MF_POPUP, reinterpret_cast<UINT>(subMenu), title.charactersWithNullTermination());
79 // Hide any context menu we have showing (this also destroys the menu).
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebContextMenuClient.cpp47 PassOwnPtr<ContextMenu> WebContextMenuClient::customizeMenu(PassOwnPtr<ContextMenu> menu) argument
49 // WebKit2 ignores this client callback and does context menu customization when it is told to show the menu.
50 return menu;
53 PlatformMenuDescription WebContextMenuClient::getCustomMenuFromDefaultItems(ContextMenu* menu) argument
55 // WebKit2 ignores this client callback and does context menu customization when it is told to show the menu.
56 return menu->platformDescription();
/external/webkit/Source/WebCore/platform/brew/
H A DContextMenuBrew.cpp41 ContextMenu::ContextMenu(const PlatformMenuDescription menu) argument
85 void ContextMenu::setPlatformDescription(PlatformMenuDescription menu) argument
/external/webkit/Source/WebCore/platform/chromium/
H A DContextMenuChromium.cpp43 ContextMenu::ContextMenu(const PlatformMenuDescription menu) argument
80 void ContextMenu::setPlatformDescription(PlatformMenuDescription menu) argument
/external/webkit/Source/WebCore/platform/haiku/
H A DContextMenuHaiku.cpp46 ContextMenuReceiver(ContextMenu* menu) argument
48 , m_menu(menu)
59 printf("Error: Context menu item with code %i not found!\n", m_result);
112 void ContextMenu::setPlatformDescription(PlatformMenuDescription menu) argument
114 if (static_cast<BMenu*>(menu) == m_platformDescription)
118 m_platformDescription = static_cast<BMenu*>(menu);
/external/webkit/Source/WebCore/platform/wx/
H A DContextMenuWx.cpp31 #include "wx/menu.h"
90 void ContextMenu::setPlatformDescription(PlatformMenuDescription menu) argument
92 if (!menu)
98 m_platformDescription = menu;

Completed in 474 milliseconds

1234