2008-09-18 02:47:21 -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/. */
|
2008-09-18 02:47:21 -07:00
|
|
|
|
2014-02-28 06:58:43 -08:00
|
|
|
#ifndef mozilla_dom_NotifyPaintEvent_h_
|
|
|
|
#define mozilla_dom_NotifyPaintEvent_h_
|
2008-09-18 02:47:21 -07:00
|
|
|
|
2013-05-29 13:43:41 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-03-04 16:37:43 -08:00
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "mozilla/dom/NotifyPaintEventBinding.h"
|
2008-09-18 02:47:21 -07:00
|
|
|
#include "nsIDOMNotifyPaintEvent.h"
|
2009-09-03 21:49:18 -07:00
|
|
|
#include "nsPresContext.h"
|
|
|
|
|
2013-09-20 03:21:03 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-02-28 06:58:43 -08:00
|
|
|
|
2013-09-20 03:21:03 -07:00
|
|
|
class DOMRect;
|
|
|
|
class DOMRectList;
|
2014-04-02 21:18:37 -07:00
|
|
|
class PaintRequestList;
|
2008-09-18 02:47:21 -07:00
|
|
|
|
2014-03-04 16:37:43 -08:00
|
|
|
class NotifyPaintEvent : public Event,
|
2014-02-28 06:58:43 -08:00
|
|
|
public nsIDOMNotifyPaintEvent
|
2008-09-18 02:47:21 -07:00
|
|
|
{
|
2013-09-20 03:21:03 -07:00
|
|
|
|
2008-09-18 02:47:21 -07:00
|
|
|
public:
|
2014-02-28 06:58:43 -08:00
|
|
|
NotifyPaintEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetEvent* aEvent,
|
|
|
|
uint32_t aEventType,
|
|
|
|
nsInvalidateRequestList* aInvalidateRequests);
|
2008-09-18 02:47:21 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMNOTIFYPAINTEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-03-04 16:37:43 -08:00
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION
|
2013-05-29 13:43:41 -07:00
|
|
|
NS_IMETHOD DuplicatePrivateData() MOZ_OVERRIDE
|
2012-06-10 16:44:50 -07:00
|
|
|
{
|
2014-03-04 16:37:43 -08:00
|
|
|
return Event::DuplicatePrivateData();
|
2012-06-10 16:44:50 -07:00
|
|
|
}
|
2013-05-29 13:43:41 -07: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 00:16:55 -08:00
|
|
|
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-04-15 13:27:37 -07:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return NotifyPaintEventBinding::Wrap(aCx, this);
|
2013-04-15 13:27:37 -07:00
|
|
|
}
|
2012-12-22 00:16:55 -08:00
|
|
|
|
2013-09-20 03:21:03 -07:00
|
|
|
already_AddRefed<DOMRectList> ClientRects();
|
2013-04-15 13:27:37 -07:00
|
|
|
|
2013-09-20 03:21:03 -07:00
|
|
|
already_AddRefed<DOMRect> BoundingClientRect();
|
2013-04-15 13:27:37 -07:00
|
|
|
|
2014-04-02 21:18:37 -07:00
|
|
|
already_AddRefed<PaintRequestList> PaintRequests();
|
2008-09-18 02:47:21 -07:00
|
|
|
private:
|
|
|
|
nsRegion GetRegion();
|
2009-06-23 02:09:05 -07:00
|
|
|
|
2009-09-03 21:49:18 -07:00
|
|
|
nsTArray<nsInvalidateRequestList::Request> mInvalidateRequests;
|
2008-09-18 02:47:21 -07:00
|
|
|
};
|
|
|
|
|
2014-02-28 06:58:43 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_NotifyPaintEvent_h_
|