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/. */
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2014-02-27 14:51:13 +04:00
|
|
|
#ifndef mozilla_dom_KeyboardEvent_h_
|
|
|
|
#define mozilla_dom_KeyboardEvent_h_
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-05-12 09:08:37 +04:00
|
|
|
#include "mozilla/dom/KeyboardEventBinding.h"
|
2014-02-28 18:58:43 +04:00
|
|
|
#include "mozilla/EventForwards.h"
|
|
|
|
#include "nsIDOMKeyEvent.h"
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2014-02-27 14:51:13 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
class KeyboardEvent : public UIEvent,
|
2014-02-27 14:51:13 +04:00
|
|
|
public nsIDOMKeyEvent
|
2004-08-20 22:09:19 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-02-27 14:51:13 +04:00
|
|
|
KeyboardEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetKeyboardEvent* aEvent);
|
2004-08-20 22:09:19 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMKeyEvent Interface
|
|
|
|
NS_DECL_NSIDOMKEYEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-02-28 18:58:43 +04:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2014-04-14 10:37:47 +04:00
|
|
|
static already_AddRefed<KeyboardEvent> Constructor(
|
|
|
|
const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const KeyboardEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-04-21 03:48:55 +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 KeyboardEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-04-21 03:48:55 +04:00
|
|
|
}
|
|
|
|
|
2013-10-18 10:10:26 +04:00
|
|
|
bool AltKey();
|
|
|
|
bool CtrlKey();
|
|
|
|
bool ShiftKey();
|
|
|
|
bool MetaKey();
|
2013-04-21 03:48:55 +04:00
|
|
|
|
|
|
|
bool GetModifierState(const nsAString& aKey)
|
|
|
|
{
|
|
|
|
return GetModifierStateInternal(aKey);
|
|
|
|
}
|
|
|
|
|
2013-11-07 15:17:32 +04:00
|
|
|
bool Repeat();
|
2014-04-10 11:11:36 +04:00
|
|
|
bool IsComposing();
|
2013-04-21 03:48:55 +04:00
|
|
|
uint32_t CharCode();
|
|
|
|
uint32_t KeyCode();
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual uint32_t Which() override;
|
2013-10-18 10:10:24 +04:00
|
|
|
uint32_t Location();
|
2013-04-21 03:48:55 +04:00
|
|
|
|
2014-05-25 06:08:58 +04:00
|
|
|
void GetCode(nsAString& aCode);
|
2016-03-15 08:46:29 +03:00
|
|
|
void GetInitDict(KeyboardEventInit& aParam);
|
2014-05-25 06:08:58 +04:00
|
|
|
|
2013-04-21 03:48:55 +04:00
|
|
|
void InitKeyEvent(const nsAString& aType, bool aCanBubble, bool aCancelable,
|
2016-01-30 20:05:36 +03:00
|
|
|
nsGlobalWindow* aView, bool aCtrlKey, bool aAltKey,
|
2013-04-21 03:48:55 +04:00
|
|
|
bool aShiftKey, bool aMetaKey,
|
2016-01-30 20:05:36 +03:00
|
|
|
uint32_t aKeyCode, uint32_t aCharCode)
|
2013-04-21 03:48:55 +04:00
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
auto* view = aView ? aView->AsInner() : nullptr;
|
|
|
|
InitKeyEvent(aType, aCanBubble, aCancelable, view, aCtrlKey, aAltKey,
|
|
|
|
aShiftKey, aMetaKey, aKeyCode, aCharCode);
|
2013-04-21 03:48:55 +04:00
|
|
|
}
|
2014-04-14 10:37:47 +04:00
|
|
|
|
2014-07-09 01:23:17 +04:00
|
|
|
protected:
|
|
|
|
~KeyboardEvent() {}
|
|
|
|
|
2014-11-03 10:05:32 +03:00
|
|
|
void InitWithKeyboardEventInit(EventTarget* aOwner,
|
|
|
|
const nsAString& aType,
|
|
|
|
const KeyboardEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2014-04-14 10:37:47 +04:00
|
|
|
private:
|
|
|
|
// True, if the instance is created with Constructor().
|
|
|
|
bool mInitializedByCtor;
|
2014-11-03 10:05:32 +03:00
|
|
|
|
2014-04-14 10:37:47 +04:00
|
|
|
// If the instance is created with Constructor(), which may have independent
|
|
|
|
// value. mInitializedWhichValue stores it. I.e., this is invalid when
|
|
|
|
// mInitializedByCtor is false.
|
2014-11-03 10:05:32 +03:00
|
|
|
uint32_t mInitializedWhichValue;
|
2004-08-20 22:09:19 +04:00
|
|
|
};
|
|
|
|
|
2014-02-27 14:51:13 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::KeyboardEvent>
|
|
|
|
NS_NewDOMKeyboardEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetKeyboardEvent* aEvent);
|
|
|
|
|
2014-02-27 14:51:13 +04:00
|
|
|
#endif // mozilla_dom_KeyboardEvent_h_
|