2009-09-11 23:13:56 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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-11 23:13:56 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
#ifndef mozilla_dom_ScrollAreaEvent_h_
|
|
|
|
#define mozilla_dom_ScrollAreaEvent_h_
|
2009-09-11 23:13:56 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
#include "mozilla/dom/DOMRect.h"
|
|
|
|
#include "mozilla/dom/ScrollAreaEventBinding.h"
|
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-09-25 11:21:20 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
2009-09-11 23:13:56 +00:00
|
|
|
#include "nsIDOMScrollAreaEvent.h"
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-09-20 10:21:03 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
class ScrollAreaEvent : public UIEvent,
|
2014-02-28 14:58:43 +00:00
|
|
|
public nsIDOMScrollAreaEvent
|
|
|
|
{
|
2009-09-11 23:13:56 +00:00
|
|
|
public:
|
2014-02-28 14:58:43 +00:00
|
|
|
ScrollAreaEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
InternalScrollAreaEvent* aEvent);
|
2009-09-11 23:13:56 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMSCROLLAREAEVENT
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
NS_FORWARD_NSIDOMUIEVENT(UIEvent::)
|
2012-06-10 23:44:50 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION
|
2012-06-10 23:44:50 +00:00
|
|
|
NS_IMETHOD DuplicatePrivateData()
|
|
|
|
{
|
2014-03-05 00:37:43 +00:00
|
|
|
return Event::DuplicatePrivateData();
|
2012-06-10 23:44:50 +00:00
|
|
|
}
|
2013-05-29 20:43:41 +00:00
|
|
|
NS_IMETHOD_(void) Serialize(IPC::Message* aMsg, bool aSerializeInterfaceType) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(bool) Deserialize(const IPC::Message* aMsg, void** aIter) MOZ_OVERRIDE;
|
2010-01-27 20:55:57 +00:00
|
|
|
|
2014-04-08 22:27:18 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-03-28 14:21:20 +00: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 22:27:17 +00:00
|
|
|
return ScrollAreaEventBinding::Wrap(aCx, this);
|
2013-03-28 14:21:20 +00:00
|
|
|
}
|
|
|
|
|
2013-03-17 07:55:17 +00:00
|
|
|
float X() const
|
|
|
|
{
|
|
|
|
return mClientArea.Left();
|
|
|
|
}
|
|
|
|
|
|
|
|
float Y() const
|
|
|
|
{
|
|
|
|
return mClientArea.Top();
|
|
|
|
}
|
|
|
|
|
|
|
|
float Width() const
|
|
|
|
{
|
|
|
|
return mClientArea.Width();
|
|
|
|
}
|
|
|
|
|
|
|
|
float Height() const
|
|
|
|
{
|
|
|
|
return mClientArea.Height();
|
|
|
|
}
|
|
|
|
|
2013-03-28 14:21:20 +00:00
|
|
|
void InitScrollAreaEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsIDOMWindow* aView,
|
|
|
|
int32_t aDetail,
|
|
|
|
float aX, float aY,
|
|
|
|
float aWidth, float aHeight,
|
2014-02-28 14:58:43 +00:00
|
|
|
ErrorResult& aRv)
|
2013-03-28 14:21:20 +00:00
|
|
|
{
|
|
|
|
aRv = InitScrollAreaEvent(aType, aCanBubble, aCancelable, aView,
|
|
|
|
aDetail, aX, aY, aWidth, aHeight);
|
|
|
|
}
|
|
|
|
|
2009-09-11 23:13:56 +00:00
|
|
|
protected:
|
2013-09-20 10:21:03 +00:00
|
|
|
DOMRect mClientArea;
|
2009-09-11 23:13:56 +00:00
|
|
|
};
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_ScrollAreaEvent_h_
|