/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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/. */ #include "base/basictypes.h" #include "ipc/IPCMessageUtils.h" #include "mozilla/GfxMessageUtils.h" #include "nsDOMNotifyPaintEvent.h" #include "nsContentUtils.h" #include "nsPaintRequest.h" #include "mozilla/dom/DOMRect.h" using namespace mozilla; using namespace mozilla::dom; nsDOMNotifyPaintEvent::nsDOMNotifyPaintEvent(mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext, WidgetEvent* aEvent, uint32_t aEventType, nsInvalidateRequestList* aInvalidateRequests) : nsDOMEvent(aOwner, aPresContext, aEvent) { if (mEvent) { mEvent->message = aEventType; } if (aInvalidateRequests) { mInvalidateRequests.MoveElementsFrom(aInvalidateRequests->mRequests); } } NS_INTERFACE_MAP_BEGIN(nsDOMNotifyPaintEvent) NS_INTERFACE_MAP_ENTRY(nsIDOMNotifyPaintEvent) NS_INTERFACE_MAP_END_INHERITING(nsDOMEvent) NS_IMPL_ADDREF_INHERITED(nsDOMNotifyPaintEvent, nsDOMEvent) NS_IMPL_RELEASE_INHERITED(nsDOMNotifyPaintEvent, nsDOMEvent) nsRegion nsDOMNotifyPaintEvent::GetRegion() { nsRegion r; if (!nsContentUtils::IsCallerChrome()) { return r; } for (uint32_t i = 0; i < mInvalidateRequests.Length(); ++i) { r.Or(r, mInvalidateRequests[i].mRect); r.SimplifyOutward(10); } return r; } NS_IMETHODIMP nsDOMNotifyPaintEvent::GetBoundingClientRect(nsIDOMClientRect** aResult) { *aResult = BoundingClientRect().get(); return NS_OK; } already_AddRefed nsDOMNotifyPaintEvent::BoundingClientRect() { nsRefPtr rect = new DOMRect(ToSupports(this)); if (mPresContext) { rect->SetLayoutRect(GetRegion().GetBounds()); } return rect.forget(); } NS_IMETHODIMP nsDOMNotifyPaintEvent::GetClientRects(nsIDOMClientRectList** aResult) { *aResult = ClientRects().get(); return NS_OK; } already_AddRefed nsDOMNotifyPaintEvent::ClientRects() { nsISupports* parent = ToSupports(this); nsRefPtr rectList = new DOMRectList(parent); nsRegion r = GetRegion(); nsRegionRectIterator iter(r); for (const nsRect* rgnRect = iter.Next(); rgnRect; rgnRect = iter.Next()) { nsRefPtr rect = new DOMRect(parent); rect->SetLayoutRect(*rgnRect); rectList->Append(rect); } return rectList.forget(); } NS_IMETHODIMP nsDOMNotifyPaintEvent::GetPaintRequests(nsISupports** aResult) { nsRefPtr requests = PaintRequests(); requests.forget(aResult); return NS_OK; } already_AddRefed nsDOMNotifyPaintEvent::PaintRequests() { nsDOMEvent* parent = this; nsRefPtr requests = new nsPaintRequestList(parent); if (nsContentUtils::IsCallerChrome()) { for (uint32_t i = 0; i < mInvalidateRequests.Length(); ++i) { nsRefPtr r = new nsPaintRequest(parent); r->SetRequest(mInvalidateRequests[i]); requests->Append(r); } } return requests.forget(); } NS_IMETHODIMP_(void) nsDOMNotifyPaintEvent::Serialize(IPC::Message* aMsg, bool aSerializeInterfaceType) { if (aSerializeInterfaceType) { IPC::WriteParam(aMsg, NS_LITERAL_STRING("notifypaintevent")); } nsDOMEvent::Serialize(aMsg, false); uint32_t length = mInvalidateRequests.Length(); IPC::WriteParam(aMsg, length); for (uint32_t i = 0; i < length; ++i) { IPC::WriteParam(aMsg, mInvalidateRequests[i].mRect); IPC::WriteParam(aMsg, mInvalidateRequests[i].mFlags); } } NS_IMETHODIMP_(bool) nsDOMNotifyPaintEvent::Deserialize(const IPC::Message* aMsg, void** aIter) { NS_ENSURE_TRUE(nsDOMEvent::Deserialize(aMsg, aIter), false); uint32_t length = 0; NS_ENSURE_TRUE(IPC::ReadParam(aMsg, aIter, &length), false); mInvalidateRequests.SetCapacity(length); for (uint32_t i = 0; i < length; ++i) { nsInvalidateRequestList::Request req; NS_ENSURE_TRUE(IPC::ReadParam(aMsg, aIter, &req.mRect), false); NS_ENSURE_TRUE(IPC::ReadParam(aMsg, aIter, &req.mFlags), false); mInvalidateRequests.AppendElement(req); } return true; } nsresult NS_NewDOMNotifyPaintEvent(nsIDOMEvent** aInstancePtrResult, mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext, WidgetEvent* aEvent, uint32_t aEventType, nsInvalidateRequestList* aInvalidateRequests) { nsDOMNotifyPaintEvent* it = new nsDOMNotifyPaintEvent(aOwner, aPresContext, aEvent, aEventType, aInvalidateRequests); return CallQueryInterface(it, aInstancePtrResult); }