HomeSort by relevance Sort by last modified time
    Searched refs:contextMenu (Results 1 - 17 of 17) sorted by null

  /external/webkit/WebCore/page/
ContextMenuController.h 36 class ContextMenu;
50 ContextMenu* contextMenu() const { return m_contextMenu.get(); }
59 ContextMenu* createContextMenu(Event*);
64 OwnPtr<ContextMenu> m_contextMenu;
  /external/webkit/WebCore/platform/mac/
ContextMenuMac.mm 27 #include "ContextMenu.h"
73 ASSERT(_menuController->contextMenu());
74 _menuController->contextMenu()->checkOrEnableIfNeeded(coreItem);
82 ContextMenu::ContextMenu(const HitTestResult& result)
92 ContextMenu::ContextMenu(const HitTestResult& result, const PlatformMenuDescription menu)
99 ContextMenu::~ContextMenu()
109 void ContextMenu::appendItem(ContextMenuItem& item
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ElementsTreeOutline.js 45 this.element.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), true);
276 var contextMenu = new WebInspector.ContextMenu();
281 listItem.treeElement._populateTagContextMenu(contextMenu, event);
283 listItem.treeElement._populateTextContextMenu(contextMenu, textNode);
284 contextMenu.show(event);
594 _populateTagContextMenu: function(contextMenu, event)
600 contextMenu.appendItem(WebInspector.UIString("Add Attribute"), this._addNewAttribute.bind(this));
602 contextMenu.appendItem(WebInspector.UIString("Edit Attribute"), this._startEditingAttribute.bind(this, attribute, event.target));
603 contextMenu.appendSeparator()
    [all...]
SourceFrame.js 158 element.addEventListener("contextmenu", this._contextMenu.bind(this), true);
402 var contextMenu = new WebInspector.ContextMenu();
407 contextMenu.appendItem(WebInspector.UIString("Add Breakpoint"), this._addBreakpointDelegate.bind(this, lineNumber + 1));
417 contextMenu.appendItem(WebInspector.UIString("Add Conditional Breakpoint..."), addConditionalBreakpoint.bind(this));
420 contextMenu.appendItem(WebInspector.UIString("Remove Breakpoint"), WebInspector.panels.scripts.removeBreakpoint.bind(WebInspector.panels.scripts, breakpoint));
421 contextMenu.appendItem(WebInspector.UIString("Edit Breakpoint..."), this._editBreakpointCondition.bind(this, breakpoint));
423 contextMenu.appendItem(WebInspector.UIString("Disable Breakpoint"), function() { breakpoint.enabled = false; });
425 contextMenu.appendItem(WebInspector.UIString("Enable Breakpoint"), function() { breakpoint.enabled = true; });
427 contextMenu.show(event)
    [all...]
DataGrid.js 42 this._dataTable.addEventListener("contextmenu", this._contextMenuInDataTable.bind(this), true);
694 var contextMenu = new WebInspector.ContextMenu();
699 contextMenu.appendItem(WebInspector.UIString("Add New"), this._startEditing.bind(this, event.target));
701 contextMenu.appendItem(WebInspector.UIString("Edit"), this._startEditing.bind(this, event.target));
704 contextMenu.appendItem(WebInspector.UIString("Delete"), this._deleteCallback.bind(this, gridNode));
706 contextMenu.show(event);
    [all...]
  /external/webkit/WebCore/platform/qt/
ScrollbarQt.cpp 49 bool Scrollbar::contextMenu(const PlatformMouseEvent& event)
  /external/webkit/WebCore/platform/
Scrollbar.h 106 bool contextMenu(const PlatformMouseEvent& event);
  /external/webkit/WebKit/wx/
WebView.cpp 28 #include "ContextMenu.h"
673 WebCore::ContextMenu* coreMenu = m_impl->page->contextMenuController()->contextMenu();
689 WebCore::ContextMenu* coreMenu = m_impl->page->contextMenuController()->contextMenu();
694 WebCore::ContextMenuItem* item = WebCore::ContextMenu::itemWithId (event.GetId());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
UiContentOutlinePage.java 271 Menu contextMenu = menuManager.createContextMenu(control);
272 control.setMenu(contextMenu);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 498 Menu contextMenu = menuManager.createContextMenu(tree);
499 tree.setMenu(contextMenu);
    [all...]
  /external/webkit/WebKit/qt/tests/qwebpage/
tst_qwebpage.cpp 414 QMenu* contextMenu = 0;
416 contextMenu = qobject_cast<QMenu*>(child);
417 if (contextMenu)
420 QVERIFY(contextMenu);
421 delete contextMenu;
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp 45 #include "ContextMenu.h"
508 QMenu *QWebPagePrivate::createContextMenu(const WebCore::ContextMenu *webcoreMenu,
    [all...]
  /external/webkit/WebKit/chromium/src/
WebViewImpl.cpp 38 #include "ContextMenu.h"
359 // Dispatch the contextmenu event regardless of if the click was swallowed.
447 // Dispatch the contextmenu event regardless of if the click was swallowed.
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 49 import android.view.ContextMenu;
61 import android.view.ContextMenu.ContextMenuInfo;
    [all...]
  /external/webkit/WebKit/win/
WebView.cpp 73 #include <WebCore/ContextMenu.h>
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebview.cpp 48 #include "ContextMenu.h"
223 ContextMenu* coreMenu = page->contextMenuController()->contextMenu();
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebHTMLView.mm 82 #import <WebCore/ContextMenu.h>
    [all...]

Completed in 387 milliseconds