2008-09-18 13:47:21 +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/. */
|
2008-09-18 13:47:21 +04:00
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
#ifndef mozilla_dom_NotifyPaintEvent_h_
|
|
|
|
#define mozilla_dom_NotifyPaintEvent_h_
|
2008-09-18 13:47:21 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-03-05 04:37:43 +04:00
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "mozilla/dom/NotifyPaintEventBinding.h"
|
2008-09-18 13:47:21 +04:00
|
|
|
#include "nsIDOMNotifyPaintEvent.h"
|
2009-09-04 08:49:18 +04:00
|
|
|
#include "nsPresContext.h"
|
|
|
|
|
|
|
|
class nsPaintRequestList;
|
2013-09-20 14:21:03 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-02-28 18:58:43 +04:00
|
|
|
|
2013-09-20 14:21:03 +04:00
|
|
|
class DOMRect;
|
|
|
|
class DOMRectList;
|
2008-09-18 13:47:21 +04:00
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
class NotifyPaintEvent : public Event,
|
2014-02-28 18:58:43 +04:00
|
|
|
public nsIDOMNotifyPaintEvent
|
2008-09-18 13:47:21 +04:00
|
|
|
{
|
2013-09-20 14:21:03 +04:00
|
|
|
|
2008-09-18 13:47:21 +04:00
|
|
|
public:
|
2014-02-28 18:58:43 +04:00
|
|
|
NotifyPaintEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetEvent* aEvent,
|
|
|
|
uint32_t aEventType,
|
|
|
|
nsInvalidateRequestList* aInvalidateRequests);
|
2008-09-18 13:47:21 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMNOTIFYPAINTEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION
|
2013-05-30 00:43:41 +04:00
|
|
|
NS_IMETHOD DuplicatePrivateData() MOZ_OVERRIDE
|
2012-06-11 03:44:50 +04:00
|
|
|
{
|
2014-03-05 04:37:43 +04:00
|
|
|
return Event::DuplicatePrivateData();
|
2012-06-11 03:44:50 +04:00
|
|
|
}
|
2013-05-30 00:43:41 +04:00
|
|
|
NS_IMETHOD_(void) Serialize(IPC::Message* aMsg, bool aSerializeInterfaceType) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(bool) Deserialize(const IPC::Message* aMsg, void** aIter) MOZ_OVERRIDE;
|
2012-12-22 12:16:55 +04:00
|
|
|
|
2013-04-25 20:29:54 +04:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-04-16 00:27:37 +04:00
|
|
|
{
|
2014-02-28 18:58:43 +04:00
|
|
|
return NotifyPaintEventBinding::Wrap(aCx, aScope, this);
|
2013-04-16 00:27:37 +04:00
|
|
|
}
|
2012-12-22 12:16:55 +04:00
|
|
|
|
2013-09-20 14:21:03 +04:00
|
|
|
already_AddRefed<DOMRectList> ClientRects();
|
2013-04-16 00:27:37 +04:00
|
|
|
|
2013-09-20 14:21:03 +04:00
|
|
|
already_AddRefed<DOMRect> BoundingClientRect();
|
2013-04-16 00:27:37 +04:00
|
|
|
|
|
|
|
already_AddRefed<nsPaintRequestList> PaintRequests();
|
2008-09-18 13:47:21 +04:00
|
|
|
private:
|
|
|
|
nsRegion GetRegion();
|
2009-06-23 13:09:05 +04:00
|
|
|
|
2009-09-04 08:49:18 +04:00
|
|
|
nsTArray<nsInvalidateRequestList::Request> mInvalidateRequests;
|
2008-09-18 13:47:21 +04:00
|
|
|
};
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_NotifyPaintEvent_h_
|