Home
last modified time | relevance | path

Searched refs:clickCount (Results 1 – 20 of 20) sorted by relevance

/external/webkit/WebCore/platform/
DPlatformMouseEvent.h88 … int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp) in PlatformMouseEvent() argument
91 , m_clickCount(clickCount) in PlatformMouseEvent()
108 int clickCount() const { return m_clickCount; } in clickCount() function
132 PlatformMouseEvent(QInputEvent*, int clickCount);
/external/webkit/WebKit/mac/Plugins/
DWebNetscapePluginEventHandlerCocoa.mm97 int clickCount;
99 clickCount = 0;
101 clickCount = [nsEvent clickCount];
106 event.data.mouse.clickCount = clickCount;
/external/webkit/WebCore/platform/qt/
DPlatformMouseEventQt.cpp37 PlatformMouseEvent::PlatformMouseEvent(QInputEvent* event, int clickCount) in PlatformMouseEvent() argument
85 m_clickCount = clickCount; in PlatformMouseEvent()
/external/webkit/WebKitTools/DumpRenderTree/mac/
DEventSendingController.mm245 clickCount = 1;
248 clickCount++;
264 clickCount:clickCount
318 clickCount:clickCount
370 clickCount:(leftMouseButtonDown ? clickCount : 0)
398 clickCount:clickCount
DEventSendingController.h36 int clickCount; variable
/external/webkit/WebCore/page/mac/
DEventHandlerMac.mm264 …if ([currentEvent().get() clickCount] <= 1 && [view acceptsFirstResponder] && [view needsPanelToBe…
533 int clickCount = [event clickCount];
534 if (clickCount > 0 && clickCount % 2 == 0)
576 clickCount:[initiatingEvent clickCount]
603 clickCount:0
DAccessibilityObjectWrapper.mm1625 …stamp:0 windowNumber:[[view window] windowNumber] context:0 eventNumber:0 clickCount:1 pressure:1];
/external/webkit/WebCore/dom/
DEventTargetNode.h70 int clickCount = 0, Node* relatedTarget = 0);
71 bool dispatchMouseEvent(const AtomicString& eventType, int button, int clickCount,
/external/webkit/WebCore/page/
DEventHandler.cpp207 … if (result.event().clickCount() == 2 && m_frame->editor()->isSelectTrailingWhitespaceEnabled()) in selectClosestWordFromMouseEvent()
342 bool singleClick = event.event().clickCount() <= 1; in handleMousePressEvent()
383 if (event.event().clickCount() == 2) in handleMousePressEvent()
385 else if (event.event().clickCount() >= 3) in handleMousePressEvent()
445 || event.button() != LeftButton || event.clickCount() != 1) in eventMayStartDrag()
1071 m_clickCount = mouseEvent.clickCount(); in handleMousePressEvent()
1139 m_clickCount = mouseEvent.clickCount(); in handleMouseDoubleClickEvent()
1535 …st AtomicString& eventType, Node* targetNode, bool /*cancelable*/, int clickCount, const PlatformM… in dispatchMouseEvent() argument
1542 …EventTargetNodeCast(m_nodeUnderMouse.get())->dispatchMouseEvent(mouseEvent, eventType, clickCount); in dispatchMouseEvent()
DEventHandler.h248 …vent(const AtomicString& eventType, Node* target, bool cancelable, int clickCount, const PlatformM…
/external/webkit/WebCore/platform/mac/
DPlatformMouseEventMac.mm65 return [event clickCount];
DClipboardMac.mm299 … modifierFlags:0 timestamp:0 windowNumber:0 context:nil eventNumber:0 clickCount:0 pressure:0];
/external/webkit/WebCore/bridge/
Dnpapi.h476 int32 clickCount; member
/external/webkit/WebKitExamplePlugins/NetscapeCocoaPlugin/
Dmain.m278 event->data.mouse.clickCount,
/external/webkit/WebKit/mac/WebView/
DWebHTMLView.mm1018 eventNumber:0 clickCount:0 pressure:0];
1044 eventNumber:0 clickCount:0 pressure:0];
1460 eventNumber:0 clickCount:0 pressure:0];
1676 eventNumber:0 clickCount:0 pressure:0];
3233 eventNumber:0 clickCount:0 pressure:0];
DWebPDFView.mm945 …event = MouseEvent::create(eventNames().clickEvent, true, true, 0, [nsEvent clickCount], 0, 0, 0, …
/external/webkit/WebKit/mac/Carbon/
DHIWebView.m560 clickCount:1
/external/webkit/WebCore/
DChangeLog-2005-12-1919826 …onclick and ondblclick events are mutually exclusive, with click representing an odd clickCount and
19827 dblclick representing an even clickCount).
19829 …(4) ondblclick has been changed to fire only when clickCount is exactly 2. This matches Firefox. …
19830 …remains a separate synthetic event that fires independently of click with a clickCount of 2. This…
19879 (QMouseEvent::clickCount):
DChangeLog-2003-10-2516877 (KWQKHTMLPart::khtmlMousePressEvent): Check clickCount here the way NSWindow does.
16882 do check that too. And while I was in here, did the same clickCount check that NSWindow
DChangeLog-2005-08-2329137 (clickCountForEvent): Same, for clickCount.
44232 * khtml/khtmlview.cpp: (KHTMLView::invalidateClick): Added. Sets clickCount to 0.