2001-09-28 20:14:13 +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/. */
|
2001-07-15 22:57:29 +00:00
|
|
|
|
|
|
|
#ifndef nsEvent_h__
|
|
|
|
#define nsEvent_h__
|
|
|
|
|
2012-08-08 21:08:17 +00:00
|
|
|
#include "mozilla/StandardInteger.h"
|
|
|
|
|
2001-07-15 22:57:29 +00:00
|
|
|
/*
|
|
|
|
* This is in a separate header file because it needs to be included
|
|
|
|
* in many places where including nsGUIEvent.h would bring in many
|
2004-11-10 07:27:11 +00:00
|
|
|
* header files that are totally unnecessary.
|
2001-07-15 22:57:29 +00:00
|
|
|
*/
|
|
|
|
|
2010-07-08 16:01:28 +00:00
|
|
|
enum UIStateChangeType {
|
|
|
|
UIStateChangeType_NoChange,
|
|
|
|
UIStateChangeType_Set,
|
|
|
|
UIStateChangeType_Clear
|
|
|
|
};
|
|
|
|
|
2001-07-15 22:57:29 +00:00
|
|
|
/**
|
|
|
|
* Return status for event processors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum nsEventStatus {
|
|
|
|
/// The event is ignored, do default processing
|
|
|
|
nsEventStatus_eIgnore,
|
|
|
|
/// The event is consumed, don't do default processing
|
|
|
|
nsEventStatus_eConsumeNoDefault,
|
|
|
|
/// The event is consumed, but do default processing
|
|
|
|
nsEventStatus_eConsumeDoDefault
|
|
|
|
};
|
|
|
|
|
2009-04-01 21:59:02 +00:00
|
|
|
/**
|
|
|
|
* sizemode is an adjunct to widget size
|
|
|
|
*/
|
|
|
|
enum nsSizeMode {
|
|
|
|
nsSizeMode_Normal = 0,
|
|
|
|
nsSizeMode_Minimized,
|
2009-07-08 16:13:13 +00:00
|
|
|
nsSizeMode_Maximized,
|
|
|
|
nsSizeMode_Fullscreen
|
2009-04-01 21:59:02 +00:00
|
|
|
};
|
|
|
|
|
2011-07-21 00:33:16 +00:00
|
|
|
struct nsAlternativeCharCode;
|
|
|
|
struct nsTextRangeStyle;
|
|
|
|
struct nsTextRange;
|
2001-07-15 22:57:29 +00:00
|
|
|
|
2011-07-21 00:33:16 +00:00
|
|
|
class nsEvent;
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsGUIEvent;
|
2011-07-21 00:33:16 +00:00
|
|
|
class nsScriptErrorEvent;
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsScrollbarEvent;
|
|
|
|
class nsScrollPortEvent;
|
2011-07-21 00:33:16 +00:00
|
|
|
class nsScrollAreaEvent;
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsInputEvent;
|
2011-07-21 00:33:16 +00:00
|
|
|
class nsMouseEvent_base;
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsMouseEvent;
|
2009-04-01 21:59:02 +00:00
|
|
|
class nsDragEvent;
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsKeyEvent;
|
|
|
|
class nsTextEvent;
|
|
|
|
class nsCompositionEvent;
|
|
|
|
class nsMouseScrollEvent;
|
2011-07-21 00:33:16 +00:00
|
|
|
class nsGestureNotifyEvent;
|
|
|
|
class nsQueryContentEvent;
|
|
|
|
class nsFocusEvent;
|
|
|
|
class nsSelectionEvent;
|
2009-08-07 15:11:17 +00:00
|
|
|
class nsContentCommandEvent;
|
2011-12-17 00:24:11 +00:00
|
|
|
class nsTouchEvent;
|
2011-07-21 00:33:16 +00:00
|
|
|
class nsFormEvent;
|
|
|
|
class nsCommandEvent;
|
|
|
|
class nsUIEvent;
|
|
|
|
class nsSimpleGestureEvent;
|
|
|
|
class nsTransitionEvent;
|
|
|
|
class nsAnimationEvent;
|
|
|
|
class nsPluginEvent;
|
2001-07-15 22:57:29 +00:00
|
|
|
|
2012-04-25 03:00:01 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
2012-12-16 01:26:03 +00:00
|
|
|
struct EventFlags;
|
|
|
|
|
2012-08-12 01:42:34 +00:00
|
|
|
class WheelEvent;
|
|
|
|
|
2012-04-25 03:00:01 +00:00
|
|
|
// All modifier keys should be defined here. This is used for managing
|
|
|
|
// modifier states for DOM Level 3 or later.
|
|
|
|
enum Modifier {
|
|
|
|
MODIFIER_ALT = 0x0001,
|
|
|
|
MODIFIER_ALTGRAPH = 0x0002,
|
|
|
|
MODIFIER_CAPSLOCK = 0x0004,
|
|
|
|
MODIFIER_CONTROL = 0x0008,
|
|
|
|
MODIFIER_FN = 0x0010,
|
|
|
|
MODIFIER_META = 0x0020,
|
|
|
|
MODIFIER_NUMLOCK = 0x0040,
|
2012-07-06 00:42:05 +00:00
|
|
|
MODIFIER_SCROLLLOCK = 0x0080,
|
2012-04-25 03:00:01 +00:00
|
|
|
MODIFIER_SHIFT = 0x0100,
|
|
|
|
MODIFIER_SYMBOLLOCK = 0x0200,
|
2012-07-06 00:42:05 +00:00
|
|
|
MODIFIER_OS = 0x0400
|
2012-04-25 03:00:01 +00:00
|
|
|
};
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
typedef uint16_t Modifiers;
|
2012-04-25 03:00:01 +00:00
|
|
|
|
2012-09-26 05:47:51 +00:00
|
|
|
// NotificationToIME is shared by nsIMEStateManager and TextComposition.
|
|
|
|
enum NotificationToIME {
|
2013-02-25 04:00:06 +00:00
|
|
|
// XXX We should replace NOTIFY_IME_OF_CURSOR_POS_CHANGED with
|
|
|
|
// NOTIFY_IME_OF_SELECTION_CHANGE later.
|
2012-09-26 05:47:51 +00:00
|
|
|
NOTIFY_IME_OF_CURSOR_POS_CHANGED,
|
2013-02-25 04:00:06 +00:00
|
|
|
// An editable content is getting focus
|
|
|
|
NOTIFY_IME_OF_FOCUS,
|
|
|
|
// An editable content is losing focus
|
|
|
|
NOTIFY_IME_OF_BLUR,
|
|
|
|
// Selection in the focused editable content is changed
|
|
|
|
NOTIFY_IME_OF_SELECTION_CHANGE,
|
2012-09-26 05:47:51 +00:00
|
|
|
REQUEST_TO_COMMIT_COMPOSITION,
|
|
|
|
REQUEST_TO_CANCEL_COMPOSITION
|
|
|
|
};
|
|
|
|
|
2012-04-25 03:00:01 +00:00
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#define NS_DOM_KEYNAME_ALT "Alt"
|
|
|
|
#define NS_DOM_KEYNAME_ALTGRAPH "AltGraph"
|
|
|
|
#define NS_DOM_KEYNAME_CAPSLOCK "CapsLock"
|
|
|
|
#define NS_DOM_KEYNAME_CONTROL "Control"
|
|
|
|
#define NS_DOM_KEYNAME_FN "Fn"
|
|
|
|
#define NS_DOM_KEYNAME_META "Meta"
|
|
|
|
#define NS_DOM_KEYNAME_NUMLOCK "NumLock"
|
2012-07-06 00:42:05 +00:00
|
|
|
#define NS_DOM_KEYNAME_SCROLLLOCK "ScrollLock"
|
2012-04-25 03:00:01 +00:00
|
|
|
#define NS_DOM_KEYNAME_SHIFT "Shift"
|
|
|
|
#define NS_DOM_KEYNAME_SYMBOLLOCK "SymbolLock"
|
2012-07-06 00:42:05 +00:00
|
|
|
#define NS_DOM_KEYNAME_OS "OS"
|
2012-04-25 03:00:01 +00:00
|
|
|
|
2001-07-15 22:57:29 +00:00
|
|
|
#endif // nsEvent_h__
|