⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 webnetscapeplugineventhandlercocoa.mm

📁 linux下开源浏览器WebKit的源码,市面上的很多商用浏览器都是移植自WebKit
💻 MM
字号:
/* * Copyright (C) 2008 Apple Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  */#if ENABLE(NETSCAPE_PLUGIN_API)#import "WebNetscapePluginEventHandlerCocoa.h"#import "WebNetscapePluginView.h"WebNetscapePluginEventHandlerCocoa::WebNetscapePluginEventHandlerCocoa(WebNetscapePluginView* pluginView)    : WebNetscapePluginEventHandler(pluginView){}static inline void initializeEvent(NPCocoaEvent* event, NPCocoaEventType type){    event->type = type;    event->version = 0;}void WebNetscapePluginEventHandlerCocoa::drawRect(const NSRect& rect){    NPCocoaEvent event;        initializeEvent(&event, NPCocoaEventDrawRect);    event.data.draw.x = rect.origin.x;    event.data.draw.y = rect.origin.y;    event.data.draw.width = rect.size.width;    event.data.draw.height = rect.size.height;        sendEvent(&event);}void WebNetscapePluginEventHandlerCocoa::mouseDown(NSEvent *event){    sendMouseEvent(event, NPCocoaEventMouseDown);}void WebNetscapePluginEventHandlerCocoa::mouseDragged(NSEvent *event){    sendMouseEvent(event, NPCocoaEventMouseDragged);}void WebNetscapePluginEventHandlerCocoa::mouseEntered(NSEvent *event){    sendMouseEvent(event, NPCocoaEventMouseEntered);}void WebNetscapePluginEventHandlerCocoa::mouseExited(NSEvent *event){    sendMouseEvent(event, NPCocoaEventMouseExited);}void WebNetscapePluginEventHandlerCocoa::mouseMoved(NSEvent *event){    sendMouseEvent(event, NPCocoaEventMouseMoved);}void WebNetscapePluginEventHandlerCocoa::mouseUp(NSEvent *event){    sendMouseEvent(event, NPCocoaEventMouseUp);}bool WebNetscapePluginEventHandlerCocoa::scrollWheel(NSEvent* event){    return sendMouseEvent(event, NPCocoaEventScrollWheel);}bool WebNetscapePluginEventHandlerCocoa::sendMouseEvent(NSEvent *nsEvent, NPCocoaEventType type){    NPCocoaEvent event;        NSPoint point = [m_pluginView convertPoint:[nsEvent locationInWindow] fromView:nil];        int clickCount;    if (type == NPCocoaEventMouseEntered || type == NPCocoaEventMouseExited || type == NPCocoaEventScrollWheel)        clickCount = 0;    else        clickCount = [nsEvent clickCount];        initializeEvent(&event, type);    event.data.mouse.modifierFlags = [nsEvent modifierFlags];    event.data.mouse.buttonNumber = [nsEvent buttonNumber];    event.data.mouse.clickCount = clickCount;    event.data.mouse.pluginX = point.x;    event.data.mouse.pluginY = point.y;    event.data.mouse.deltaX = [nsEvent deltaX];    event.data.mouse.deltaY = [nsEvent deltaY];    event.data.mouse.deltaZ = [nsEvent deltaZ];        return sendEvent(&event);}void WebNetscapePluginEventHandlerCocoa::keyDown(NSEvent *event){    bool retval = sendKeyEvent(event, NPCocoaEventKeyDown);        // If the plug-in did not handle the event, pass it on to the Input Manager.    if (!retval)        [m_pluginView interpretKeyEvents:[NSArray arrayWithObject:event]];}void WebNetscapePluginEventHandlerCocoa::keyUp(NSEvent *event){    sendKeyEvent(event, NPCocoaEventKeyUp);}void WebNetscapePluginEventHandlerCocoa::flagsChanged(NSEvent *nsEvent){    NPCocoaEvent event;            initializeEvent(&event, NPCocoaEventFlagsChanged);    event.data.key.modifierFlags = [nsEvent modifierFlags];    event.data.key.keyCode = [nsEvent keyCode];    event.data.key.isARepeat = false;    event.data.key.characters = 0;    event.data.key.charactersIgnoringModifiers = 0;        sendEvent(&event);}bool WebNetscapePluginEventHandlerCocoa::sendKeyEvent(NSEvent* nsEvent, NPCocoaEventType type){    NPCocoaEvent event;    initializeEvent(&event, type);    event.data.key.modifierFlags = [nsEvent modifierFlags];    event.data.key.keyCode = [nsEvent keyCode];    event.data.key.isARepeat = [nsEvent isARepeat];    event.data.key.characters = (NPNSString *)[nsEvent characters];    event.data.key.charactersIgnoringModifiers = (NPNSString *)[nsEvent charactersIgnoringModifiers];         return sendEvent(&event);}void WebNetscapePluginEventHandlerCocoa::windowFocusChanged(bool hasFocus){    NPCocoaEvent event;        initializeEvent(&event, NPCocoaEventWindowFocusChanged);    event.data.focus.hasFocus = hasFocus;        sendEvent(&event);}void WebNetscapePluginEventHandlerCocoa::focusChanged(bool hasFocus){    NPCocoaEvent event;    initializeEvent(&event, NPCocoaEventFocusChanged);    event.data.focus.hasFocus = hasFocus;        sendEvent(&event);}void* WebNetscapePluginEventHandlerCocoa::platformWindow(NSWindow* window){    return window;}bool WebNetscapePluginEventHandlerCocoa::sendEvent(NPCocoaEvent* event){    switch (event->type) {        case NPCocoaEventMouseDown:        case NPCocoaEventMouseUp:        case NPCocoaEventMouseDragged:        case NPCocoaEventKeyDown:        case NPCocoaEventKeyUp:        case NPCocoaEventFlagsChanged:        case NPCocoaEventScrollWheel:            m_currentEventIsUserGesture = true;            break;        default:            m_currentEventIsUserGesture = false;    }                bool result = [m_pluginView sendEvent:event isDrawRect:event->type == NPCocoaEventDrawRect];        m_currentEventIsUserGesture = false;    return result;}#endif // ENABLE(NETSCAPE_PLUGIN_API)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -