Searched refs:contextMenu (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_folder_button_cell.h25 contextMenu:(NSMenu*)contextMenu
H A Dbookmark_button_cell.h39 contextMenu:(NSMenu*)contextMenu
46 contextMenu:(NSMenu*)contextMenu
/external/chromium-trace/src/shared/js/cr/ui/
H A Dcontext_menu_handler.js155 this.showMenu(e, e.currentTarget.contextMenu);
164 * Adds a contextMenu property to an element or element class.
166 * contextMenu property to.
172 element.__defineGetter__('contextMenu', function() {
175 element.__defineSetter__('contextMenu', function(menu) {
176 var oldContextMenu = this.contextMenu;
202 cr.dispatchPropertyChange(this, 'contextMenu', menu, oldContextMenu);
217 * Sets the given contextMenu to the given element. A contextMenu property
219 * @param {!Element} element The element or class to set the contextMenu t
[all...]
H A Dcontext_menu_button.js22 } while (el && !('contextMenu' in el));
28 * ancestor that has a {@code contextMenu} property.
39 * Override to return the contextMenu for the ancestor.
45 return target && target.contextMenu;
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dcontext_menu_button.js22 } while (el && !('contextMenu' in el));
28 * ancestor that has a {@code contextMenu} property.
39 * Override to return the contextMenu for the ancestor.
45 return target && target.contextMenu;
H A Dcontext_menu_handler.js154 this.showMenu(e, e.currentTarget.contextMenu);
163 * Adds a contextMenu property to an element or element class.
165 * contextMenu property to.
171 element.__defineGetter__('contextMenu', function() {
174 element.__defineSetter__('contextMenu', function(menu) {
175 var oldContextMenu = this.contextMenu;
201 cr.dispatchPropertyChange(this, 'contextMenu', menu, oldContextMenu);
/external/webkit/Source/WebCore/inspector/front-end/
H A DDOMBreakpointsSidebarPane.js61 populateNodeContextMenu: function(node, contextMenu)
81 contextMenu.appendCheckboxItem(label, toggleBreakpoint.bind(this, type), nodeBreakpoints[type]);
219 var contextMenu = new WebInspector.ContextMenu();
225 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), removeBreakpoint.bind(this));
226 contextMenu.show(event);
H A DCallStackSidebarPane.js142 var contextMenu = new WebInspector.ContextMenu();
143 contextMenu.appendItem(WebInspector.UIString("Copy Stack Trace"), this._copyStackTrace.bind(this));
144 contextMenu.show(event);
H A DSourceFrame.js610 var contextMenu = new WebInspector.ContextMenu();
613 this._populateLineGutterContextMenu(target.lineNumber, contextMenu);
615 this._populateTextAreaContextMenu(contextMenu);
616 contextMenu.show(event);
619 _populateLineGutterContextMenu: function(lineNumber, contextMenu)
621 contextMenu.appendItem(WebInspector.UIString("Continue to Here"), this._delegate.continueToLine.bind(this._delegate, lineNumber));
626 contextMenu.appendItem(WebInspector.UIString("Add Breakpoint"), this._delegate.setBreakpoint.bind(this._delegate, lineNumber, "", true));
639 contextMenu.appendItem(WebInspector.UIString("Add Conditional Breakpoint…"), addConditionalBreakpoint.bind(this));
642 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), this._delegate.removeBreakpoint.bind(this._delegate, lineNumber));
652 contextMenu
[all...]
H A DElementsTreeOutline.js261 populateContextMenu: function(contextMenu, event)
273 contextMenu.appendItem(WebInspector.UIString("Reveal in Elements Panel"), focusElement.bind(this));
280 populated = WebInspector.panels.elements.populateHrefContextMenu(contextMenu, event, href);
283 contextMenu.appendSeparator();
284 listItem.treeElement._populateTagContextMenu(contextMenu, event);
288 contextMenu.appendSeparator();
289 listItem.treeElement._populateTextContextMenu(contextMenu, textNode);
775 _populateTagContextMenu: function(contextMenu, event)
781 contextMenu.appendItem(WebInspector.UIString("Add Attribute"), this._addNewAttribute.bind(this));
783 contextMenu
[all...]
H A DObjectPropertiesSection.js230 var contextMenu = new WebInspector.ContextMenu();
231 contextMenu.appendItem(WebInspector.UIString("Reveal in Elements Panel"), revealElement.bind(this));
232 contextMenu.show(event);
H A DBreakpointsSidebarPane.js140 var contextMenu = new WebInspector.ContextMenu();
143 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), removeHandler);
145 contextMenu.show(event);
336 var contextMenu = new WebInspector.ContextMenu();
342 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), removeBreakpoint.bind(this));
343 contextMenu.show(event);
H A DElementsPanel.js285 var contextMenu = new WebInspector.ContextMenu();
287 var populated = this.treeOutline.populateContextMenu(contextMenu, event);
289 contextMenu.appendSeparator();
290 contextMenu.appendCheckboxItem(WebInspector.UIString("Word Wrap"), toggleWordWrap.bind(this), isTextWrapped.call(this));
292 contextMenu.show(event);
295 populateHrefContextMenu: function(contextMenu, event, anchorElement)
305 contextMenu.appendItem(WebInspector.openLinkExternallyLabel(), WebInspector.openResource.bind(null, resourceURL, false));
307 contextMenu.appendItem(WebInspector.UIString("Open Link in Resources Panel"), WebInspector.openResource.bind(null, resourceURL, true));
H A DDataGrid.js888 var contextMenu = new WebInspector.ContextMenu();
893 contextMenu.appendItem(WebInspector.UIString("Add New"), this._startEditing.bind(this, event.target));
895 contextMenu.appendItem(WebInspector.UIString("Edit"), this._startEditing.bind(this, event.target));
898 contextMenu.appendItem(WebInspector.UIString("Delete"), this._deleteCallback.bind(this, gridNode));
900 contextMenu.show(event);
H A DConsoleView.js450 var contextMenu = new WebInspector.ContextMenu();
451 contextMenu.appendCheckboxItem(WebInspector.UIString("XMLHttpRequest logging"), itemAction, WebInspector.settings.monitoringXHREnabled)
452 contextMenu.appendItem(WebInspector.UIString("Clear Console"), this.requestClearMessages.bind(this));
453 contextMenu.show(event);
H A DResourcesPanel.js1353 var contextMenu = new WebInspector.ContextMenu();
1354 contextMenu.appendItem(WebInspector.UIString("Revert to this revision"), this._revision.revertToThis.bind(this._revision));
1355 contextMenu.show(event);
H A DNetworkPanel.js997 var contextMenu = new WebInspector.ContextMenu();
1001 contextMenu.appendItem(WebInspector.UIString("Copy entry as HAR"), this._exportResource.bind(this, resource));
1002 contextMenu.appendItem(WebInspector.UIString("Copy network log as HAR"), this._exportAll.bind(this));
1003 contextMenu.show(event);
/external/webkit/Source/WebCore/page/
H A DContextMenuController.h52 ContextMenu* contextMenu() const { return m_contextMenu.get(); } function in class:WebCore::ContextMenuController
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebContextMenu.cpp55 ContextMenu* menu = controller->contextMenu();
/external/webkit/Source/WebCore/platform/
H A DScrollbar.h108 bool contextMenu(const PlatformMouseEvent& event);
/external/webkit/Source/WebCore/platform/qt/
H A DScrollbarQt.cpp50 bool Scrollbar::contextMenu(const PlatformMouseEvent& event) function in class:WebCore::Scrollbar
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDumpRenderTreeSupportQt.h196 static QStringList contextMenu(QWebPage*);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DEventSender.cpp742 static Vector<WebString> makeMenuItemStringsFor(WebContextMenuData* contextMenu, MockSpellCheck* spellcheck) argument
749 if (!contextMenu)
754 if (contextMenu->isEditable) {
758 spellcheck->fillSuggestionList(contextMenu->misspelledWord, &suggestions);
/external/webkit/Source/WebKit/qt/tests/qwebpage/
H A Dtst_qwebpage.cpp526 QMenu* contextMenu = 0; local
528 contextMenu = qobject_cast<QMenu*>(child);
529 if (contextMenu)
532 QVERIFY(!contextMenu);
544 QMenu* contextMenu = 0; local
546 contextMenu = qobject_cast<QMenu*>(child);
547 if (contextMenu)
550 QVERIFY(contextMenu);
551 delete contextMenu;
2810 QMenu* contextMenu local
[all...]
/external/webkit/Source/WebKit/wx/
H A DWebView.cpp817 WebCore::ContextMenu* coreMenu = m_impl->page->contextMenuController()->contextMenu();
833 WebCore::ContextMenu* coreMenu = m_impl->page->contextMenuController()->contextMenu();

Completed in 331 milliseconds

12