2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2009-09-12 03:13:56 +04:00
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
#ifndef mozilla_dom_ScrollAreaEvent_h_
|
|
|
|
#define mozilla_dom_ScrollAreaEvent_h_
|
2009-09-12 03:13:56 +04:00
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
#include "mozilla/dom/DOMRect.h"
|
|
|
|
#include "mozilla/dom/ScrollAreaEventBinding.h"
|
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-09-25 15:21:20 +04:00
|
|
|
#include "mozilla/EventForwards.h"
|
2009-09-12 03:13:56 +04:00
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-09-20 14:21:03 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
class ScrollAreaEvent : public UIEvent
|
2014-02-28 18:58:43 +04:00
|
|
|
{
|
2009-09-12 03:13:56 +04:00
|
|
|
public:
|
2014-02-28 18:58:43 +04:00
|
|
|
ScrollAreaEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
InternalScrollAreaEvent* aEvent);
|
2009-09-12 03:13:56 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2017-01-27 09:57:38 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(ScrollAreaEvent, UIEvent)
|
2014-02-28 18:58:43 +04:00
|
|
|
NS_FORWARD_NSIDOMUIEVENT(UIEvent::)
|
2012-06-11 03:44:50 +04:00
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD DuplicatePrivateData() 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
|
|
|
}
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD_(void) Serialize(IPC::Message* aMsg, bool aSerializeInterfaceType) override;
|
2016-04-21 07:09:15 +03:00
|
|
|
NS_IMETHOD_(bool) Deserialize(const IPC::Message* aMsg, PickleIterator* aIter) override;
|
2010-01-27 23:55:57 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-03-28 18:21:20 +04:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
return ScrollAreaEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-28 18:21:20 +04:00
|
|
|
}
|
|
|
|
|
2013-03-17 11:55:17 +04:00
|
|
|
float X() const
|
|
|
|
{
|
2014-09-02 19:47:00 +04:00
|
|
|
return mClientArea->Left();
|
2013-03-17 11:55:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
float Y() const
|
|
|
|
{
|
2014-09-02 19:47:00 +04:00
|
|
|
return mClientArea->Top();
|
2013-03-17 11:55:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
float Width() const
|
|
|
|
{
|
2014-09-02 19:47:00 +04:00
|
|
|
return mClientArea->Width();
|
2013-03-17 11:55:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
float Height() const
|
|
|
|
{
|
2014-09-02 19:47:00 +04:00
|
|
|
return mClientArea->Height();
|
2013-03-17 11:55:17 +04:00
|
|
|
}
|
|
|
|
|
2013-03-28 18:21:20 +04:00
|
|
|
void InitScrollAreaEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
2016-01-30 20:05:36 +03:00
|
|
|
nsGlobalWindow* aView,
|
2013-03-28 18:21:20 +04:00
|
|
|
int32_t aDetail,
|
|
|
|
float aX, float aY,
|
2016-01-30 20:05:36 +03:00
|
|
|
float aWidth, float aHeight);
|
2013-03-28 18:21:20 +04:00
|
|
|
|
2009-09-12 03:13:56 +04:00
|
|
|
protected:
|
2014-07-09 01:23:17 +04:00
|
|
|
~ScrollAreaEvent() {}
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<DOMRect> mClientArea;
|
2009-09-12 03:13:56 +04:00
|
|
|
};
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::ScrollAreaEvent>
|
|
|
|
NS_NewDOMScrollAreaEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::InternalScrollAreaEvent* aEvent);
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
#endif // mozilla_dom_ScrollAreaEvent_h_
|