2009-09-19 01:19:11 +00:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 8 -*- */
|
|
|
|
/* vim: set sw=4 ts=8 et tw=80 ft=cpp : */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-09-19 01:19:11 +00:00
|
|
|
|
|
|
|
#ifndef mozilla_dom_plugins_NPEventOSX_h
|
|
|
|
#define mozilla_dom_plugins_NPEventOSX_h 1
|
|
|
|
|
|
|
|
|
|
|
|
#include "npapi.h"
|
|
|
|
|
2009-11-11 02:25:10 +00:00
|
|
|
namespace mozilla {
|
2010-03-17 18:38:28 +00:00
|
|
|
|
2009-11-11 02:25:10 +00:00
|
|
|
namespace plugins {
|
2010-03-17 18:38:28 +00:00
|
|
|
|
2009-11-11 02:25:10 +00:00
|
|
|
struct NPRemoteEvent {
|
2010-03-17 18:38:28 +00:00
|
|
|
NPCocoaEvent event;
|
2012-10-02 19:48:05 +00:00
|
|
|
double contentsScaleFactor;
|
2009-11-11 02:25:10 +00:00
|
|
|
};
|
2010-03-17 18:38:28 +00:00
|
|
|
|
|
|
|
} // namespace plugins
|
|
|
|
|
|
|
|
} // namespace mozilla
|
2009-11-11 02:25:10 +00:00
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
|
2009-09-19 01:19:11 +00:00
|
|
|
template <>
|
2009-11-11 02:25:10 +00:00
|
|
|
struct ParamTraits<mozilla::plugins::NPRemoteEvent>
|
2009-09-19 01:19:11 +00:00
|
|
|
{
|
2009-11-11 02:25:10 +00:00
|
|
|
typedef mozilla::plugins::NPRemoteEvent paramType;
|
2009-09-19 01:19:11 +00:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2010-08-26 08:21:41 +00:00
|
|
|
aMsg->WriteInt(aParam.event.type);
|
|
|
|
aMsg->WriteUInt32(aParam.event.version);
|
|
|
|
switch (aParam.event.type) {
|
2010-03-26 20:25:33 +00:00
|
|
|
case NPCocoaEventMouseDown:
|
|
|
|
case NPCocoaEventMouseUp:
|
|
|
|
case NPCocoaEventMouseMoved:
|
|
|
|
case NPCocoaEventMouseEntered:
|
|
|
|
case NPCocoaEventMouseExited:
|
|
|
|
case NPCocoaEventMouseDragged:
|
|
|
|
case NPCocoaEventScrollWheel:
|
2010-08-26 08:21:41 +00:00
|
|
|
aMsg->WriteUInt32(aParam.event.data.mouse.modifierFlags);
|
|
|
|
aMsg->WriteDouble(aParam.event.data.mouse.pluginX);
|
|
|
|
aMsg->WriteDouble(aParam.event.data.mouse.pluginY);
|
|
|
|
aMsg->WriteInt32(aParam.event.data.mouse.buttonNumber);
|
|
|
|
aMsg->WriteInt32(aParam.event.data.mouse.clickCount);
|
|
|
|
aMsg->WriteDouble(aParam.event.data.mouse.deltaX);
|
|
|
|
aMsg->WriteDouble(aParam.event.data.mouse.deltaY);
|
|
|
|
aMsg->WriteDouble(aParam.event.data.mouse.deltaZ);
|
|
|
|
break;
|
2010-03-26 20:25:33 +00:00
|
|
|
case NPCocoaEventKeyDown:
|
|
|
|
case NPCocoaEventKeyUp:
|
2010-08-26 08:21:41 +00:00
|
|
|
case NPCocoaEventFlagsChanged:
|
|
|
|
aMsg->WriteUInt32(aParam.event.data.key.modifierFlags);
|
2010-03-29 19:27:49 +00:00
|
|
|
WriteParam(aMsg, aParam.event.data.key.characters);
|
|
|
|
WriteParam(aMsg, aParam.event.data.key.charactersIgnoringModifiers);
|
2010-08-26 08:21:41 +00:00
|
|
|
aMsg->WriteUnsignedChar(aParam.event.data.key.isARepeat);
|
|
|
|
aMsg->WriteUInt16(aParam.event.data.key.keyCode);
|
|
|
|
break;
|
|
|
|
case NPCocoaEventFocusChanged:
|
|
|
|
case NPCocoaEventWindowFocusChanged:
|
|
|
|
aMsg->WriteUnsignedChar(aParam.event.data.focus.hasFocus);
|
|
|
|
break;
|
|
|
|
case NPCocoaEventDrawRect:
|
2013-10-23 20:34:46 +00:00
|
|
|
// We don't write out the context pointer, it would always be
|
|
|
|
// nullptr and is just filled in as such on the read.
|
2010-08-26 08:21:41 +00:00
|
|
|
aMsg->WriteDouble(aParam.event.data.draw.x);
|
|
|
|
aMsg->WriteDouble(aParam.event.data.draw.y);
|
|
|
|
aMsg->WriteDouble(aParam.event.data.draw.width);
|
|
|
|
aMsg->WriteDouble(aParam.event.data.draw.height);
|
|
|
|
break;
|
2010-03-26 20:25:33 +00:00
|
|
|
case NPCocoaEventTextInput:
|
2010-03-29 19:27:49 +00:00
|
|
|
WriteParam(aMsg, aParam.event.data.text.text);
|
2010-08-26 08:21:41 +00:00
|
|
|
break;
|
2010-03-26 20:07:37 +00:00
|
|
|
default:
|
2010-03-29 19:27:49 +00:00
|
|
|
NS_NOTREACHED("Attempted to serialize unknown event type.");
|
|
|
|
return;
|
2010-03-26 20:07:37 +00:00
|
|
|
}
|
2012-10-02 19:48:05 +00:00
|
|
|
aMsg->WriteDouble(aParam.contentsScaleFactor);
|
2009-09-19 01:19:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2010-08-26 08:21:41 +00:00
|
|
|
int type = 0;
|
|
|
|
if (!aMsg->ReadInt(aIter, &type)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aResult->event.type = static_cast<NPCocoaEventType>(type);
|
2010-03-26 20:07:37 +00:00
|
|
|
|
2010-08-26 08:21:41 +00:00
|
|
|
if (!aMsg->ReadUInt32(aIter, &aResult->event.version)) {
|
2010-03-26 20:07:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-03-29 19:27:49 +00:00
|
|
|
switch (aResult->event.type) {
|
|
|
|
case NPCocoaEventMouseDown:
|
|
|
|
case NPCocoaEventMouseUp:
|
|
|
|
case NPCocoaEventMouseMoved:
|
|
|
|
case NPCocoaEventMouseEntered:
|
|
|
|
case NPCocoaEventMouseExited:
|
|
|
|
case NPCocoaEventMouseDragged:
|
|
|
|
case NPCocoaEventScrollWheel:
|
2010-08-26 08:21:41 +00:00
|
|
|
if (!aMsg->ReadUInt32(aIter, &aResult->event.data.mouse.modifierFlags)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.mouse.pluginX)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.mouse.pluginY)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadInt32(aIter, &aResult->event.data.mouse.buttonNumber)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadInt32(aIter, &aResult->event.data.mouse.clickCount)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.mouse.deltaX)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.mouse.deltaY)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.mouse.deltaZ)) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-03-29 19:27:49 +00:00
|
|
|
break;
|
|
|
|
case NPCocoaEventKeyDown:
|
|
|
|
case NPCocoaEventKeyUp:
|
2010-08-26 08:21:41 +00:00
|
|
|
case NPCocoaEventFlagsChanged:
|
|
|
|
if (!aMsg->ReadUInt32(aIter, &aResult->event.data.key.modifierFlags)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!ReadParam(aMsg, aIter, &aResult->event.data.key.characters)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!ReadParam(aMsg, aIter, &aResult->event.data.key.charactersIgnoringModifiers)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadUnsignedChar(aIter, &aResult->event.data.key.isARepeat)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadUInt16(aIter, &aResult->event.data.key.keyCode)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NPCocoaEventFocusChanged:
|
|
|
|
case NPCocoaEventWindowFocusChanged:
|
|
|
|
if (!aMsg->ReadUnsignedChar(aIter, &aResult->event.data.focus.hasFocus)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NPCocoaEventDrawRect:
|
2013-10-23 20:34:46 +00:00
|
|
|
aResult->event.data.draw.context = nullptr;
|
2010-08-26 08:21:41 +00:00
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.draw.x)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.draw.y)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.draw.width)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->event.data.draw.height)) {
|
|
|
|
return false;
|
2010-03-29 19:27:49 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NPCocoaEventTextInput:
|
|
|
|
if (!ReadParam(aMsg, aIter, &aResult->event.data.text.text)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2010-08-26 08:21:41 +00:00
|
|
|
NS_NOTREACHED("Attempted to de-serialize unknown event type.");
|
2010-03-29 19:27:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-10-02 19:48:05 +00:00
|
|
|
if (!aMsg->ReadDouble(aIter, &aResult->contentsScaleFactor)) {
|
|
|
|
return false;
|
|
|
|
}
|
2010-03-29 19:27:49 +00:00
|
|
|
|
2009-09-19 01:19:11 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void Log(const paramType& aParam, std::wstring* aLog)
|
|
|
|
{
|
2010-03-17 18:38:28 +00:00
|
|
|
aLog->append(L"(NPCocoaEvent)");
|
2009-09-19 01:19:11 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-11-11 02:25:10 +00:00
|
|
|
} // namespace IPC
|
2009-09-19 01:19:11 +00:00
|
|
|
|
|
|
|
#endif // ifndef mozilla_dom_plugins_NPEventOSX_h
|