2010-08-17 01:07:42 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
#ifndef nsGUIEventIPC_h__
|
|
|
|
#define nsGUIEventIPC_h__
|
|
|
|
|
2012-08-28 05:41:04 -07:00
|
|
|
#include "ipc/IPCMessageUtils.h"
|
2013-07-26 12:28:31 -07:00
|
|
|
#include "mozilla/GfxMessageUtils.h"
|
2013-04-05 01:49:00 -07:00
|
|
|
#include "mozilla/dom/Touch.h"
|
2013-09-25 04:21:20 -07:00
|
|
|
#include "mozilla/MiscEvents.h"
|
2013-09-25 04:21:18 -07:00
|
|
|
#include "mozilla/MouseEvents.h"
|
2013-09-25 04:21:19 -07:00
|
|
|
#include "mozilla/TextEvents.h"
|
2013-09-25 04:21:16 -07:00
|
|
|
#include "mozilla/TouchEvents.h"
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
namespace IPC
|
|
|
|
{
|
|
|
|
|
2012-12-15 17:26:03 -08:00
|
|
|
template<>
|
2013-09-13 19:39:41 -07:00
|
|
|
struct ParamTraits<mozilla::BaseEventFlags>
|
2012-12-15 17:26:03 -08:00
|
|
|
{
|
2013-09-13 19:39:41 -07:00
|
|
|
typedef mozilla::BaseEventFlags paramType;
|
2012-12-15 17:26:03 -08:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2012-12-19 19:42:29 -08:00
|
|
|
aMsg->WriteBytes(&aParam, sizeof(aParam));
|
2012-12-15 17:26:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2012-12-19 19:42:29 -08:00
|
|
|
const char* outp;
|
|
|
|
if (!aMsg->ReadBytes(aIter, &outp, sizeof(*aResult))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
*aResult = *reinterpret_cast<const paramType*>(outp);
|
|
|
|
return true;
|
2012-12-15 17:26:03 -08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-08-17 01:07:42 -07:00
|
|
|
template<>
|
2013-10-01 20:46:04 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetEvent>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 20:46:04 -07:00
|
|
|
typedef mozilla::WidgetEvent paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2012-11-19 22:05:56 -08:00
|
|
|
WriteParam(aMsg, (uint8_t) aParam.eventStructType);
|
2010-08-17 01:07:42 -07:00
|
|
|
WriteParam(aMsg, aParam.message);
|
|
|
|
WriteParam(aMsg, aParam.refPoint);
|
|
|
|
WriteParam(aMsg, aParam.time);
|
2012-12-15 17:26:03 -08:00
|
|
|
WriteParam(aMsg, aParam.mFlags);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2012-11-19 22:05:56 -08:00
|
|
|
uint8_t eventStructType = 0;
|
|
|
|
bool ret = ReadParam(aMsg, aIter, &eventStructType) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->message) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->refPoint) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->time) &&
|
2012-12-15 17:26:03 -08:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mFlags);
|
2012-11-19 22:05:56 -08:00
|
|
|
aResult->eventStructType = static_cast<nsEventStructType>(eventStructType);
|
|
|
|
return ret;
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2013-10-01 20:46:03 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetGUIEvent>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
typedef mozilla::WidgetGUIEvent paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 20:46:04 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetEvent>(aParam));
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2013-10-01 20:46:04 -07:00
|
|
|
return ReadParam(aMsg, aIter, static_cast<mozilla::WidgetEvent*>(aResult));
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2013-10-01 00:23:02 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetInputEvent>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
typedef mozilla::WidgetInputEvent paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetGUIEvent>(aParam));
|
2012-04-24 20:00:02 -07:00
|
|
|
WriteParam(aMsg, aParam.modifiers);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
return ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetGUIEvent*>(aResult)) &&
|
2012-04-24 20:00:02 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->modifiers);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-05-16 17:23:23 -07:00
|
|
|
template<>
|
2013-10-01 00:23:02 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetMouseEventBase>
|
2011-05-16 17:23:23 -07:00
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
typedef mozilla::WidgetMouseEventBase paramType;
|
2011-05-16 17:23:23 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetInputEvent>(aParam));
|
2011-05-16 17:23:23 -07:00
|
|
|
WriteParam(aMsg, aParam.button);
|
2012-04-24 20:00:01 -07:00
|
|
|
WriteParam(aMsg, aParam.buttons);
|
2011-05-16 17:23:23 -07:00
|
|
|
WriteParam(aMsg, aParam.pressure);
|
|
|
|
WriteParam(aMsg, aParam.inputSource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
return ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetInputEvent*>(aResult)) &&
|
2011-05-16 17:23:23 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->button) &&
|
2012-04-24 20:00:01 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->buttons) &&
|
2011-05-16 17:23:23 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->pressure) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->inputSource);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-08-11 18:42:34 -07:00
|
|
|
template<>
|
2013-10-16 02:37:36 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetWheelEvent>
|
2012-08-11 18:42:34 -07:00
|
|
|
{
|
2013-10-16 02:37:36 -07:00
|
|
|
typedef mozilla::WidgetWheelEvent paramType;
|
2012-08-11 18:42:34 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetMouseEventBase>(aParam));
|
2012-08-11 18:42:34 -07:00
|
|
|
WriteParam(aMsg, aParam.deltaX);
|
|
|
|
WriteParam(aMsg, aParam.deltaY);
|
|
|
|
WriteParam(aMsg, aParam.deltaZ);
|
|
|
|
WriteParam(aMsg, aParam.deltaMode);
|
2012-08-11 18:42:35 -07:00
|
|
|
WriteParam(aMsg, aParam.customizedByUserPrefs);
|
2012-08-11 18:42:36 -07:00
|
|
|
WriteParam(aMsg, aParam.isMomentum);
|
2012-08-11 18:42:36 -07:00
|
|
|
WriteParam(aMsg, aParam.isPixelOnlyDevice);
|
2012-08-11 18:42:35 -07:00
|
|
|
WriteParam(aMsg, aParam.lineOrPageDeltaX);
|
|
|
|
WriteParam(aMsg, aParam.lineOrPageDeltaY);
|
2012-08-22 08:56:38 -07:00
|
|
|
WriteParam(aMsg, static_cast<int32_t>(aParam.scrollType));
|
2012-08-11 18:42:35 -07:00
|
|
|
WriteParam(aMsg, aParam.overflowDeltaX);
|
|
|
|
WriteParam(aMsg, aParam.overflowDeltaY);
|
2012-08-11 18:42:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t scrollType = 0;
|
2012-08-11 18:42:36 -07:00
|
|
|
bool rv =
|
2013-10-01 00:23:02 -07:00
|
|
|
ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetMouseEventBase*>(aResult)) &&
|
2012-08-11 18:42:36 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->deltaX) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->deltaY) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->deltaZ) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->deltaMode) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->customizedByUserPrefs) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->isMomentum) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->isPixelOnlyDevice) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->lineOrPageDeltaX) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->lineOrPageDeltaY) &&
|
|
|
|
ReadParam(aMsg, aIter, &scrollType) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->overflowDeltaX) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->overflowDeltaY);
|
|
|
|
aResult->scrollType =
|
2013-10-16 02:37:36 -07:00
|
|
|
static_cast<mozilla::WidgetWheelEvent::ScrollType>(scrollType);
|
2012-08-11 18:42:36 -07:00
|
|
|
return rv;
|
2012-08-11 18:42:34 -07:00
|
|
|
}
|
|
|
|
};
|
2011-06-21 17:32:43 -07:00
|
|
|
|
|
|
|
template<>
|
2013-10-01 23:38:27 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetMouseEvent>
|
2011-06-21 17:32:43 -07:00
|
|
|
{
|
2013-10-01 23:38:27 -07:00
|
|
|
typedef mozilla::WidgetMouseEvent paramType;
|
2011-06-21 17:32:43 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetMouseEventBase>(aParam));
|
2011-06-21 17:32:43 -07:00
|
|
|
WriteParam(aMsg, aParam.ignoreRootScrollFrame);
|
2012-08-22 08:56:38 -07:00
|
|
|
WriteParam(aMsg, (uint8_t) aParam.reason);
|
|
|
|
WriteParam(aMsg, (uint8_t) aParam.context);
|
|
|
|
WriteParam(aMsg, (uint8_t) aParam.exit);
|
2011-06-21 17:32:43 -07:00
|
|
|
WriteParam(aMsg, aParam.clickCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
|
|
|
bool rv;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t reason = 0, context = 0, exit = 0;
|
2013-10-01 00:23:02 -07:00
|
|
|
rv = ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetMouseEventBase*>(aResult)) &&
|
2011-06-21 17:32:43 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->ignoreRootScrollFrame) &&
|
|
|
|
ReadParam(aMsg, aIter, &reason) &&
|
|
|
|
ReadParam(aMsg, aIter, &context) &&
|
|
|
|
ReadParam(aMsg, aIter, &exit) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->clickCount);
|
2013-10-01 23:38:27 -07:00
|
|
|
aResult->reason =
|
|
|
|
static_cast<mozilla::WidgetMouseEvent::reasonType>(reason);
|
|
|
|
aResult->context =
|
|
|
|
static_cast<mozilla::WidgetMouseEvent::contextType>(context);
|
|
|
|
aResult->exit = static_cast<mozilla::WidgetMouseEvent::exitType>(exit);
|
2011-06-21 17:32:43 -07:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-11-20 21:44:22 -08:00
|
|
|
template<>
|
|
|
|
struct ParamTraits<mozilla::WidgetPointerEvent>
|
|
|
|
{
|
|
|
|
typedef mozilla::WidgetPointerEvent paramType;
|
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetMouseEvent>(aParam));
|
|
|
|
WriteParam(aMsg, aParam.pointerId);
|
|
|
|
WriteParam(aMsg, aParam.width);
|
|
|
|
WriteParam(aMsg, aParam.height);
|
|
|
|
WriteParam(aMsg, aParam.tiltX);
|
|
|
|
WriteParam(aMsg, aParam.tiltY);
|
|
|
|
WriteParam(aMsg, aParam.isPrimary);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
|
|
|
bool rv =
|
|
|
|
ReadParam(aMsg, aIter, static_cast<mozilla::WidgetMouseEvent*>(aResult)) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->pointerId) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->width) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->height) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->tiltX) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->tiltY) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->isPrimary);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-07-15 19:58:43 -07:00
|
|
|
template<>
|
2013-09-26 23:20:57 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetTouchEvent>
|
2012-07-15 19:58:43 -07:00
|
|
|
{
|
2013-09-26 23:20:57 -07:00
|
|
|
typedef mozilla::WidgetTouchEvent paramType;
|
2012-07-15 19:58:43 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
WriteParam(aMsg, static_cast<const mozilla::WidgetInputEvent&>(aParam));
|
2013-04-05 01:49:00 -07:00
|
|
|
// Sigh, Touch bites us again! We want to be able to do
|
2012-07-15 19:58:43 -07:00
|
|
|
// WriteParam(aMsg, aParam.touches);
|
2013-07-10 02:53:09 -07:00
|
|
|
const nsTArray< nsRefPtr<mozilla::dom::Touch> >& touches = aParam.touches;
|
2012-07-15 19:58:43 -07:00
|
|
|
WriteParam(aMsg, touches.Length());
|
|
|
|
for (uint32_t i = 0; i < touches.Length(); ++i) {
|
2013-07-10 02:53:09 -07:00
|
|
|
mozilla::dom::Touch* touch = touches[i];
|
2012-07-15 19:58:43 -07:00
|
|
|
WriteParam(aMsg, touch->mIdentifier);
|
|
|
|
WriteParam(aMsg, touch->mRefPoint);
|
|
|
|
WriteParam(aMsg, touch->mRadius);
|
|
|
|
WriteParam(aMsg, touch->mRotationAngle);
|
|
|
|
WriteParam(aMsg, touch->mForce);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
|
|
|
uint32_t numTouches;
|
2013-10-01 00:23:02 -07:00
|
|
|
if (!ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetInputEvent*>(aResult)) ||
|
2012-07-15 19:58:43 -07:00
|
|
|
!ReadParam(aMsg, aIter, &numTouches)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (uint32_t i = 0; i < numTouches; ++i) {
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t identifier;
|
2013-08-02 00:05:16 -07:00
|
|
|
mozilla::LayoutDeviceIntPoint refPoint;
|
2012-07-15 19:58:43 -07:00
|
|
|
nsIntPoint radius;
|
|
|
|
float rotationAngle;
|
|
|
|
float force;
|
|
|
|
if (!ReadParam(aMsg, aIter, &identifier) ||
|
|
|
|
!ReadParam(aMsg, aIter, &refPoint) ||
|
|
|
|
!ReadParam(aMsg, aIter, &radius) ||
|
|
|
|
!ReadParam(aMsg, aIter, &rotationAngle) ||
|
|
|
|
!ReadParam(aMsg, aIter, &force)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aResult->touches.AppendElement(
|
2013-08-02 00:05:16 -07:00
|
|
|
new mozilla::dom::Touch(
|
|
|
|
identifier, mozilla::LayoutDeviceIntPoint::ToUntyped(refPoint),
|
|
|
|
radius, rotationAngle, force));
|
2012-07-15 19:58:43 -07:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-06-21 17:32:43 -07:00
|
|
|
template<>
|
2013-10-01 00:22:58 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetKeyboardEvent>
|
2011-06-21 17:32:43 -07:00
|
|
|
{
|
2013-10-01 00:22:58 -07:00
|
|
|
typedef mozilla::WidgetKeyboardEvent paramType;
|
2011-06-21 17:32:43 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetInputEvent>(aParam));
|
2013-04-23 20:49:46 -07:00
|
|
|
WriteParam(aMsg, static_cast<uint32_t>(aParam.mKeyNameIndex));
|
2013-12-10 08:14:53 -08:00
|
|
|
WriteParam(aMsg, aParam.mKeyValue);
|
2011-06-21 17:32:43 -07:00
|
|
|
WriteParam(aMsg, aParam.keyCode);
|
|
|
|
WriteParam(aMsg, aParam.charCode);
|
|
|
|
WriteParam(aMsg, aParam.isChar);
|
2013-11-07 03:17:32 -08:00
|
|
|
WriteParam(aMsg, aParam.mIsRepeat);
|
2012-05-03 01:35:01 -07:00
|
|
|
WriteParam(aMsg, aParam.location);
|
2013-09-06 06:11:15 -07:00
|
|
|
WriteParam(aMsg, aParam.mUniqueId);
|
2013-07-09 20:42:59 -07:00
|
|
|
// An OS-specific native event might be attached in |mNativeKeyEvent|, but
|
|
|
|
// that cannot be copied across process boundaries.
|
2011-06-21 17:32:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2013-04-29 11:21:11 -07:00
|
|
|
uint32_t keyNameIndex = 0;
|
2013-10-01 00:23:02 -07:00
|
|
|
if (ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetInputEvent*>(aResult)) &&
|
2013-04-26 00:41:27 -07:00
|
|
|
ReadParam(aMsg, aIter, &keyNameIndex) &&
|
2013-12-10 08:14:53 -08:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mKeyValue) &&
|
2013-04-26 00:41:27 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->keyCode) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->charCode) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->isChar) &&
|
2013-11-07 03:17:32 -08:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mIsRepeat) &&
|
2013-09-06 06:11:15 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->location) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mUniqueId))
|
2013-08-19 11:33:27 -07:00
|
|
|
{
|
2013-09-13 19:39:41 -07:00
|
|
|
aResult->mKeyNameIndex = static_cast<mozilla::KeyNameIndex>(keyNameIndex);
|
2013-10-28 07:05:51 -07:00
|
|
|
aResult->mNativeKeyEvent = nullptr;
|
2013-04-26 00:41:27 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2011-06-21 17:32:43 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-08-17 01:07:42 -07:00
|
|
|
template<>
|
2013-10-01 00:22:59 -07:00
|
|
|
struct ParamTraits<mozilla::TextRangeStyle>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 00:22:59 -07:00
|
|
|
typedef mozilla::TextRangeStyle paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
|
|
|
WriteParam(aMsg, aParam.mDefinedStyles);
|
|
|
|
WriteParam(aMsg, aParam.mLineStyle);
|
|
|
|
WriteParam(aMsg, aParam.mIsBoldLine);
|
|
|
|
WriteParam(aMsg, aParam.mForegroundColor);
|
|
|
|
WriteParam(aMsg, aParam.mBackgroundColor);
|
|
|
|
WriteParam(aMsg, aParam.mUnderlineColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
|
|
|
return ReadParam(aMsg, aIter, &aResult->mDefinedStyles) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mLineStyle) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mIsBoldLine) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mForegroundColor) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mBackgroundColor) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mUnderlineColor);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2013-10-01 00:22:59 -07:00
|
|
|
struct ParamTraits<mozilla::TextRange>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 00:22:59 -07:00
|
|
|
typedef mozilla::TextRange paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
|
|
|
WriteParam(aMsg, aParam.mStartOffset);
|
|
|
|
WriteParam(aMsg, aParam.mEndOffset);
|
|
|
|
WriteParam(aMsg, aParam.mRangeType);
|
|
|
|
WriteParam(aMsg, aParam.mRangeStyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
|
|
|
return ReadParam(aMsg, aIter, &aResult->mStartOffset) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mEndOffset) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mRangeType) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mRangeStyle);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-04 05:48:26 -08:00
|
|
|
template<>
|
|
|
|
struct ParamTraits<mozilla::TextRangeArray>
|
|
|
|
{
|
|
|
|
typedef mozilla::TextRangeArray paramType;
|
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
|
|
|
WriteParam(aMsg, aParam.Length());
|
|
|
|
for (uint32_t index = 0; index < aParam.Length(); index++) {
|
|
|
|
WriteParam(aMsg, aParam[index]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
|
|
|
uint32_t length;
|
|
|
|
if (!ReadParam(aMsg, aIter, &length)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (uint32_t index = 0; index < length; index++) {
|
|
|
|
mozilla::TextRange textRange;
|
|
|
|
if (!ReadParam(aMsg, aIter, &textRange)) {
|
|
|
|
aResult->Clear();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
aResult->AppendElement(textRange);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-08-17 01:07:42 -07:00
|
|
|
template<>
|
2013-10-01 00:22:59 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetTextEvent>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 00:22:59 -07:00
|
|
|
typedef mozilla::WidgetTextEvent paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetGUIEvent>(aParam));
|
2014-01-15 06:41:39 -08:00
|
|
|
WriteParam(aMsg, aParam.mSeqno);
|
2010-08-17 01:07:42 -07:00
|
|
|
WriteParam(aMsg, aParam.theText);
|
|
|
|
WriteParam(aMsg, aParam.isChar);
|
2014-03-04 05:48:26 -08:00
|
|
|
bool hasRanges = !!aParam.mRanges;
|
|
|
|
WriteParam(aMsg, hasRanges);
|
|
|
|
if (hasRanges) {
|
|
|
|
WriteParam(aMsg, *aParam.mRanges.get());
|
|
|
|
}
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2014-03-04 05:48:26 -08:00
|
|
|
bool hasRanges;
|
2013-10-01 20:46:03 -07:00
|
|
|
if (!ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetGUIEvent*>(aResult)) ||
|
2014-01-15 06:41:39 -08:00
|
|
|
!ReadParam(aMsg, aIter, &aResult->mSeqno) ||
|
2010-08-17 01:07:42 -07:00
|
|
|
!ReadParam(aMsg, aIter, &aResult->theText) ||
|
|
|
|
!ReadParam(aMsg, aIter, &aResult->isChar) ||
|
2014-03-04 05:48:26 -08:00
|
|
|
!ReadParam(aMsg, aIter, &hasRanges)) {
|
2010-08-17 01:07:42 -07:00
|
|
|
return false;
|
2014-03-04 05:48:26 -08:00
|
|
|
}
|
2010-08-17 01:07:42 -07:00
|
|
|
|
2014-03-04 05:48:26 -08:00
|
|
|
if (!hasRanges) {
|
|
|
|
aResult->mRanges = nullptr;
|
|
|
|
} else {
|
|
|
|
aResult->mRanges = new mozilla::TextRangeArray();
|
|
|
|
if (!aResult->mRanges) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!ReadParam(aMsg, aIter, aResult->mRanges.get())) {
|
2010-08-17 01:07:42 -07:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-04 05:48:26 -08:00
|
|
|
}
|
2010-08-17 01:07:42 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2013-10-01 00:23:00 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetCompositionEvent>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 00:23:00 -07:00
|
|
|
typedef mozilla::WidgetCompositionEvent paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetGUIEvent>(aParam));
|
2014-01-15 06:41:39 -08:00
|
|
|
WriteParam(aMsg, aParam.mSeqno);
|
2011-09-22 02:17:40 -07:00
|
|
|
WriteParam(aMsg, aParam.data);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
return ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetGUIEvent*>(aResult)) &&
|
2014-01-15 06:41:39 -08:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mSeqno) &&
|
2011-09-22 02:17:40 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->data);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2013-10-01 00:23:00 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetQueryContentEvent>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 00:23:00 -07:00
|
|
|
typedef mozilla::WidgetQueryContentEvent paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetGUIEvent>(aParam));
|
2010-08-17 01:07:42 -07:00
|
|
|
WriteParam(aMsg, aParam.mSucceeded);
|
2014-04-25 16:52:12 -07:00
|
|
|
WriteParam(aMsg, aParam.mUseNativeLineBreak);
|
2010-08-17 01:07:42 -07:00
|
|
|
WriteParam(aMsg, aParam.mInput.mOffset);
|
|
|
|
WriteParam(aMsg, aParam.mInput.mLength);
|
|
|
|
WriteParam(aMsg, aParam.mReply.mOffset);
|
|
|
|
WriteParam(aMsg, aParam.mReply.mString);
|
|
|
|
WriteParam(aMsg, aParam.mReply.mRect);
|
|
|
|
WriteParam(aMsg, aParam.mReply.mReversed);
|
|
|
|
WriteParam(aMsg, aParam.mReply.mHasSelection);
|
2011-03-01 13:15:23 -08:00
|
|
|
WriteParam(aMsg, aParam.mReply.mWidgetIsHit);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
aResult->mWasAsync = true;
|
2013-10-01 20:46:03 -07:00
|
|
|
return ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetGUIEvent*>(aResult)) &&
|
2010-08-17 01:07:42 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mSucceeded) &&
|
2014-04-25 16:52:12 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mUseNativeLineBreak) &&
|
2010-08-17 01:07:42 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mInput.mOffset) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mInput.mLength) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mReply.mOffset) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mReply.mString) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mReply.mRect) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mReply.mReversed) &&
|
2011-03-22 11:18:17 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mReply.mHasSelection) &&
|
2012-08-11 18:42:37 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mReply.mWidgetIsHit);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
2013-10-01 00:23:01 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetSelectionEvent>
|
2010-08-17 01:07:42 -07:00
|
|
|
{
|
2013-10-01 00:23:01 -07:00
|
|
|
typedef mozilla::WidgetSelectionEvent paramType;
|
2010-08-17 01:07:42 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetGUIEvent>(aParam));
|
2014-01-15 06:41:39 -08:00
|
|
|
WriteParam(aMsg, aParam.mSeqno);
|
2010-08-17 01:07:42 -07:00
|
|
|
WriteParam(aMsg, aParam.mOffset);
|
|
|
|
WriteParam(aMsg, aParam.mLength);
|
|
|
|
WriteParam(aMsg, aParam.mReversed);
|
|
|
|
WriteParam(aMsg, aParam.mExpandToClusterBoundary);
|
|
|
|
WriteParam(aMsg, aParam.mSucceeded);
|
2014-04-25 16:52:12 -07:00
|
|
|
WriteParam(aMsg, aParam.mUseNativeLineBreak);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
return ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetGUIEvent*>(aResult)) &&
|
2014-01-15 06:41:39 -08:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mSeqno) &&
|
2010-08-17 01:07:42 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mOffset) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mLength) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mReversed) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mExpandToClusterBoundary) &&
|
2014-04-25 16:52:12 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->mSucceeded) &&
|
|
|
|
ReadParam(aMsg, aIter, &aResult->mUseNativeLineBreak);
|
2010-08-17 01:07:42 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-09-23 20:28:15 -07:00
|
|
|
template<>
|
|
|
|
struct ParamTraits<nsIMEUpdatePreference>
|
|
|
|
{
|
|
|
|
typedef nsIMEUpdatePreference paramType;
|
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
|
|
|
WriteParam(aMsg, aParam.mWantUpdates);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2014-01-29 01:32:35 -08:00
|
|
|
return ReadParam(aMsg, aIter, &aResult->mWantUpdates);
|
2010-09-23 20:28:15 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-05-10 21:52:44 -07:00
|
|
|
template<>
|
2013-09-26 23:20:54 -07:00
|
|
|
struct ParamTraits<mozilla::WidgetPluginEvent>
|
2011-05-10 21:52:44 -07:00
|
|
|
{
|
2013-09-26 23:20:54 -07:00
|
|
|
typedef mozilla::WidgetPluginEvent paramType;
|
2011-05-10 21:52:44 -07:00
|
|
|
|
|
|
|
static void Write(Message* aMsg, const paramType& aParam)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
WriteParam(aMsg, static_cast<mozilla::WidgetGUIEvent>(aParam));
|
2011-05-10 21:52:44 -07:00
|
|
|
WriteParam(aMsg, aParam.retargetToFocusedDocument);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool Read(const Message* aMsg, void** aIter, paramType* aResult)
|
|
|
|
{
|
2013-10-01 20:46:03 -07:00
|
|
|
return ReadParam(aMsg, aIter,
|
|
|
|
static_cast<mozilla::WidgetGUIEvent*>(aResult)) &&
|
2011-05-10 21:52:44 -07:00
|
|
|
ReadParam(aMsg, aIter, &aResult->retargetToFocusedDocument);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-08-17 01:07:42 -07:00
|
|
|
} // namespace IPC
|
|
|
|
|
|
|
|
#endif // nsGUIEventIPC_h__
|
|
|
|
|