2013-06-05 05:02:51 -07:00
|
|
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
|
|
|
|
/* 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/. */
|
2014-02-27 02:51:13 -08:00
|
|
|
#ifndef mozilla_dom_FocusEvent_h_
|
|
|
|
#define mozilla_dom_FocusEvent_h_
|
2013-06-05 05:02:51 -07:00
|
|
|
|
|
|
|
#include "mozilla/dom/FocusEventBinding.h"
|
2014-02-28 06:58:43 -08:00
|
|
|
#include "mozilla/dom/UIEvent.h"
|
|
|
|
#include "mozilla/EventForwards.h"
|
|
|
|
#include "nsIDOMFocusEvent.h"
|
2013-06-05 05:02:51 -07:00
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-28 06:58:43 -08:00
|
|
|
class FocusEvent : public UIEvent,
|
2014-02-27 02:51:13 -08:00
|
|
|
public nsIDOMFocusEvent
|
2013-06-05 05:02:51 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-07-14 12:21:34 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2013-06-05 05:02:51 -07:00
|
|
|
NS_DECL_NSIDOMFOCUSEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-02-28 06:58:43 -08:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2013-06-05 05:02:51 -07:00
|
|
|
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-06-05 05:02:51 -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 FocusEventBinding::Wrap(aCx, this);
|
2013-06-05 05:02:51 -07:00
|
|
|
}
|
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
FocusEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
InternalFocusEvent* aEvent);
|
2013-06-05 05:02:51 -07:00
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
EventTarget* GetRelatedTarget();
|
2013-06-05 05:02:51 -07:00
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
static already_AddRefed<FocusEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const FocusEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2013-06-05 05:02:51 -07:00
|
|
|
protected:
|
2014-07-08 14:23:17 -07:00
|
|
|
~FocusEvent() {}
|
|
|
|
|
2013-06-05 05:02:51 -07:00
|
|
|
nsresult InitFocusEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsIDOMWindow* aView,
|
|
|
|
int32_t aDetail,
|
2014-02-27 02:51:13 -08:00
|
|
|
EventTarget* aRelatedTarget);
|
2013-06-05 05:02:51 -07:00
|
|
|
};
|
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_FocusEvent_h_
|