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