2007-03-22 10:30:00 -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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
#ifndef mozilla_dom_KeyboardEvent_h_
|
|
|
|
#define mozilla_dom_KeyboardEvent_h_
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-28 06:58:43 -08:00
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-05-11 22:08:37 -07:00
|
|
|
#include "mozilla/dom/KeyboardEventBinding.h"
|
2014-02-28 06:58:43 -08:00
|
|
|
#include "mozilla/EventForwards.h"
|
|
|
|
#include "nsIDOMKeyEvent.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-28 06:58:43 -08:00
|
|
|
class KeyboardEvent : public UIEvent,
|
2014-02-27 02:51:13 -08:00
|
|
|
public nsIDOMKeyEvent
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-02-27 02:51:13 -08:00
|
|
|
KeyboardEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetKeyboardEvent* aEvent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMKeyEvent Interface
|
|
|
|
NS_DECL_NSIDOMKEYEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-02-28 06:58:43 -08:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-04-20 16:48:55 -07:00
|
|
|
{
|
2014-02-27 02:51:13 -08:00
|
|
|
return KeyboardEventBinding::Wrap(aCx, aScope, this);
|
2013-04-20 16:48:55 -07:00
|
|
|
}
|
|
|
|
|
2013-10-17 23:10:26 -07:00
|
|
|
bool AltKey();
|
|
|
|
bool CtrlKey();
|
|
|
|
bool ShiftKey();
|
|
|
|
bool MetaKey();
|
2013-04-20 16:48:55 -07:00
|
|
|
|
|
|
|
bool GetModifierState(const nsAString& aKey)
|
|
|
|
{
|
|
|
|
return GetModifierStateInternal(aKey);
|
|
|
|
}
|
|
|
|
|
2013-11-07 03:17:32 -08:00
|
|
|
bool Repeat();
|
2013-04-20 16:48:55 -07:00
|
|
|
uint32_t CharCode();
|
|
|
|
uint32_t KeyCode();
|
|
|
|
virtual uint32_t Which() MOZ_OVERRIDE;
|
2013-10-17 23:10:24 -07:00
|
|
|
uint32_t Location();
|
2013-04-20 16:48:55 -07:00
|
|
|
|
|
|
|
void InitKeyEvent(const nsAString& aType, bool aCanBubble, bool aCancelable,
|
|
|
|
nsIDOMWindow* aView, bool aCtrlKey, bool aAltKey,
|
|
|
|
bool aShiftKey, bool aMetaKey,
|
|
|
|
uint32_t aKeyCode, uint32_t aCharCode,
|
2014-02-27 02:51:13 -08:00
|
|
|
ErrorResult& aRv)
|
2013-04-20 16:48:55 -07:00
|
|
|
{
|
|
|
|
aRv = InitKeyEvent(aType, aCanBubble, aCancelable, aView,
|
|
|
|
aCtrlKey, aAltKey, aShiftKey,aMetaKey,
|
|
|
|
aKeyCode, aCharCode);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
#endif // mozilla_dom_KeyboardEvent_h_
|