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/. */
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
#ifndef nsGUIEvent_h__
|
|
|
|
#define nsGUIEvent_h__
|
|
|
|
|
2011-12-17 00:24:11 +00:00
|
|
|
#include "nsCOMArray.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsPoint.h"
|
|
|
|
#include "nsRect.h"
|
2008-09-18 09:47:21 +00:00
|
|
|
#include "nsRegion.h"
|
2001-07-16 02:40:48 +00:00
|
|
|
#include "nsEvent.h"
|
2006-10-05 10:44:03 +00:00
|
|
|
#include "nsStringGlue.h"
|
2006-03-07 17:08:51 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2006-10-06 05:24:02 +00:00
|
|
|
#include "nsIAtom.h"
|
2000-08-17 21:43:26 +00:00
|
|
|
#include "nsIDOMKeyEvent.h"
|
2011-08-26 07:43:56 +00:00
|
|
|
#include "nsIDOMMouseEvent.h"
|
2012-08-12 01:42:34 +00:00
|
|
|
#include "nsIDOMWheelEvent.h"
|
2008-08-27 12:07:27 +00:00
|
|
|
#include "nsIDOMDataTransfer.h"
|
2011-06-24 02:18:00 +00:00
|
|
|
#include "nsIDOMEventTarget.h"
|
2011-12-17 00:24:11 +00:00
|
|
|
#include "nsIDOMTouchEvent.h"
|
2007-01-13 01:08:43 +00:00
|
|
|
#include "nsWeakPtr.h"
|
2008-02-07 04:04:58 +00:00
|
|
|
#include "nsIWidget.h"
|
2008-04-15 04:16:24 +00:00
|
|
|
#include "nsTArray.h"
|
2008-04-17 22:38:35 +00:00
|
|
|
#include "nsTraceRefcnt.h"
|
2009-03-18 02:04:01 +00:00
|
|
|
#include "nsITransferable.h"
|
2009-09-01 16:45:05 +00:00
|
|
|
#include "nsIVariant.h"
|
2011-03-31 12:26:49 +00:00
|
|
|
#include "nsStyleConsts.h"
|
2011-12-17 00:24:11 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2000-08-17 21:43:26 +00:00
|
|
|
|
2010-08-17 08:07:42 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class PBrowserParent;
|
|
|
|
class PBrowserChild;
|
|
|
|
}
|
2011-08-29 16:26:24 +00:00
|
|
|
namespace plugins {
|
|
|
|
class PPluginInstanceChild;
|
|
|
|
}
|
2010-08-17 08:07:42 +00:00
|
|
|
}
|
|
|
|
|
2010-05-12 06:47:35 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-05-29 01:18:45 +00:00
|
|
|
class Accessible;
|
2010-05-12 06:47:35 +00:00
|
|
|
#endif
|
2011-04-08 01:04:40 +00:00
|
|
|
class nsRenderingContext;
|
1998-10-07 19:49:36 +00:00
|
|
|
class nsIMenuItem;
|
2001-04-17 10:02:11 +00:00
|
|
|
class nsIContent;
|
2003-04-15 23:34:08 +00:00
|
|
|
class nsIURI;
|
2006-10-05 10:44:03 +00:00
|
|
|
class nsHashKey;
|
2006-05-22 20:37:32 +00:00
|
|
|
|
2002-03-27 06:24:55 +00:00
|
|
|
/**
|
|
|
|
* Event Struct Types
|
|
|
|
*/
|
2004-02-11 06:09:51 +00:00
|
|
|
#define NS_EVENT 1
|
|
|
|
#define NS_GUI_EVENT 2
|
|
|
|
#define NS_SIZE_EVENT 3
|
|
|
|
#define NS_SIZEMODE_EVENT 4
|
|
|
|
#define NS_ZLEVEL_EVENT 5
|
|
|
|
#define NS_PAINT_EVENT 6
|
|
|
|
#define NS_SCROLLBAR_EVENT 7
|
|
|
|
#define NS_INPUT_EVENT 8
|
|
|
|
#define NS_KEY_EVENT 9
|
|
|
|
#define NS_MOUSE_EVENT 10
|
|
|
|
#define NS_SCRIPT_ERROR_EVENT 12
|
|
|
|
#define NS_TEXT_EVENT 13
|
|
|
|
#define NS_COMPOSITION_EVENT 14
|
|
|
|
#define NS_MOUSE_SCROLL_EVENT 16
|
|
|
|
#define NS_SCROLLPORT_EVENT 18
|
2004-08-25 22:26:15 +00:00
|
|
|
#define NS_MUTATION_EVENT 19 // |nsMutationEvent| in content
|
2004-02-11 06:09:51 +00:00
|
|
|
#define NS_ACCESSIBLE_EVENT 20
|
|
|
|
#define NS_FORM_EVENT 21
|
2009-10-01 17:53:10 +00:00
|
|
|
#define NS_FOCUS_EVENT 22
|
2004-02-11 06:09:51 +00:00
|
|
|
#define NS_POPUP_EVENT 23
|
2006-12-01 11:09:53 +00:00
|
|
|
#define NS_COMMAND_EVENT 24
|
2009-09-11 23:13:56 +00:00
|
|
|
#define NS_SCROLLAREA_EVENT 25
|
2009-12-23 19:10:31 +00:00
|
|
|
#define NS_TRANSITION_EVENT 26
|
2011-04-12 06:18:44 +00:00
|
|
|
#define NS_ANIMATION_EVENT 27
|
2009-06-24 08:42:00 +00:00
|
|
|
|
2011-04-12 06:18:44 +00:00
|
|
|
#define NS_UI_EVENT 28
|
2005-08-25 21:31:09 +00:00
|
|
|
#define NS_SVG_EVENT 30
|
|
|
|
#define NS_SVGZOOM_EVENT 31
|
2010-07-31 07:02:52 +00:00
|
|
|
#define NS_SMIL_TIME_EVENT 32
|
2009-06-30 07:56:40 +00:00
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
#define NS_QUERY_CONTENT_EVENT 33
|
2010-06-22 18:12:12 +00:00
|
|
|
|
2008-08-27 12:07:27 +00:00
|
|
|
#define NS_DRAG_EVENT 35
|
2008-09-18 09:47:21 +00:00
|
|
|
#define NS_NOTIFYPAINT_EVENT 36
|
2008-10-23 20:15:20 +00:00
|
|
|
#define NS_SIMPLE_GESTURE_EVENT 37
|
2009-02-10 20:56:51 +00:00
|
|
|
#define NS_SELECTION_EVENT 38
|
2009-08-07 15:11:17 +00:00
|
|
|
#define NS_CONTENT_COMMAND_EVENT 39
|
2009-08-13 20:54:09 +00:00
|
|
|
#define NS_GESTURENOTIFY_EVENT 40
|
2010-04-21 14:53:42 +00:00
|
|
|
#define NS_UISTATECHANGE_EVENT 41
|
2010-08-02 13:34:54 +00:00
|
|
|
#define NS_MOZTOUCH_EVENT 42
|
2011-05-11 04:52:44 +00:00
|
|
|
#define NS_PLUGIN_EVENT 43
|
2011-12-17 00:24:11 +00:00
|
|
|
#define NS_TOUCH_EVENT 44
|
2012-08-12 01:42:34 +00:00
|
|
|
#define NS_WHEEL_EVENT 45
|
2002-03-27 06:24:55 +00:00
|
|
|
|
2005-06-22 01:53:58 +00:00
|
|
|
// These flags are sort of a mess. They're sort of shared between event
|
|
|
|
// listener flags and event flags, but only some of them. You've been
|
|
|
|
// warned!
|
2002-03-27 06:24:55 +00:00
|
|
|
#define NS_EVENT_FLAG_NONE 0x0000
|
2006-04-10 17:04:54 +00:00
|
|
|
#define NS_EVENT_FLAG_TRUSTED 0x0001
|
2002-03-27 06:24:55 +00:00
|
|
|
#define NS_EVENT_FLAG_BUBBLE 0x0002
|
|
|
|
#define NS_EVENT_FLAG_CAPTURE 0x0004
|
|
|
|
#define NS_EVENT_FLAG_STOP_DISPATCH 0x0008
|
|
|
|
#define NS_EVENT_FLAG_NO_DEFAULT 0x0010
|
|
|
|
#define NS_EVENT_FLAG_CANT_CANCEL 0x0020
|
|
|
|
#define NS_EVENT_FLAG_CANT_BUBBLE 0x0040
|
|
|
|
#define NS_PRIV_EVENT_FLAG_SCRIPT 0x0080
|
|
|
|
#define NS_EVENT_FLAG_NO_CONTENT_DISPATCH 0x0100
|
|
|
|
#define NS_EVENT_FLAG_SYSTEM_EVENT 0x0200
|
2008-06-04 20:09:48 +00:00
|
|
|
// Event has been dispatched at least once
|
|
|
|
#define NS_EVENT_DISPATCHED 0x0400
|
2005-06-22 01:53:58 +00:00
|
|
|
#define NS_EVENT_FLAG_DISPATCHING 0x0800
|
2009-02-12 10:44:38 +00:00
|
|
|
// When an event is synthesized for testing, this flag will be set.
|
2009-10-02 21:06:42 +00:00
|
|
|
// Note that this is currently used only with mouse events, because this
|
|
|
|
// flag is not needed on other events now. It could be added to other
|
|
|
|
// events.
|
|
|
|
#define NS_EVENT_FLAG_SYNTHETIC_TEST_EVENT 0x1000
|
2005-06-22 01:53:58 +00:00
|
|
|
|
2009-10-29 11:11:02 +00:00
|
|
|
// Use this flag if the event should be dispatched only to chrome.
|
|
|
|
#define NS_EVENT_FLAG_ONLY_CHROME_DISPATCH 0x2000
|
|
|
|
|
|
|
|
// A flag for drag&drop handling.
|
|
|
|
#define NS_EVENT_FLAG_NO_DEFAULT_CALLED_IN_CONTENT 0x4000
|
|
|
|
|
2005-06-22 01:53:58 +00:00
|
|
|
#define NS_PRIV_EVENT_UNTRUSTED_PERMITTED 0x8000
|
2002-03-27 06:24:55 +00:00
|
|
|
|
2010-12-15 21:20:57 +00:00
|
|
|
#define NS_EVENT_FLAG_EXCEPTION_THROWN 0x10000
|
|
|
|
|
2011-07-19 16:19:32 +00:00
|
|
|
#define NS_EVENT_FLAG_PREVENT_MULTIPLE_ACTIONS 0x20000
|
2010-12-27 20:42:10 +00:00
|
|
|
|
2011-06-19 09:23:12 +00:00
|
|
|
#define NS_EVENT_RETARGET_TO_NON_NATIVE_ANONYMOUS 0x40000
|
|
|
|
|
2011-11-04 17:17:19 +00:00
|
|
|
#define NS_EVENT_FLAG_STOP_DISPATCH_IMMEDIATELY 0x80000
|
|
|
|
|
2012-07-19 19:40:24 +00:00
|
|
|
#define NS_EVENT_FLAG_DONT_FORWARD_CROSS_PROCESS 0x100000
|
|
|
|
|
2006-04-10 17:04:54 +00:00
|
|
|
#define NS_EVENT_CAPTURE_MASK (~(NS_EVENT_FLAG_BUBBLE | NS_EVENT_FLAG_NO_CONTENT_DISPATCH))
|
|
|
|
#define NS_EVENT_BUBBLE_MASK (~(NS_EVENT_FLAG_CAPTURE | NS_EVENT_FLAG_NO_CONTENT_DISPATCH))
|
2002-03-27 06:24:55 +00:00
|
|
|
|
|
|
|
#define NS_EVENT_TYPE_NULL 0
|
|
|
|
|
2004-03-05 01:34:34 +00:00
|
|
|
/**
|
|
|
|
* GUI MESSAGES
|
|
|
|
*/
|
|
|
|
//@{
|
|
|
|
#define NS_EVENT_NULL 0
|
|
|
|
|
|
|
|
|
|
|
|
#define NS_WINDOW_START 100
|
|
|
|
|
|
|
|
// Widget may be destroyed
|
|
|
|
#define NS_XUL_CLOSE (NS_WINDOW_START + 1)
|
|
|
|
// Widget is being destroyed
|
|
|
|
#define NS_DESTROY (NS_WINDOW_START + 2)
|
|
|
|
// Widget was resized
|
|
|
|
#define NS_SIZE (NS_WINDOW_START + 3)
|
|
|
|
// Widget size mode was changed
|
|
|
|
#define NS_SIZEMODE (NS_WINDOW_START + 4)
|
|
|
|
// Widget got activated
|
|
|
|
#define NS_ACTIVATE (NS_WINDOW_START + 7)
|
|
|
|
// Widget got deactivated
|
|
|
|
#define NS_DEACTIVATE (NS_WINDOW_START + 8)
|
|
|
|
// top-level window z-level change request
|
|
|
|
#define NS_SETZLEVEL (NS_WINDOW_START + 9)
|
2010-07-15 21:08:08 +00:00
|
|
|
// Widget was repainted (dispatched when it's safe to move widgets, but
|
|
|
|
// only on some platforms (including GTK2 and Windows))
|
|
|
|
#define NS_DID_PAINT (NS_WINDOW_START + 28)
|
2009-11-13 23:03:46 +00:00
|
|
|
// Widget will need to be painted
|
|
|
|
#define NS_WILL_PAINT (NS_WINDOW_START + 29)
|
2004-03-05 01:34:34 +00:00
|
|
|
// Widget needs to be repainted
|
|
|
|
#define NS_PAINT (NS_WINDOW_START + 30)
|
|
|
|
// Key is pressed within a window
|
|
|
|
#define NS_KEY_PRESS (NS_WINDOW_START + 31)
|
|
|
|
// Key is released within a window
|
|
|
|
#define NS_KEY_UP (NS_WINDOW_START + 32)
|
|
|
|
// Key is pressed within a window
|
|
|
|
#define NS_KEY_DOWN (NS_WINDOW_START + 33)
|
|
|
|
// Window has been moved to a new location.
|
|
|
|
// The events point contains the x, y location in screen coordinates
|
|
|
|
#define NS_MOVE (NS_WINDOW_START + 34)
|
|
|
|
|
|
|
|
#define NS_OS_TOOLBAR (NS_WINDOW_START + 36)
|
|
|
|
|
2010-04-21 14:53:42 +00:00
|
|
|
// Indicates that the ui state such as whether to show focus or
|
|
|
|
// keyboard accelerator indicators has changed.
|
|
|
|
#define NS_UISTATECHANGED (NS_WINDOW_START + 43)
|
|
|
|
|
2011-03-25 23:17:35 +00:00
|
|
|
// Done sizing or moving a window, so ensure that the mousedown state was cleared.
|
|
|
|
#define NS_DONESIZEMOVE (NS_WINDOW_START + 44)
|
|
|
|
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_RESIZE_EVENT (NS_WINDOW_START + 60)
|
|
|
|
#define NS_SCROLL_EVENT (NS_WINDOW_START + 61)
|
|
|
|
|
2010-11-15 21:12:50 +00:00
|
|
|
// A plugin was clicked or otherwise focused. NS_PLUGIN_ACTIVATE should be
|
|
|
|
// used when the window is not active. NS_PLUGIN_FOCUS should be used when
|
|
|
|
// the window is active. In the latter case, the dispatcher of the event
|
|
|
|
// is expected to ensure that the plugin's widget is focused beforehand.
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_PLUGIN_ACTIVATE (NS_WINDOW_START + 62)
|
2010-11-15 21:12:50 +00:00
|
|
|
#define NS_PLUGIN_FOCUS (NS_WINDOW_START + 63)
|
2004-03-05 01:34:34 +00:00
|
|
|
|
2010-11-15 21:12:50 +00:00
|
|
|
#define NS_OFFLINE (NS_WINDOW_START + 64)
|
|
|
|
#define NS_ONLINE (NS_WINDOW_START + 65)
|
2007-06-07 03:28:04 +00:00
|
|
|
|
2010-11-17 13:46:00 +00:00
|
|
|
// Indicates a resize will occur
|
|
|
|
#define NS_BEFORERESIZE_EVENT (NS_WINDOW_START + 66)
|
|
|
|
|
2012-06-29 08:32:21 +00:00
|
|
|
// Indicates that the user is either idle or active
|
|
|
|
#define NS_MOZ_USER_IDLE (NS_WINDOW_START + 67)
|
|
|
|
#define NS_MOZ_USER_ACTIVE (NS_WINDOW_START + 68)
|
|
|
|
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_MOUSE_MESSAGE_START 300
|
|
|
|
#define NS_MOUSE_MOVE (NS_MOUSE_MESSAGE_START)
|
2006-11-16 21:35:39 +00:00
|
|
|
#define NS_MOUSE_BUTTON_UP (NS_MOUSE_MESSAGE_START + 1)
|
|
|
|
#define NS_MOUSE_BUTTON_DOWN (NS_MOUSE_MESSAGE_START + 2)
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_MOUSE_ENTER (NS_MOUSE_MESSAGE_START + 22)
|
|
|
|
#define NS_MOUSE_EXIT (NS_MOUSE_MESSAGE_START + 23)
|
2006-11-16 21:35:39 +00:00
|
|
|
#define NS_MOUSE_DOUBLECLICK (NS_MOUSE_MESSAGE_START + 24)
|
|
|
|
#define NS_MOUSE_CLICK (NS_MOUSE_MESSAGE_START + 27)
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_MOUSE_ACTIVATE (NS_MOUSE_MESSAGE_START + 30)
|
|
|
|
#define NS_MOUSE_ENTER_SYNTH (NS_MOUSE_MESSAGE_START + 31)
|
|
|
|
#define NS_MOUSE_EXIT_SYNTH (NS_MOUSE_MESSAGE_START + 32)
|
2010-06-28 06:04:05 +00:00
|
|
|
#define NS_MOUSE_MOZHITTEST (NS_MOUSE_MESSAGE_START + 33)
|
2011-09-18 07:45:14 +00:00
|
|
|
#define NS_MOUSEENTER (NS_MOUSE_MESSAGE_START + 34)
|
|
|
|
#define NS_MOUSELEAVE (NS_MOUSE_MESSAGE_START + 35)
|
2004-03-05 01:34:34 +00:00
|
|
|
|
|
|
|
#define NS_CONTEXTMENU_MESSAGE_START 500
|
|
|
|
#define NS_CONTEXTMENU (NS_CONTEXTMENU_MESSAGE_START)
|
|
|
|
|
|
|
|
#define NS_SCROLLBAR_MESSAGE_START 1000
|
|
|
|
#define NS_SCROLLBAR_POS (NS_SCROLLBAR_MESSAGE_START)
|
|
|
|
#define NS_SCROLLBAR_PAGE_NEXT (NS_SCROLLBAR_MESSAGE_START + 1)
|
|
|
|
#define NS_SCROLLBAR_PAGE_PREV (NS_SCROLLBAR_MESSAGE_START + 2)
|
|
|
|
#define NS_SCROLLBAR_LINE_NEXT (NS_SCROLLBAR_MESSAGE_START + 3)
|
|
|
|
#define NS_SCROLLBAR_LINE_PREV (NS_SCROLLBAR_MESSAGE_START + 4)
|
|
|
|
|
|
|
|
#define NS_STREAM_EVENT_START 1100
|
2006-08-31 19:33:01 +00:00
|
|
|
#define NS_LOAD (NS_STREAM_EVENT_START)
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_PAGE_UNLOAD (NS_STREAM_EVENT_START + 1)
|
2009-06-26 17:16:50 +00:00
|
|
|
#define NS_HASHCHANGE (NS_STREAM_EVENT_START + 2)
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_IMAGE_ABORT (NS_STREAM_EVENT_START + 3)
|
2006-09-02 10:00:26 +00:00
|
|
|
#define NS_LOAD_ERROR (NS_STREAM_EVENT_START + 4)
|
2009-09-01 16:45:05 +00:00
|
|
|
#define NS_POPSTATE (NS_STREAM_EVENT_START + 5)
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_BEFORE_PAGE_UNLOAD (NS_STREAM_EVENT_START + 6)
|
2005-05-04 20:22:32 +00:00
|
|
|
#define NS_PAGE_RESTORE (NS_STREAM_EVENT_START + 7)
|
2010-06-24 01:12:07 +00:00
|
|
|
#define NS_READYSTATECHANGE (NS_STREAM_EVENT_START + 8)
|
2004-03-05 01:34:34 +00:00
|
|
|
|
|
|
|
#define NS_FORM_EVENT_START 1200
|
|
|
|
#define NS_FORM_SUBMIT (NS_FORM_EVENT_START)
|
|
|
|
#define NS_FORM_RESET (NS_FORM_EVENT_START + 1)
|
|
|
|
#define NS_FORM_CHANGE (NS_FORM_EVENT_START + 2)
|
|
|
|
#define NS_FORM_SELECTED (NS_FORM_EVENT_START + 3)
|
|
|
|
#define NS_FORM_INPUT (NS_FORM_EVENT_START + 4)
|
2010-08-18 18:28:08 +00:00
|
|
|
#define NS_FORM_INVALID (NS_FORM_EVENT_START + 5)
|
2004-03-05 01:34:34 +00:00
|
|
|
|
|
|
|
//Need separate focus/blur notifications for non-native widgets
|
|
|
|
#define NS_FOCUS_EVENT_START 1300
|
|
|
|
#define NS_FOCUS_CONTENT (NS_FOCUS_EVENT_START)
|
|
|
|
#define NS_BLUR_CONTENT (NS_FOCUS_EVENT_START + 1)
|
|
|
|
|
|
|
|
#define NS_DRAGDROP_EVENT_START 1400
|
|
|
|
#define NS_DRAGDROP_ENTER (NS_DRAGDROP_EVENT_START)
|
|
|
|
#define NS_DRAGDROP_OVER (NS_DRAGDROP_EVENT_START + 1)
|
|
|
|
#define NS_DRAGDROP_EXIT (NS_DRAGDROP_EVENT_START + 2)
|
2008-08-27 12:07:27 +00:00
|
|
|
#define NS_DRAGDROP_DRAGDROP (NS_DRAGDROP_EVENT_START + 3)
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_DRAGDROP_GESTURE (NS_DRAGDROP_EVENT_START + 4)
|
2007-04-12 04:37:39 +00:00
|
|
|
#define NS_DRAGDROP_DRAG (NS_DRAGDROP_EVENT_START + 5)
|
|
|
|
#define NS_DRAGDROP_END (NS_DRAGDROP_EVENT_START + 6)
|
2008-08-27 12:07:27 +00:00
|
|
|
#define NS_DRAGDROP_START (NS_DRAGDROP_EVENT_START + 7)
|
|
|
|
#define NS_DRAGDROP_DROP (NS_DRAGDROP_EVENT_START + 8)
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_DRAGDROP_OVER_SYNTH (NS_DRAGDROP_EVENT_START + 1)
|
|
|
|
#define NS_DRAGDROP_EXIT_SYNTH (NS_DRAGDROP_EVENT_START + 2)
|
2008-08-27 12:07:27 +00:00
|
|
|
#define NS_DRAGDROP_LEAVE_SYNTH (NS_DRAGDROP_EVENT_START + 9)
|
2004-03-05 01:34:34 +00:00
|
|
|
|
|
|
|
// Events for popups
|
|
|
|
#define NS_XUL_EVENT_START 1500
|
|
|
|
#define NS_XUL_POPUP_SHOWING (NS_XUL_EVENT_START)
|
|
|
|
#define NS_XUL_POPUP_SHOWN (NS_XUL_EVENT_START+1)
|
|
|
|
#define NS_XUL_POPUP_HIDING (NS_XUL_EVENT_START+2)
|
|
|
|
#define NS_XUL_POPUP_HIDDEN (NS_XUL_EVENT_START+3)
|
2006-05-22 20:37:32 +00:00
|
|
|
// NS_XUL_COMMAND used to be here (NS_XUL_EVENT_START+4)
|
2004-03-05 01:34:34 +00:00
|
|
|
#define NS_XUL_BROADCAST (NS_XUL_EVENT_START+5)
|
|
|
|
#define NS_XUL_COMMAND_UPDATE (NS_XUL_EVENT_START+6)
|
|
|
|
//@}
|
|
|
|
|
|
|
|
// Scroll events
|
|
|
|
#define NS_MOUSE_SCROLL_START 1600
|
|
|
|
#define NS_MOUSE_SCROLL (NS_MOUSE_SCROLL_START)
|
2008-09-17 11:27:19 +00:00
|
|
|
#define NS_MOUSE_PIXEL_SCROLL (NS_MOUSE_SCROLL_START + 1)
|
2004-03-05 01:34:34 +00:00
|
|
|
|
|
|
|
#define NS_SCROLLPORT_START 1700
|
|
|
|
#define NS_SCROLLPORT_UNDERFLOW (NS_SCROLLPORT_START)
|
|
|
|
#define NS_SCROLLPORT_OVERFLOW (NS_SCROLLPORT_START+1)
|
|
|
|
#define NS_SCROLLPORT_OVERFLOWCHANGED (NS_SCROLLPORT_START+2)
|
|
|
|
|
|
|
|
// Mutation events defined elsewhere starting at 1800
|
|
|
|
|
|
|
|
// accessible events
|
|
|
|
#define NS_ACCESSIBLE_START 1900
|
|
|
|
#define NS_GETACCESSIBLE (NS_ACCESSIBLE_START)
|
|
|
|
|
|
|
|
#define NS_USER_DEFINED_EVENT 2000
|
|
|
|
|
|
|
|
// composition events
|
|
|
|
#define NS_COMPOSITION_EVENT_START 2200
|
|
|
|
#define NS_COMPOSITION_START (NS_COMPOSITION_EVENT_START)
|
|
|
|
#define NS_COMPOSITION_END (NS_COMPOSITION_EVENT_START + 1)
|
2011-09-22 09:17:40 +00:00
|
|
|
#define NS_COMPOSITION_UPDATE (NS_COMPOSITION_EVENT_START + 2)
|
2004-03-05 01:34:34 +00:00
|
|
|
|
|
|
|
// text events
|
|
|
|
#define NS_TEXT_START 2400
|
|
|
|
#define NS_TEXT_TEXT (NS_TEXT_START)
|
|
|
|
|
2004-08-20 18:09:19 +00:00
|
|
|
// UI events
|
|
|
|
#define NS_UI_EVENT_START 2500
|
2004-04-30 23:55:16 +00:00
|
|
|
// this is not to be confused with NS_ACTIVATE!
|
2004-08-20 18:09:19 +00:00
|
|
|
#define NS_UI_ACTIVATE (NS_UI_EVENT_START)
|
|
|
|
#define NS_UI_FOCUSIN (NS_UI_EVENT_START + 1)
|
|
|
|
#define NS_UI_FOCUSOUT (NS_UI_EVENT_START + 2)
|
2004-04-30 23:55:16 +00:00
|
|
|
|
2005-06-15 23:52:46 +00:00
|
|
|
// pagetransition events
|
|
|
|
#define NS_PAGETRANSITION_START 2700
|
|
|
|
#define NS_PAGE_SHOW (NS_PAGETRANSITION_START + 1)
|
|
|
|
#define NS_PAGE_HIDE (NS_PAGETRANSITION_START + 2)
|
|
|
|
|
2005-08-25 21:31:09 +00:00
|
|
|
// SVG events
|
|
|
|
#define NS_SVG_EVENT_START 2800
|
|
|
|
#define NS_SVG_LOAD (NS_SVG_EVENT_START)
|
|
|
|
#define NS_SVG_UNLOAD (NS_SVG_EVENT_START + 1)
|
|
|
|
#define NS_SVG_ABORT (NS_SVG_EVENT_START + 2)
|
|
|
|
#define NS_SVG_ERROR (NS_SVG_EVENT_START + 3)
|
|
|
|
#define NS_SVG_RESIZE (NS_SVG_EVENT_START + 4)
|
|
|
|
#define NS_SVG_SCROLL (NS_SVG_EVENT_START + 5)
|
|
|
|
|
|
|
|
// SVG Zoom events
|
|
|
|
#define NS_SVGZOOM_EVENT_START 2900
|
|
|
|
#define NS_SVG_ZOOM (NS_SVGZOOM_EVENT_START)
|
|
|
|
|
2006-05-22 20:37:32 +00:00
|
|
|
// XUL command events
|
|
|
|
#define NS_XULCOMMAND_EVENT_START 3000
|
|
|
|
#define NS_XUL_COMMAND (NS_XULCOMMAND_EVENT_START)
|
|
|
|
|
2007-07-26 04:14:33 +00:00
|
|
|
// Cut, copy, paste events
|
|
|
|
#define NS_CUTCOPYPASTE_EVENT_START 3100
|
|
|
|
#define NS_COPY (NS_CUTCOPYPASTE_EVENT_START)
|
|
|
|
#define NS_CUT (NS_CUTCOPYPASTE_EVENT_START + 1)
|
|
|
|
#define NS_PASTE (NS_CUTCOPYPASTE_EVENT_START + 2)
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
// Query the content information
|
|
|
|
#define NS_QUERY_CONTENT_EVENT_START 3200
|
|
|
|
// Query for the selected text information, it return the selection offset,
|
|
|
|
// selection length and selected text.
|
|
|
|
#define NS_QUERY_SELECTED_TEXT (NS_QUERY_CONTENT_EVENT_START)
|
|
|
|
// Query for the text content of specified range, it returns actual lengh (if
|
|
|
|
// the specified range is too long) and the text of the specified range.
|
2009-02-10 20:56:51 +00:00
|
|
|
// Returns the entire text if requested length > actual length.
|
2008-02-20 07:40:04 +00:00
|
|
|
#define NS_QUERY_TEXT_CONTENT (NS_QUERY_CONTENT_EVENT_START + 1)
|
|
|
|
// Query for the caret rect of nth insertion point. The offset of the result is
|
|
|
|
// relative position from the top level widget.
|
|
|
|
#define NS_QUERY_CARET_RECT (NS_QUERY_CONTENT_EVENT_START + 3)
|
2009-02-10 20:56:51 +00:00
|
|
|
// Query for the bounding rect of a range of characters. This works on any
|
|
|
|
// valid character range given offset and length. Result is relative to top
|
|
|
|
// level widget coordinates
|
|
|
|
#define NS_QUERY_TEXT_RECT (NS_QUERY_CONTENT_EVENT_START + 4)
|
|
|
|
// Query for the bounding rect of the current focused frame. Result is relative
|
|
|
|
// to top level widget coordinates
|
2009-05-15 00:46:24 +00:00
|
|
|
#define NS_QUERY_EDITOR_RECT (NS_QUERY_CONTENT_EVENT_START + 5)
|
2009-03-18 02:04:01 +00:00
|
|
|
// Query for the current state of the content. The particular members of
|
|
|
|
// mReply that are set for each query content event will be valid on success.
|
2009-05-15 00:46:24 +00:00
|
|
|
#define NS_QUERY_CONTENT_STATE (NS_QUERY_CONTENT_EVENT_START + 6)
|
2009-03-18 02:04:01 +00:00
|
|
|
// Query for the selection in the form of a nsITransferable.
|
|
|
|
#define NS_QUERY_SELECTION_AS_TRANSFERABLE (NS_QUERY_CONTENT_EVENT_START + 7)
|
2009-05-15 00:46:24 +00:00
|
|
|
// Query for character at a point. This returns the character offset and its
|
|
|
|
// rect. The point is specified by nsEvent::refPoint.
|
|
|
|
#define NS_QUERY_CHARACTER_AT_POINT (NS_QUERY_CONTENT_EVENT_START + 8)
|
2011-03-01 21:15:23 +00:00
|
|
|
// Query if the DOM element under nsEvent::refPoint belongs to our widget
|
|
|
|
// or not.
|
|
|
|
#define NS_QUERY_DOM_WIDGET_HITTEST (NS_QUERY_CONTENT_EVENT_START + 9)
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2008-07-09 08:22:20 +00:00
|
|
|
// Video events
|
|
|
|
#define NS_MEDIA_EVENT_START 3300
|
|
|
|
#define NS_LOADSTART (NS_MEDIA_EVENT_START)
|
|
|
|
#define NS_PROGRESS (NS_MEDIA_EVENT_START+1)
|
2009-02-26 11:55:30 +00:00
|
|
|
#define NS_SUSPEND (NS_MEDIA_EVENT_START+2)
|
|
|
|
#define NS_EMPTIED (NS_MEDIA_EVENT_START+3)
|
|
|
|
#define NS_STALLED (NS_MEDIA_EVENT_START+4)
|
|
|
|
#define NS_PLAY (NS_MEDIA_EVENT_START+5)
|
|
|
|
#define NS_PAUSE (NS_MEDIA_EVENT_START+6)
|
|
|
|
#define NS_LOADEDMETADATA (NS_MEDIA_EVENT_START+7)
|
|
|
|
#define NS_LOADEDDATA (NS_MEDIA_EVENT_START+8)
|
|
|
|
#define NS_WAITING (NS_MEDIA_EVENT_START+9)
|
|
|
|
#define NS_PLAYING (NS_MEDIA_EVENT_START+10)
|
|
|
|
#define NS_CANPLAY (NS_MEDIA_EVENT_START+11)
|
|
|
|
#define NS_CANPLAYTHROUGH (NS_MEDIA_EVENT_START+12)
|
|
|
|
#define NS_SEEKING (NS_MEDIA_EVENT_START+13)
|
|
|
|
#define NS_SEEKED (NS_MEDIA_EVENT_START+14)
|
|
|
|
#define NS_TIMEUPDATE (NS_MEDIA_EVENT_START+15)
|
|
|
|
#define NS_ENDED (NS_MEDIA_EVENT_START+16)
|
|
|
|
#define NS_RATECHANGE (NS_MEDIA_EVENT_START+17)
|
|
|
|
#define NS_DURATIONCHANGE (NS_MEDIA_EVENT_START+18)
|
|
|
|
#define NS_VOLUMECHANGE (NS_MEDIA_EVENT_START+19)
|
2010-08-25 13:10:00 +00:00
|
|
|
#define NS_MOZAUDIOAVAILABLE (NS_MEDIA_EVENT_START+20)
|
2008-07-09 08:22:20 +00:00
|
|
|
|
2008-09-18 09:47:21 +00:00
|
|
|
// paint notification events
|
|
|
|
#define NS_NOTIFYPAINT_START 3400
|
|
|
|
#define NS_AFTERPAINT (NS_NOTIFYPAINT_START)
|
|
|
|
|
2008-10-23 20:15:20 +00:00
|
|
|
// Simple gesture events
|
|
|
|
#define NS_SIMPLE_GESTURE_EVENT_START 3500
|
|
|
|
#define NS_SIMPLE_GESTURE_SWIPE (NS_SIMPLE_GESTURE_EVENT_START)
|
|
|
|
#define NS_SIMPLE_GESTURE_MAGNIFY_START (NS_SIMPLE_GESTURE_EVENT_START+1)
|
|
|
|
#define NS_SIMPLE_GESTURE_MAGNIFY_UPDATE (NS_SIMPLE_GESTURE_EVENT_START+2)
|
|
|
|
#define NS_SIMPLE_GESTURE_MAGNIFY (NS_SIMPLE_GESTURE_EVENT_START+3)
|
|
|
|
#define NS_SIMPLE_GESTURE_ROTATE_START (NS_SIMPLE_GESTURE_EVENT_START+4)
|
|
|
|
#define NS_SIMPLE_GESTURE_ROTATE_UPDATE (NS_SIMPLE_GESTURE_EVENT_START+5)
|
|
|
|
#define NS_SIMPLE_GESTURE_ROTATE (NS_SIMPLE_GESTURE_EVENT_START+6)
|
2009-04-02 19:34:31 +00:00
|
|
|
#define NS_SIMPLE_GESTURE_TAP (NS_SIMPLE_GESTURE_EVENT_START+7)
|
|
|
|
#define NS_SIMPLE_GESTURE_PRESSTAP (NS_SIMPLE_GESTURE_EVENT_START+8)
|
2012-06-14 17:40:12 +00:00
|
|
|
#define NS_SIMPLE_GESTURE_EDGEUI (NS_SIMPLE_GESTURE_EVENT_START+9)
|
2008-10-23 20:15:20 +00:00
|
|
|
|
2011-05-11 04:52:44 +00:00
|
|
|
// These are used to send native events to plugins.
|
|
|
|
#define NS_PLUGIN_EVENT_START 3600
|
|
|
|
#define NS_PLUGIN_INPUT_EVENT (NS_PLUGIN_EVENT_START)
|
|
|
|
#define NS_PLUGIN_FOCUS_EVENT (NS_PLUGIN_EVENT_START+1)
|
2008-12-15 03:54:54 +00:00
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
// Events to manipulate selection (nsSelectionEvent)
|
|
|
|
#define NS_SELECTION_EVENT_START 3700
|
|
|
|
// Clear any previous selection and set the given range as the selection
|
|
|
|
#define NS_SELECTION_SET (NS_SELECTION_EVENT_START)
|
|
|
|
|
2009-08-07 15:11:17 +00:00
|
|
|
// Events of commands for the contents
|
|
|
|
#define NS_CONTENT_COMMAND_EVENT_START 3800
|
|
|
|
#define NS_CONTENT_COMMAND_CUT (NS_CONTENT_COMMAND_EVENT_START)
|
|
|
|
#define NS_CONTENT_COMMAND_COPY (NS_CONTENT_COMMAND_EVENT_START+1)
|
|
|
|
#define NS_CONTENT_COMMAND_PASTE (NS_CONTENT_COMMAND_EVENT_START+2)
|
|
|
|
#define NS_CONTENT_COMMAND_DELETE (NS_CONTENT_COMMAND_EVENT_START+3)
|
|
|
|
#define NS_CONTENT_COMMAND_UNDO (NS_CONTENT_COMMAND_EVENT_START+4)
|
|
|
|
#define NS_CONTENT_COMMAND_REDO (NS_CONTENT_COMMAND_EVENT_START+5)
|
2010-01-11 01:45:45 +00:00
|
|
|
#define NS_CONTENT_COMMAND_PASTE_TRANSFERABLE (NS_CONTENT_COMMAND_EVENT_START+6)
|
2010-03-11 05:25:29 +00:00
|
|
|
// NS_CONTENT_COMMAND_SCROLL scrolls the nearest scrollable element to the
|
|
|
|
// currently focused content or latest DOM selection. This would normally be
|
|
|
|
// the same element scrolled by keyboard scroll commands, except that this event
|
|
|
|
// will scroll an element scrollable in either direction. I.e., if the nearest
|
|
|
|
// scrollable ancestor element can only be scrolled vertically, and horizontal
|
|
|
|
// scrolling is requested using this event, no scrolling will occur.
|
|
|
|
#define NS_CONTENT_COMMAND_SCROLL (NS_CONTENT_COMMAND_EVENT_START+7)
|
2009-08-07 15:11:17 +00:00
|
|
|
|
2009-08-13 20:54:09 +00:00
|
|
|
// Event to gesture notification
|
|
|
|
#define NS_GESTURENOTIFY_EVENT_START 3900
|
|
|
|
|
2009-08-21 17:28:52 +00:00
|
|
|
#define NS_ORIENTATION_EVENT 4000
|
|
|
|
|
2009-09-11 23:13:56 +00:00
|
|
|
#define NS_SCROLLAREA_EVENT_START 4100
|
|
|
|
#define NS_SCROLLEDAREACHANGED (NS_SCROLLAREA_EVENT_START)
|
|
|
|
|
2009-12-23 19:10:31 +00:00
|
|
|
#define NS_TRANSITION_EVENT_START 4200
|
|
|
|
#define NS_TRANSITION_END (NS_TRANSITION_EVENT_START)
|
2009-09-11 23:13:56 +00:00
|
|
|
|
2011-04-12 06:18:44 +00:00
|
|
|
#define NS_ANIMATION_EVENT_START 4250
|
|
|
|
#define NS_ANIMATION_START (NS_ANIMATION_EVENT_START)
|
|
|
|
#define NS_ANIMATION_END (NS_ANIMATION_EVENT_START + 1)
|
|
|
|
#define NS_ANIMATION_ITERATION (NS_ANIMATION_EVENT_START + 2)
|
|
|
|
|
2010-07-31 07:02:52 +00:00
|
|
|
#define NS_SMIL_TIME_EVENT_START 4300
|
|
|
|
#define NS_SMIL_BEGIN (NS_SMIL_TIME_EVENT_START)
|
|
|
|
#define NS_SMIL_END (NS_SMIL_TIME_EVENT_START + 1)
|
|
|
|
#define NS_SMIL_REPEAT (NS_SMIL_TIME_EVENT_START + 2)
|
|
|
|
|
2010-08-02 13:34:54 +00:00
|
|
|
#define NS_MOZTOUCH_EVENT_START 4400
|
|
|
|
#define NS_MOZTOUCH_DOWN (NS_MOZTOUCH_EVENT_START)
|
|
|
|
#define NS_MOZTOUCH_MOVE (NS_MOZTOUCH_EVENT_START+1)
|
|
|
|
#define NS_MOZTOUCH_UP (NS_MOZTOUCH_EVENT_START+2)
|
|
|
|
|
2010-09-16 08:48:47 +00:00
|
|
|
// script notification events
|
2011-05-14 12:03:58 +00:00
|
|
|
#define NS_NOTIFYSCRIPT_START 4500
|
|
|
|
#define NS_BEFORE_SCRIPT_EXECUTE (NS_NOTIFYSCRIPT_START)
|
|
|
|
#define NS_AFTER_SCRIPT_EXECUTE (NS_NOTIFYSCRIPT_START+1)
|
|
|
|
|
|
|
|
#define NS_PRINT_EVENT_START 4600
|
|
|
|
#define NS_BEFOREPRINT (NS_PRINT_EVENT_START)
|
|
|
|
#define NS_AFTERPRINT (NS_PRINT_EVENT_START + 1)
|
2010-09-16 08:48:47 +00:00
|
|
|
|
2011-05-22 21:30:07 +00:00
|
|
|
#define NS_MESSAGE_EVENT_START 4700
|
|
|
|
#define NS_MESSAGE (NS_MESSAGE_EVENT_START)
|
|
|
|
|
|
|
|
// Open and close events
|
|
|
|
#define NS_OPENCLOSE_EVENT_START 4800
|
|
|
|
#define NS_OPEN (NS_OPENCLOSE_EVENT_START)
|
|
|
|
#define NS_CLOSE (NS_OPENCLOSE_EVENT_START+1)
|
|
|
|
|
2011-06-28 22:37:31 +00:00
|
|
|
// Device motion and orientation
|
|
|
|
#define NS_DEVICE_ORIENTATION_START 4900
|
|
|
|
#define NS_DEVICE_ORIENTATION (NS_DEVICE_ORIENTATION_START)
|
|
|
|
#define NS_DEVICE_MOTION (NS_DEVICE_ORIENTATION_START+1)
|
2012-05-02 16:43:45 +00:00
|
|
|
#define NS_DEVICE_PROXIMITY (NS_DEVICE_ORIENTATION_START+2)
|
2012-05-16 20:27:54 +00:00
|
|
|
#define NS_USER_PROXIMITY (NS_DEVICE_ORIENTATION_START+3)
|
|
|
|
#define NS_DEVICE_LIGHT (NS_DEVICE_ORIENTATION_START+4)
|
2011-06-28 22:37:31 +00:00
|
|
|
|
2011-08-08 17:31:32 +00:00
|
|
|
#define NS_SHOW_EVENT 5000
|
|
|
|
|
2011-09-04 20:40:11 +00:00
|
|
|
// Fullscreen DOM API
|
|
|
|
#define NS_FULL_SCREEN_START 5100
|
|
|
|
#define NS_FULLSCREENCHANGE (NS_FULL_SCREEN_START)
|
2011-11-02 00:02:47 +00:00
|
|
|
#define NS_FULLSCREENERROR (NS_FULL_SCREEN_START + 1)
|
2011-09-04 20:40:11 +00:00
|
|
|
|
2011-12-17 00:24:11 +00:00
|
|
|
#define NS_TOUCH_EVENT_START 5200
|
|
|
|
#define NS_TOUCH_START (NS_TOUCH_EVENT_START)
|
|
|
|
#define NS_TOUCH_MOVE (NS_TOUCH_EVENT_START+1)
|
|
|
|
#define NS_TOUCH_END (NS_TOUCH_EVENT_START+2)
|
|
|
|
#define NS_TOUCH_ENTER (NS_TOUCH_EVENT_START+3)
|
|
|
|
#define NS_TOUCH_LEAVE (NS_TOUCH_EVENT_START+4)
|
|
|
|
#define NS_TOUCH_CANCEL (NS_TOUCH_EVENT_START+5)
|
|
|
|
|
2012-04-11 21:55:21 +00:00
|
|
|
// Pointerlock DOM API
|
|
|
|
#define NS_POINTERLOCK_START 5300
|
|
|
|
#define NS_POINTERLOCKCHANGE (NS_POINTERLOCK_START)
|
|
|
|
#define NS_POINTERLOCKERROR (NS_POINTERLOCK_START + 1)
|
|
|
|
|
2012-08-12 01:42:34 +00:00
|
|
|
#define NS_WHEEL_EVENT_START 5400
|
|
|
|
#define NS_WHEEL_WHEEL (NS_WHEEL_EVENT_START)
|
|
|
|
|
1998-04-14 00:31:59 +00:00
|
|
|
/**
|
2001-07-16 02:40:48 +00:00
|
|
|
* Return status for event processors, nsEventStatus, is defined in
|
|
|
|
* nsEvent.h.
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
|
|
|
|
2000-04-01 22:08:47 +00:00
|
|
|
/**
|
|
|
|
* different types of (top-level) window z-level positioning
|
|
|
|
*/
|
|
|
|
enum nsWindowZ {
|
|
|
|
nsWindowZTop = 0, // on top
|
|
|
|
nsWindowZBottom, // on bottom
|
|
|
|
nsWindowZRelative // just below some specified widget
|
|
|
|
};
|
|
|
|
|
1998-04-14 00:31:59 +00:00
|
|
|
/**
|
1998-07-23 02:55:33 +00:00
|
|
|
* General event
|
1998-04-14 00:31:59 +00:00
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsEvent
|
|
|
|
{
|
|
|
|
protected:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsEvent(bool isTrusted, PRUint32 msg, PRUint8 structType)
|
2004-01-12 08:25:18 +00:00
|
|
|
: eventStructType(structType),
|
|
|
|
message(msg),
|
2003-05-01 01:01:03 +00:00
|
|
|
refPoint(0, 0),
|
2012-04-11 21:55:21 +00:00
|
|
|
lastRefPoint(0, 0),
|
2002-03-27 06:24:55 +00:00
|
|
|
time(0),
|
2006-04-10 17:04:54 +00:00
|
|
|
flags(isTrusted ? NS_EVENT_FLAG_TRUSTED : NS_EVENT_FLAG_NONE),
|
2004-01-12 08:25:18 +00:00
|
|
|
userType(0)
|
2002-03-27 06:24:55 +00:00
|
|
|
{
|
2008-04-17 22:38:35 +00:00
|
|
|
MOZ_COUNT_CTOR(nsEvent);
|
2002-03-27 06:24:55 +00:00
|
|
|
}
|
|
|
|
|
2010-08-17 08:07:42 +00:00
|
|
|
nsEvent()
|
|
|
|
{
|
2012-06-20 04:04:06 +00:00
|
|
|
MOZ_COUNT_CTOR(nsEvent);
|
2010-08-17 08:07:42 +00:00
|
|
|
}
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsEvent(bool isTrusted, PRUint32 msg)
|
2005-04-28 23:48:28 +00:00
|
|
|
: eventStructType(NS_EVENT),
|
|
|
|
message(msg),
|
|
|
|
refPoint(0, 0),
|
2012-04-11 21:55:21 +00:00
|
|
|
lastRefPoint(0, 0),
|
2005-04-28 23:48:28 +00:00
|
|
|
time(0),
|
2006-04-10 17:04:54 +00:00
|
|
|
flags(isTrusted ? NS_EVENT_FLAG_TRUSTED : NS_EVENT_FLAG_NONE),
|
2005-04-28 23:48:28 +00:00
|
|
|
userType(0)
|
|
|
|
{
|
2008-04-17 22:38:35 +00:00
|
|
|
MOZ_COUNT_CTOR(nsEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
~nsEvent()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsEvent);
|
2005-04-28 23:48:28 +00:00
|
|
|
}
|
|
|
|
|
2012-06-20 04:04:06 +00:00
|
|
|
nsEvent(const nsEvent& aOther)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsEvent);
|
|
|
|
*this = aOther;
|
|
|
|
}
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
// See event struct types
|
1998-07-23 02:55:33 +00:00
|
|
|
PRUint8 eventStructType;
|
2005-04-28 23:48:28 +00:00
|
|
|
// See GUI MESSAGES,
|
2006-04-10 17:04:54 +00:00
|
|
|
PRUint32 message;
|
2010-06-25 21:51:17 +00:00
|
|
|
// Relative to the widget of the event, or if there is no widget then it is
|
|
|
|
// in screen coordinates. Not modified by layout code.
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntPoint refPoint;
|
2012-04-11 21:55:21 +00:00
|
|
|
// The previous refPoint, if known, used to calculate mouse movement deltas.
|
|
|
|
nsIntPoint lastRefPoint;
|
2007-01-23 22:51:38 +00:00
|
|
|
// Elapsed time, in milliseconds, from a platform-specific zero time
|
|
|
|
// to the time the message was created
|
2010-08-11 21:05:27 +00:00
|
|
|
PRUint64 time;
|
2005-04-28 23:48:28 +00:00
|
|
|
// Flags to hold event flow stage and capture/bubble cancellation
|
2006-04-10 17:04:54 +00:00
|
|
|
// status. This is used also to indicate whether the event is trusted.
|
1999-07-19 19:54:34 +00:00
|
|
|
PRUint32 flags;
|
2005-04-28 23:48:28 +00:00
|
|
|
// Additional type info for user defined events
|
2006-10-06 05:24:02 +00:00
|
|
|
nsCOMPtr<nsIAtom> userType;
|
2006-03-07 17:08:51 +00:00
|
|
|
// Event targets, needed by DOM Events
|
2011-06-24 02:18:00 +00:00
|
|
|
nsCOMPtr<nsIDOMEventTarget> target;
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> currentTarget;
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> originalTarget;
|
1998-07-23 02:55:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* General graphic user interface event
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsGUIEvent : public nsEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
protected:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsGUIEvent(bool isTrusted, PRUint32 msg, nsIWidget *w, PRUint8 structType)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsEvent(isTrusted, msg, structType),
|
2012-07-30 14:20:58 +00:00
|
|
|
widget(w), pluginEvent(nullptr)
|
2005-04-28 23:48:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-08-17 08:07:42 +00:00
|
|
|
nsGUIEvent()
|
2012-07-30 14:20:58 +00:00
|
|
|
: pluginEvent(nullptr)
|
2010-08-17 08:07:42 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsGUIEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsEvent(isTrusted, msg, NS_GUI_EVENT),
|
2012-07-30 14:20:58 +00:00
|
|
|
widget(w), pluginEvent(nullptr)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Originator of the event
|
2008-10-27 20:16:23 +00:00
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
|
2009-11-10 21:55:38 +00:00
|
|
|
/// Event for NPAPI plugin
|
|
|
|
void* pluginEvent;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
2001-11-02 04:49:07 +00:00
|
|
|
/**
|
|
|
|
* Script error event
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsScriptErrorEvent : public nsEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsScriptErrorEvent(bool isTrusted, PRUint32 msg)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsEvent(isTrusted, msg, NS_SCRIPT_ERROR_EVENT),
|
2012-07-30 14:20:58 +00:00
|
|
|
lineNr(0), errorMsg(nullptr), fileName(nullptr)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-11-02 04:49:07 +00:00
|
|
|
PRInt32 lineNr;
|
|
|
|
const PRUnichar* errorMsg;
|
|
|
|
const PRUnichar* fileName;
|
|
|
|
};
|
|
|
|
|
1998-04-14 00:31:59 +00:00
|
|
|
/**
|
|
|
|
* Window resize event
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsSizeEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsSizeEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SIZE_EVENT),
|
2012-07-30 14:20:58 +00:00
|
|
|
windowSize(nullptr), mWinWidth(0), mWinHeight(0)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// x,y width, height in pixels (client area)
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntRect *windowSize;
|
2004-01-12 08:25:18 +00:00
|
|
|
/// width of entire window (in pixels)
|
|
|
|
PRInt32 mWinWidth;
|
|
|
|
/// height of entire window (in pixels)
|
|
|
|
PRInt32 mWinHeight;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
2000-03-09 01:54:14 +00:00
|
|
|
/**
|
|
|
|
* Window size mode event
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsSizeModeEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsSizeModeEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SIZEMODE_EVENT),
|
2004-01-12 08:25:18 +00:00
|
|
|
mSizeMode(nsSizeMode_Normal)
|
|
|
|
{
|
|
|
|
}
|
2000-03-09 01:54:14 +00:00
|
|
|
|
2004-01-12 08:25:18 +00:00
|
|
|
nsSizeMode mSizeMode;
|
2000-03-09 01:54:14 +00:00
|
|
|
};
|
|
|
|
|
2000-04-01 22:08:47 +00:00
|
|
|
/**
|
|
|
|
* Window z-level event
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsZLevelEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsZLevelEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_ZLEVEL_EVENT),
|
2012-07-30 14:20:58 +00:00
|
|
|
mPlacement(nsWindowZTop), mReqBelow(nullptr), mActualBelow(nullptr),
|
2011-10-17 14:59:28 +00:00
|
|
|
mImmediate(false), mAdjusted(false)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
2000-04-01 22:08:47 +00:00
|
|
|
|
|
|
|
nsWindowZ mPlacement;
|
|
|
|
nsIWidget *mReqBelow, // widget we request being below, if any
|
|
|
|
*mActualBelow; // widget to be below, returned by handler
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mImmediate, // handler should make changes immediately
|
2000-04-01 22:08:47 +00:00
|
|
|
mAdjusted; // handler changed placement
|
|
|
|
};
|
|
|
|
|
1998-04-14 00:31:59 +00:00
|
|
|
/**
|
|
|
|
* Window repaint event
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsPaintEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsPaintEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2010-07-15 21:08:08 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_PAINT_EVENT),
|
2011-12-24 03:52:24 +00:00
|
|
|
willSendDidPaint(false),
|
|
|
|
didSendWillPaint(false)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-03-01 08:03:49 +00:00
|
|
|
// area that needs repainting
|
|
|
|
nsIntRegion region;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool willSendDidPaint;
|
2011-12-24 03:52:24 +00:00
|
|
|
bool didSendWillPaint;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
1998-04-14 00:31:59 +00:00
|
|
|
/**
|
|
|
|
* Scrollbar event
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsScrollbarEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsScrollbarEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SCROLLBAR_EVENT),
|
2004-01-12 08:25:18 +00:00
|
|
|
position(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ranges between scrollbar 0 and (maxRange - thumbSize). See nsIScrollbar
|
|
|
|
PRUint32 position;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsScrollPortEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2000-06-23 05:15:04 +00:00
|
|
|
enum orientType {
|
|
|
|
vertical = 0,
|
|
|
|
horizontal = 1,
|
|
|
|
both = 2
|
|
|
|
};
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
nsScrollPortEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SCROLLPORT_EVENT),
|
2004-01-12 08:25:18 +00:00
|
|
|
orient(vertical)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2000-06-23 05:15:04 +00:00
|
|
|
orientType orient;
|
|
|
|
};
|
1998-04-17 00:16:11 +00:00
|
|
|
|
2009-09-11 23:13:56 +00:00
|
|
|
class nsScrollAreaEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsScrollAreaEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2009-09-11 23:13:56 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SCROLLAREA_EVENT)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect mArea;
|
|
|
|
};
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsInputEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
protected:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsInputEvent(bool isTrusted, PRUint32 msg, nsIWidget *w,
|
2005-04-28 23:48:28 +00:00
|
|
|
PRUint8 structType)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, structType),
|
2012-04-25 03:00:02 +00:00
|
|
|
modifiers(0)
|
2005-04-28 23:48:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-08-17 08:07:42 +00:00
|
|
|
nsInputEvent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsInputEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_INPUT_EVENT),
|
2012-04-25 03:00:02 +00:00
|
|
|
modifiers(0)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-04-25 03:00:02 +00:00
|
|
|
// true indicates the shift key is down
|
|
|
|
bool IsShift() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_SHIFT) != 0);
|
|
|
|
}
|
|
|
|
// true indicates the control key is down
|
|
|
|
bool IsControl() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_CONTROL) != 0);
|
|
|
|
}
|
|
|
|
// true indicates the alt key is down
|
|
|
|
bool IsAlt() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_ALT) != 0);
|
|
|
|
}
|
|
|
|
// true indicates the meta key is down (or, on Mac, the Command key)
|
|
|
|
bool IsMeta() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_META) != 0);
|
|
|
|
}
|
2012-07-06 00:42:05 +00:00
|
|
|
// true indicates the win key is down on Windows. Or the Super or Hyper key
|
|
|
|
// is down on Linux.
|
|
|
|
bool IsOS() const
|
2012-04-25 03:00:02 +00:00
|
|
|
{
|
2012-07-06 00:42:05 +00:00
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_OS) != 0);
|
2012-04-25 03:00:02 +00:00
|
|
|
}
|
|
|
|
// true indicates the alt graph key is down
|
|
|
|
// NOTE: on Mac, the option key press causes both IsAlt() and IsAltGrpah()
|
|
|
|
// return true.
|
|
|
|
bool IsAltGraph() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_ALTGRAPH) != 0);
|
|
|
|
}
|
|
|
|
// true indeicates the CapLock LED is turn on.
|
|
|
|
bool IsCapsLocked() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_CAPSLOCK) != 0);
|
|
|
|
}
|
|
|
|
// true indeicates the NumLock LED is turn on.
|
|
|
|
bool IsNumLocked() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_NUMLOCK) != 0);
|
|
|
|
}
|
|
|
|
// true indeicates the ScrollLock LED is turn on.
|
|
|
|
bool IsScrollLocked() const
|
|
|
|
{
|
2012-07-06 00:42:05 +00:00
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_SCROLLLOCK) != 0);
|
2012-04-25 03:00:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// true indeicates the Fn key is down, but this is not supported by native
|
|
|
|
// key event on any platform.
|
|
|
|
bool IsFn() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_FN) != 0);
|
|
|
|
}
|
|
|
|
// true indeicates the ScrollLock LED is turn on.
|
|
|
|
bool IsSymbolLocked() const
|
|
|
|
{
|
|
|
|
return ((modifiers & mozilla::widget::MODIFIER_SYMBOLLOCK) != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InitBasicModifiers(bool aCtrlKey,
|
|
|
|
bool aAltKey,
|
|
|
|
bool aShiftKey,
|
|
|
|
bool aMetaKey)
|
|
|
|
{
|
|
|
|
modifiers = 0;
|
|
|
|
if (aCtrlKey) {
|
|
|
|
modifiers |= mozilla::widget::MODIFIER_CONTROL;
|
|
|
|
}
|
|
|
|
if (aAltKey) {
|
|
|
|
modifiers |= mozilla::widget::MODIFIER_ALT;
|
|
|
|
}
|
|
|
|
if (aShiftKey) {
|
|
|
|
modifiers |= mozilla::widget::MODIFIER_SHIFT;
|
|
|
|
}
|
|
|
|
if (aMetaKey) {
|
|
|
|
modifiers |= mozilla::widget::MODIFIER_META;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::widget::Modifiers modifiers;
|
1998-06-23 21:54:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mouse event
|
|
|
|
*/
|
|
|
|
|
2006-11-16 21:35:39 +00:00
|
|
|
class nsMouseEvent_base : public nsInputEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2011-06-22 00:32:43 +00:00
|
|
|
private:
|
|
|
|
friend class mozilla::dom::PBrowserParent;
|
|
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-06-22 00:32:43 +00:00
|
|
|
|
|
|
|
nsMouseEvent_base()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
nsMouseEvent_base(bool isTrusted, PRUint32 msg, nsIWidget *w, PRUint8 type)
|
2012-04-25 03:00:01 +00:00
|
|
|
: nsInputEvent(isTrusted, msg, w, type), button(0), buttons(0),
|
2012-04-25 03:00:02 +00:00
|
|
|
pressure(0), inputSource(nsIDOMMouseEvent::MOZ_SOURCE_MOUSE) {}
|
2006-11-16 21:35:39 +00:00
|
|
|
|
|
|
|
/// The possible related target
|
|
|
|
nsCOMPtr<nsISupports> relatedTarget;
|
|
|
|
|
|
|
|
PRInt16 button;
|
2012-04-25 03:00:01 +00:00
|
|
|
PRInt16 buttons;
|
2012-04-25 03:00:01 +00:00
|
|
|
|
2008-12-11 23:55:15 +00:00
|
|
|
// Finger or touch pressure of event
|
|
|
|
// ranges between 0.0 and 1.0
|
|
|
|
float pressure;
|
2010-04-06 12:59:24 +00:00
|
|
|
|
2011-08-26 07:43:56 +00:00
|
|
|
// Possible values at nsIDOMMouseEvent
|
2010-04-06 12:59:24 +00:00
|
|
|
PRUint16 inputSource;
|
2006-11-16 21:35:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsMouseEvent : public nsMouseEvent_base
|
|
|
|
{
|
2011-06-22 00:32:43 +00:00
|
|
|
private:
|
|
|
|
friend class mozilla::dom::PBrowserParent;
|
|
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
|
2006-11-16 21:35:39 +00:00
|
|
|
public:
|
|
|
|
enum buttonType { eLeftButton = 0, eMiddleButton = 1, eRightButton = 2 };
|
2012-04-25 03:00:01 +00:00
|
|
|
enum buttonsFlag { eLeftButtonFlag = 0x01,
|
|
|
|
eRightButtonFlag = 0x02,
|
|
|
|
eMiddleButtonFlag = 0x04,
|
|
|
|
// typicall, "back" button being left side of 5-button
|
|
|
|
// mice, see "buttons" attribute document of DOM3 Events.
|
|
|
|
e4thButtonFlag = 0x08,
|
|
|
|
// typicall, "forward" button being right side of 5-button
|
|
|
|
// mice, see "buttons" attribute document of DOM3 Events.
|
|
|
|
e5thButtonFlag = 0x10 };
|
2006-11-16 21:35:39 +00:00
|
|
|
enum reasonType { eReal, eSynthesized };
|
|
|
|
enum contextType { eNormal, eContextMenuKey };
|
2008-03-12 22:44:45 +00:00
|
|
|
enum exitType { eChild, eTopLevel };
|
2004-06-22 04:32:52 +00:00
|
|
|
|
2011-06-22 00:32:43 +00:00
|
|
|
nsMouseEvent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-08-27 12:07:27 +00:00
|
|
|
protected:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsMouseEvent(bool isTrusted, PRUint32 msg, nsIWidget *w,
|
2008-08-27 12:07:27 +00:00
|
|
|
PRUint8 structType, reasonType aReason)
|
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, structType),
|
2011-10-17 14:59:28 +00:00
|
|
|
acceptActivation(false), ignoreRootScrollFrame(false),
|
2008-10-28 22:47:37 +00:00
|
|
|
reason(aReason), context(eNormal), exit(eChild), clickCount(0)
|
2008-08-27 12:07:27 +00:00
|
|
|
{
|
2011-09-18 07:45:14 +00:00
|
|
|
switch (msg) {
|
|
|
|
case NS_MOUSE_MOVE:
|
|
|
|
flags |= NS_EVENT_FLAG_CANT_CANCEL;
|
|
|
|
break;
|
|
|
|
case NS_MOUSEENTER:
|
|
|
|
case NS_MOUSELEAVE:
|
|
|
|
flags |= (NS_EVENT_FLAG_CANT_CANCEL & NS_EVENT_FLAG_CANT_BUBBLE);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2008-08-27 12:07:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
nsMouseEvent(bool isTrusted, PRUint32 msg, nsIWidget *w,
|
2006-11-16 21:35:39 +00:00
|
|
|
reasonType aReason, contextType aContext = eNormal)
|
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, NS_MOUSE_EVENT),
|
2011-10-17 14:59:28 +00:00
|
|
|
acceptActivation(false), ignoreRootScrollFrame(false),
|
2008-10-28 22:47:37 +00:00
|
|
|
reason(aReason), context(aContext), exit(eChild), clickCount(0)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2011-09-18 07:45:14 +00:00
|
|
|
switch (msg) {
|
|
|
|
case NS_MOUSE_MOVE:
|
|
|
|
flags |= NS_EVENT_FLAG_CANT_CANCEL;
|
|
|
|
break;
|
|
|
|
case NS_MOUSEENTER:
|
|
|
|
case NS_MOUSELEAVE:
|
|
|
|
flags |= (NS_EVENT_FLAG_CANT_CANCEL | NS_EVENT_FLAG_CANT_BUBBLE);
|
|
|
|
break;
|
|
|
|
case NS_CONTEXTMENU:
|
|
|
|
button = (context == eNormal) ? eRightButton : eLeftButton;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2004-03-05 01:34:34 +00:00
|
|
|
}
|
2004-01-12 08:25:18 +00:00
|
|
|
}
|
2011-09-18 07:45:14 +00:00
|
|
|
|
2012-06-25 19:59:42 +00:00
|
|
|
#ifdef DEBUG
|
2006-11-16 21:35:39 +00:00
|
|
|
~nsMouseEvent() {
|
2007-09-18 07:25:49 +00:00
|
|
|
NS_WARN_IF_FALSE(message != NS_CONTEXTMENU ||
|
|
|
|
button ==
|
|
|
|
((context == eNormal) ? eRightButton : eLeftButton),
|
2006-11-16 21:35:39 +00:00
|
|
|
"Wrong button set to NS_CONTEXTMENU event?");
|
|
|
|
}
|
|
|
|
#endif
|
2004-01-12 08:25:18 +00:00
|
|
|
|
|
|
|
/// Special return code for MOUSE_ACTIVATE to signal
|
|
|
|
/// if the target accepts activation (1), or denies it (0)
|
2011-09-29 06:19:26 +00:00
|
|
|
bool acceptActivation;
|
2008-10-27 20:16:23 +00:00
|
|
|
// Whether the event should ignore scroll frame bounds
|
|
|
|
// during dispatch.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool ignoreRootScrollFrame;
|
2008-10-27 20:16:23 +00:00
|
|
|
|
2006-11-16 21:35:39 +00:00
|
|
|
reasonType reason : 4;
|
|
|
|
contextType context : 4;
|
2008-03-12 22:44:45 +00:00
|
|
|
exitType exit;
|
2006-11-16 21:35:39 +00:00
|
|
|
|
|
|
|
/// The number of mouse clicks
|
|
|
|
PRUint32 clickCount;
|
1998-05-08 14:54:09 +00:00
|
|
|
};
|
|
|
|
|
2008-08-27 12:07:27 +00:00
|
|
|
/**
|
|
|
|
* Drag event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsDragEvent : public nsMouseEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsDragEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2009-02-17 15:51:12 +00:00
|
|
|
: nsMouseEvent(isTrusted, msg, w, NS_DRAG_EVENT, eReal),
|
2011-10-17 14:59:28 +00:00
|
|
|
userCancelled(false)
|
2008-08-27 12:07:27 +00:00
|
|
|
{
|
|
|
|
if (msg == NS_DRAGDROP_EXIT_SYNTH ||
|
|
|
|
msg == NS_DRAGDROP_LEAVE_SYNTH ||
|
|
|
|
msg == NS_DRAGDROP_END) {
|
|
|
|
flags |= NS_EVENT_FLAG_CANT_CANCEL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDataTransfer> dataTransfer;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool userCancelled;
|
2008-08-27 12:07:27 +00:00
|
|
|
};
|
|
|
|
|
2010-05-12 06:47:35 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2001-04-01 01:01:33 +00:00
|
|
|
/**
|
|
|
|
* Accessible event
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsAccessibleEvent : public nsInputEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsAccessibleEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsInputEvent(isTrusted, msg, w, NS_ACCESSIBLE_EVENT),
|
2012-07-30 14:20:58 +00:00
|
|
|
mAccessible(nullptr)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-05-29 01:18:45 +00:00
|
|
|
Accessible *mAccessible;
|
2001-04-01 01:01:33 +00:00
|
|
|
};
|
2010-05-12 06:47:35 +00:00
|
|
|
#endif
|
2001-04-01 01:01:33 +00:00
|
|
|
|
1998-04-14 00:31:59 +00:00
|
|
|
/**
|
|
|
|
* Keyboard event
|
|
|
|
*/
|
|
|
|
|
2008-04-15 04:16:24 +00:00
|
|
|
struct nsAlternativeCharCode {
|
|
|
|
nsAlternativeCharCode(PRUint32 aUnshiftedCharCode,
|
|
|
|
PRUint32 aShiftedCharCode) :
|
|
|
|
mUnshiftedCharCode(aUnshiftedCharCode), mShiftedCharCode(aShiftedCharCode)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
PRUint32 mUnshiftedCharCode;
|
|
|
|
PRUint32 mShiftedCharCode;
|
|
|
|
};
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsKeyEvent : public nsInputEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2011-06-22 00:32:43 +00:00
|
|
|
private:
|
|
|
|
friend class mozilla::dom::PBrowserParent;
|
|
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-06-22 00:32:43 +00:00
|
|
|
nsKeyEvent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
nsKeyEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsInputEvent(isTrusted, msg, w, NS_KEY_EVENT),
|
2012-05-03 08:35:01 +00:00
|
|
|
keyCode(0), charCode(0),
|
|
|
|
location(nsIDOMKeyEvent::DOM_KEY_LOCATION_STANDARD), isChar(0)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// see NS_VK codes
|
|
|
|
PRUint32 keyCode;
|
|
|
|
/// OS translated Unicode char
|
|
|
|
PRUint32 charCode;
|
2012-05-03 08:35:01 +00:00
|
|
|
// One of nsIDOMKeyEvent::DOM_KEY_LOCATION_*
|
|
|
|
PRUint32 location;
|
2008-04-15 04:16:24 +00:00
|
|
|
// OS translated Unicode chars which are used for accesskey and accelkey
|
|
|
|
// handling. The handlers will try from first character to last character.
|
|
|
|
nsTArray<nsAlternativeCharCode> alternativeCharCodes;
|
2004-01-12 08:25:18 +00:00
|
|
|
// indicates whether the event signifies a printable character
|
2011-09-29 06:19:26 +00:00
|
|
|
bool isChar;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
1998-05-18 17:55:34 +00:00
|
|
|
/**
|
1999-06-29 20:31:22 +00:00
|
|
|
* IME Related Events
|
1998-05-18 17:55:34 +00:00
|
|
|
*/
|
2009-04-23 03:27:12 +00:00
|
|
|
|
|
|
|
struct nsTextRangeStyle
|
|
|
|
{
|
|
|
|
enum {
|
2011-03-31 12:26:49 +00:00
|
|
|
LINESTYLE_NONE = NS_STYLE_TEXT_DECORATION_STYLE_NONE,
|
|
|
|
LINESTYLE_SOLID = NS_STYLE_TEXT_DECORATION_STYLE_SOLID,
|
|
|
|
LINESTYLE_DOTTED = NS_STYLE_TEXT_DECORATION_STYLE_DOTTED,
|
|
|
|
LINESTYLE_DASHED = NS_STYLE_TEXT_DECORATION_STYLE_DASHED,
|
|
|
|
LINESTYLE_DOUBLE = NS_STYLE_TEXT_DECORATION_STYLE_DOUBLE,
|
|
|
|
LINESTYLE_WAVY = NS_STYLE_TEXT_DECORATION_STYLE_WAVY
|
2009-04-23 03:27:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
DEFINED_NONE = 0x00,
|
|
|
|
DEFINED_LINESTYLE = 0x01,
|
|
|
|
DEFINED_FOREGROUND_COLOR = 0x02,
|
|
|
|
DEFINED_BACKGROUND_COLOR = 0x04,
|
|
|
|
DEFINED_UNDERLINE_COLOR = 0x08
|
|
|
|
};
|
|
|
|
|
|
|
|
// Initialize all members, because nsTextRange instances may be compared by
|
|
|
|
// memcomp.
|
2009-05-15 00:45:15 +00:00
|
|
|
nsTextRangeStyle()
|
2009-04-23 03:27:12 +00:00
|
|
|
{
|
2009-05-15 00:45:15 +00:00
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
{
|
|
|
|
mDefinedStyles = DEFINED_NONE;
|
|
|
|
mLineStyle = LINESTYLE_NONE;
|
2011-10-17 14:59:28 +00:00
|
|
|
mIsBoldLine = false;
|
2009-05-15 00:45:15 +00:00
|
|
|
mForegroundColor = mBackgroundColor = mUnderlineColor = NS_RGBA(0, 0, 0, 0);
|
2009-04-23 03:27:12 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsDefined() const { return mDefinedStyles != DEFINED_NONE; }
|
2009-04-23 03:27:12 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsLineStyleDefined() const
|
2009-04-23 03:27:12 +00:00
|
|
|
{
|
|
|
|
return (mDefinedStyles & DEFINED_LINESTYLE) != 0;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsForegroundColorDefined() const
|
2009-04-23 03:27:12 +00:00
|
|
|
{
|
|
|
|
return (mDefinedStyles & DEFINED_FOREGROUND_COLOR) != 0;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsBackgroundColorDefined() const
|
2009-04-23 03:27:12 +00:00
|
|
|
{
|
|
|
|
return (mDefinedStyles & DEFINED_BACKGROUND_COLOR) != 0;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsUnderlineColorDefined() const
|
2009-04-23 03:27:12 +00:00
|
|
|
{
|
|
|
|
return (mDefinedStyles & DEFINED_UNDERLINE_COLOR) != 0;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsNoChangeStyle() const
|
2009-05-15 00:45:15 +00:00
|
|
|
{
|
|
|
|
return !IsForegroundColorDefined() && !IsBackgroundColorDefined() &&
|
|
|
|
IsLineStyleDefined() && mLineStyle == LINESTYLE_NONE;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool Equals(const nsTextRangeStyle& aOther)
|
2009-04-23 03:27:12 +00:00
|
|
|
{
|
|
|
|
if (mDefinedStyles != aOther.mDefinedStyles)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-04-23 03:27:12 +00:00
|
|
|
if (IsLineStyleDefined() && (mLineStyle != aOther.mLineStyle ||
|
|
|
|
!mIsBoldLine != !aOther.mIsBoldLine))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-04-23 03:27:12 +00:00
|
|
|
if (IsForegroundColorDefined() &&
|
|
|
|
(mForegroundColor != aOther.mForegroundColor))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-04-23 03:27:12 +00:00
|
|
|
if (IsBackgroundColorDefined() &&
|
|
|
|
(mBackgroundColor != aOther.mBackgroundColor))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2009-04-23 03:27:12 +00:00
|
|
|
if (IsUnderlineColorDefined() &&
|
|
|
|
(mUnderlineColor != aOther.mUnderlineColor))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
2009-04-23 03:27:12 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator !=(const nsTextRangeStyle &aOther)
|
2009-04-23 03:27:12 +00:00
|
|
|
{
|
|
|
|
return !Equals(aOther);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator ==(const nsTextRangeStyle &aOther)
|
2009-04-23 03:27:12 +00:00
|
|
|
{
|
|
|
|
return Equals(aOther);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint8 mDefinedStyles;
|
|
|
|
PRUint8 mLineStyle; // DEFINED_LINESTYLE
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsBoldLine; // DEFINED_LINESTYLE
|
2009-04-23 03:27:12 +00:00
|
|
|
|
|
|
|
nscolor mForegroundColor; // DEFINED_FOREGROUND_COLOR
|
|
|
|
nscolor mBackgroundColor; // DEFINED_BACKGROUND_COLOR
|
|
|
|
nscolor mUnderlineColor; // DEFINED_UNDERLINE_COLOR
|
|
|
|
};
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
struct nsTextRange
|
|
|
|
{
|
2004-01-12 08:25:18 +00:00
|
|
|
nsTextRange()
|
|
|
|
: mStartOffset(0), mEndOffset(0), mRangeType(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 mStartOffset;
|
|
|
|
PRUint32 mEndOffset;
|
|
|
|
PRUint32 mRangeType;
|
2009-04-23 03:27:12 +00:00
|
|
|
|
|
|
|
nsTextRangeStyle mRangeStyle;
|
1999-06-29 20:31:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef nsTextRange* nsTextRangeArray;
|
1998-05-18 17:55:34 +00:00
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsTextEvent : public nsInputEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2010-08-17 08:07:42 +00:00
|
|
|
private:
|
|
|
|
friend class mozilla::dom::PBrowserParent;
|
|
|
|
friend class mozilla::dom::PBrowserChild;
|
2011-08-29 16:26:24 +00:00
|
|
|
friend class mozilla::plugins::PPluginInstanceChild;
|
2010-08-17 08:07:42 +00:00
|
|
|
|
|
|
|
nsTextEvent()
|
|
|
|
{
|
|
|
|
}
|
2010-10-01 14:17:37 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
PRUint32 seqno;
|
2010-08-17 08:07:42 +00:00
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsTextEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsInputEvent(isTrusted, msg, w, NS_TEXT_EVENT),
|
2012-07-30 14:20:58 +00:00
|
|
|
rangeCount(0), rangeArray(nullptr), isChar(false)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
1999-03-19 23:36:20 +00:00
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
nsString theText;
|
2004-01-12 08:25:18 +00:00
|
|
|
PRUint32 rangeCount;
|
2008-12-17 08:05:44 +00:00
|
|
|
// Note that the range array may not specify a caret position; in that
|
|
|
|
// case there will be no range of type NS_TEXTRANGE_CARETPOSITION in the
|
|
|
|
// array.
|
2004-01-12 08:25:18 +00:00
|
|
|
nsTextRangeArray rangeArray;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool isChar;
|
1999-05-03 22:57:48 +00:00
|
|
|
};
|
|
|
|
|
2011-09-22 09:17:40 +00:00
|
|
|
class nsCompositionEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2010-08-17 08:07:42 +00:00
|
|
|
private:
|
|
|
|
friend class mozilla::dom::PBrowserParent;
|
|
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
|
|
|
|
nsCompositionEvent()
|
|
|
|
{
|
|
|
|
}
|
2010-10-01 14:17:37 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
PRUint32 seqno;
|
2010-08-17 08:07:42 +00:00
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsCompositionEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2011-09-22 09:17:40 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_COMPOSITION_EVENT)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2011-09-22 09:17:40 +00:00
|
|
|
// XXX compositionstart is cancelable in draft of DOM3 Events.
|
|
|
|
// However, it doesn't make sense for us, we cannot cancel composition
|
|
|
|
// when we send compositionstart event.
|
|
|
|
flags |= NS_EVENT_FLAG_CANT_CANCEL;
|
2004-01-12 08:25:18 +00:00
|
|
|
}
|
2011-09-22 09:17:40 +00:00
|
|
|
|
|
|
|
nsString data;
|
2004-01-12 08:25:18 +00:00
|
|
|
};
|
|
|
|
|
2012-08-12 01:42:37 +00:00
|
|
|
/**
|
|
|
|
* nsMouseScrollEvent is used for legacy DOM mouse scroll events, i.e.,
|
|
|
|
* DOMMouseScroll and MozMousePixelScroll event. These events are NOT hanbled
|
|
|
|
* by ESM even if widget dispatches them. Use new widget::WheelEvent instead.
|
2008-09-17 11:27:19 +00:00
|
|
|
*/
|
|
|
|
|
2006-11-16 21:35:39 +00:00
|
|
|
class nsMouseScrollEvent : public nsMouseEvent_base
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2011-06-22 00:32:43 +00:00
|
|
|
private:
|
|
|
|
nsMouseScrollEvent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsMouseScrollEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2006-11-16 21:35:39 +00:00
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, NS_MOUSE_SCROLL_EVENT),
|
2012-08-12 01:42:37 +00:00
|
|
|
delta(0), isHorizontal(false)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-07-13 07:51:54 +00:00
|
|
|
PRInt32 delta;
|
2012-08-12 01:42:37 +00:00
|
|
|
bool isHorizontal;
|
1999-11-17 06:54:02 +00:00
|
|
|
};
|
|
|
|
|
2012-08-12 01:42:34 +00:00
|
|
|
/**
|
|
|
|
* WheelEvent is used only for DOM Level 3 WheelEvent (dom::DOMWheelEvent).
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace widget {
|
|
|
|
|
|
|
|
class WheelEvent : public nsMouseEvent_base
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
friend class mozilla::dom::PBrowserParent;
|
|
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
|
|
|
|
WheelEvent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
WheelEvent(bool aIsTrusted, PRUint32 aMessage, nsIWidget* aWidget) :
|
|
|
|
nsMouseEvent_base(aIsTrusted, aMessage, aWidget, NS_WHEEL_EVENT),
|
|
|
|
deltaX(0.0), deltaY(0.0), deltaZ(0.0),
|
2012-08-12 01:42:35 +00:00
|
|
|
deltaMode(nsIDOMWheelEvent::DOM_DELTA_PIXEL),
|
2012-08-12 01:42:36 +00:00
|
|
|
customizedByUserPrefs(false), isMomentum(false), isPixelOnlyDevice(false),
|
2012-08-12 01:42:36 +00:00
|
|
|
lineOrPageDeltaX(0), lineOrPageDeltaY(0), scrollType(SCROLL_DEFAULT),
|
2012-08-12 01:42:35 +00:00
|
|
|
overflowDeltaX(0.0), overflowDeltaY(0.0)
|
2012-08-12 01:42:34 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
double deltaX;
|
|
|
|
double deltaY;
|
|
|
|
double deltaZ;
|
|
|
|
|
|
|
|
// Should be one of nsIDOMWheelEvent::DOM_DELTA_*
|
|
|
|
PRUint32 deltaMode;
|
2012-08-12 01:42:35 +00:00
|
|
|
|
2012-08-12 01:42:36 +00:00
|
|
|
// Following members are for internal use only, not for DOM event.
|
|
|
|
|
2012-08-12 01:42:35 +00:00
|
|
|
// If the delta values are computed from prefs, this value is true.
|
|
|
|
// Otherwise, i.e., they are computed from native events, false.
|
|
|
|
bool customizedByUserPrefs;
|
|
|
|
|
2012-08-12 01:42:36 +00:00
|
|
|
// true if the event is caused by momentum.
|
|
|
|
bool isMomentum;
|
|
|
|
|
2012-08-12 01:42:36 +00:00
|
|
|
// If device event handlers don't know when they should set lineOrPageDeltaX
|
|
|
|
// and lineOrPageDeltaY, this is true. Otherwise, false.
|
|
|
|
// If isPixelOnlyDevice is true, ESM will generate NS_MOUSE_SCROLL events
|
|
|
|
// when accumulated pixel delta values reach a line height.
|
|
|
|
bool isPixelOnlyDevice;
|
|
|
|
|
2012-08-12 01:42:35 +00:00
|
|
|
// If widget sets lineOrPageDelta, nsEventStateManager will dispatch
|
|
|
|
// NS_MOUSE_SCROLL event for compatibility. Note that the delta value means
|
|
|
|
// pages if the deltaMode is DOM_DELTA_PAGE, otherwise, lines.
|
|
|
|
PRInt32 lineOrPageDeltaX;
|
|
|
|
PRInt32 lineOrPageDeltaY;
|
|
|
|
|
2012-08-12 01:42:36 +00:00
|
|
|
// When the default action for an wheel event is moving history or zooming,
|
|
|
|
// need to chose a delta value for doing it.
|
|
|
|
PRInt32 GetPreferredIntDelta()
|
|
|
|
{
|
|
|
|
if (!lineOrPageDeltaX && !lineOrPageDeltaY) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (lineOrPageDeltaY && !lineOrPageDeltaX) {
|
|
|
|
return lineOrPageDeltaY;
|
|
|
|
}
|
|
|
|
if (lineOrPageDeltaX && !lineOrPageDeltaY) {
|
|
|
|
return lineOrPageDeltaX;
|
|
|
|
}
|
|
|
|
if ((lineOrPageDeltaX < 0 && lineOrPageDeltaY > 0) ||
|
|
|
|
(lineOrPageDeltaX > 0 && lineOrPageDeltaY < 0)) {
|
|
|
|
return 0; // We cannot guess the answer in this case.
|
|
|
|
}
|
|
|
|
return (NS_ABS(lineOrPageDeltaX) > NS_ABS(lineOrPageDeltaY)) ?
|
|
|
|
lineOrPageDeltaX : lineOrPageDeltaY;
|
|
|
|
}
|
|
|
|
|
2012-08-12 01:42:36 +00:00
|
|
|
// Scroll type
|
|
|
|
// The default value is SCROLL_DEFAULT, which means nsEventStateManager will
|
|
|
|
// select preferred scroll type automatically.
|
|
|
|
enum ScrollType {
|
|
|
|
SCROLL_DEFAULT,
|
|
|
|
SCROLL_SYNCHRONOUSLY,
|
|
|
|
SCROLL_ASYNCHRONOUSELY,
|
|
|
|
SCROLL_SMOOTHLY
|
|
|
|
};
|
|
|
|
ScrollType scrollType;
|
|
|
|
|
2012-08-12 01:42:35 +00:00
|
|
|
// overflowed delta values, these values are the result of dispatching this
|
|
|
|
// event.
|
|
|
|
double overflowDeltaX;
|
|
|
|
double overflowDeltaY;
|
2012-08-12 01:42:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace widget
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2009-08-13 20:54:09 +00:00
|
|
|
/*
|
|
|
|
* Gesture Notify Event:
|
|
|
|
*
|
|
|
|
* This event is the first event generated when the user touches
|
|
|
|
* the screen with a finger, and it's meant to decide what kind
|
|
|
|
* of action we'll use for that touch interaction.
|
|
|
|
*
|
|
|
|
* The event is dispatched to the layout and based on what is underneath
|
|
|
|
* the initial contact point it's then decided if we should pan
|
|
|
|
* (finger scrolling) or drag the target element.
|
|
|
|
*/
|
|
|
|
class nsGestureNotifyEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum ePanDirection {
|
|
|
|
ePanNone,
|
|
|
|
ePanVertical,
|
|
|
|
ePanHorizontal,
|
|
|
|
ePanBoth
|
|
|
|
};
|
|
|
|
|
|
|
|
ePanDirection panDirection;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool displayPanFeedback;
|
2009-08-13 20:54:09 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
nsGestureNotifyEvent(bool aIsTrusted, PRUint32 aMsg, nsIWidget *aWidget):
|
2009-08-13 20:54:09 +00:00
|
|
|
nsGUIEvent(aIsTrusted, aMsg, aWidget, NS_GESTURENOTIFY_EVENT),
|
|
|
|
panDirection(ePanNone),
|
2011-10-17 14:59:28 +00:00
|
|
|
displayPanFeedback(false)
|
2009-08-13 20:54:09 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
class nsQueryContentEvent : public nsGUIEvent
|
|
|
|
{
|
2010-08-17 08:07:42 +00:00
|
|
|
private:
|
|
|
|
friend class mozilla::dom::PBrowserParent;
|
|
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
|
|
|
|
nsQueryContentEvent()
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
mReply.mContentsRoot = nullptr;
|
|
|
|
mReply.mFocusedWidget = nullptr;
|
2010-08-17 08:07:42 +00:00
|
|
|
}
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsQueryContentEvent(bool aIsTrusted, PRUint32 aMsg, nsIWidget *aWidget) :
|
2008-02-20 07:40:04 +00:00
|
|
|
nsGUIEvent(aIsTrusted, aMsg, aWidget, NS_QUERY_CONTENT_EVENT),
|
2011-10-17 14:59:28 +00:00
|
|
|
mSucceeded(false), mWasAsync(false)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void InitForQueryTextContent(PRUint32 aOffset, PRUint32 aLength)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(message == NS_QUERY_TEXT_CONTENT,
|
|
|
|
"wrong initializer is called");
|
|
|
|
mInput.mOffset = aOffset;
|
|
|
|
mInput.mLength = aLength;
|
|
|
|
}
|
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
void InitForQueryCaretRect(PRUint32 aOffset)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ASSERTION(message == NS_QUERY_CARET_RECT,
|
2008-02-20 07:40:04 +00:00
|
|
|
"wrong initializer is called");
|
|
|
|
mInput.mOffset = aOffset;
|
|
|
|
}
|
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
void InitForQueryTextRect(PRUint32 aOffset, PRUint32 aLength)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ASSERTION(message == NS_QUERY_TEXT_RECT,
|
2008-02-20 07:40:04 +00:00
|
|
|
"wrong initializer is called");
|
|
|
|
mInput.mOffset = aOffset;
|
2009-02-10 20:56:51 +00:00
|
|
|
mInput.mLength = aLength;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2011-03-01 21:15:23 +00:00
|
|
|
void InitForQueryDOMWidgetHittest(nsIntPoint& aPoint)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(message == NS_QUERY_DOM_WIDGET_HITTEST,
|
|
|
|
"wrong initializer is called");
|
|
|
|
refPoint = aPoint;
|
|
|
|
}
|
|
|
|
|
2010-08-17 08:07:45 +00:00
|
|
|
PRUint32 GetSelectionStart(void) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(message == NS_QUERY_SELECTED_TEXT,
|
|
|
|
"not querying selection");
|
|
|
|
return mReply.mOffset + (mReply.mReversed ? mReply.mString.Length() : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 GetSelectionEnd(void) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(message == NS_QUERY_SELECTED_TEXT,
|
|
|
|
"not querying selection");
|
|
|
|
return mReply.mOffset + (mReply.mReversed ? 0 : mReply.mString.Length());
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mSucceeded;
|
|
|
|
bool mWasAsync;
|
2008-02-20 07:40:04 +00:00
|
|
|
struct {
|
|
|
|
PRUint32 mOffset;
|
|
|
|
PRUint32 mLength;
|
|
|
|
} mInput;
|
|
|
|
struct {
|
|
|
|
void* mContentsRoot;
|
|
|
|
PRUint32 mOffset;
|
|
|
|
nsString mString;
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntRect mRect; // Finally, the coordinates is system coordinates.
|
2008-08-11 08:27:59 +00:00
|
|
|
// The return widget has the caret. This is set at all query events.
|
|
|
|
nsIWidget* mFocusedWidget;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mReversed; // true if selection is reversed (end < start)
|
|
|
|
bool mHasSelection; // true if the selection exists
|
|
|
|
bool mWidgetIsHit; // true if DOM element under mouse belongs to widget
|
2009-03-18 02:04:01 +00:00
|
|
|
// used by NS_QUERY_SELECTION_AS_TRANSFERABLE
|
|
|
|
nsCOMPtr<nsITransferable> mTransferable;
|
2008-02-20 07:40:04 +00:00
|
|
|
} mReply;
|
2009-05-15 00:46:24 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
NOT_FOUND = PR_UINT32_MAX
|
|
|
|
};
|
2011-07-14 22:12:20 +00:00
|
|
|
|
|
|
|
// values of mComputedScrollAction
|
|
|
|
enum {
|
|
|
|
SCROLL_ACTION_NONE,
|
|
|
|
SCROLL_ACTION_LINE,
|
|
|
|
SCROLL_ACTION_PAGE
|
|
|
|
};
|
2008-02-20 07:40:04 +00:00
|
|
|
};
|
|
|
|
|
2009-10-01 17:53:10 +00:00
|
|
|
class nsFocusEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsFocusEvent(bool isTrusted, PRUint32 msg)
|
2009-10-01 17:53:10 +00:00
|
|
|
: nsEvent(isTrusted, msg, NS_FOCUS_EVENT),
|
2011-10-17 14:59:28 +00:00
|
|
|
fromRaise(false),
|
|
|
|
isRefocus(false)
|
2009-10-01 17:53:10 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool fromRaise;
|
|
|
|
bool isRefocus;
|
2009-10-01 17:53:10 +00:00
|
|
|
};
|
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
class nsSelectionEvent : public nsGUIEvent
|
|
|
|
{
|
2010-08-17 08:07:42 +00:00
|
|
|
private:
|
|
|
|
friend class mozilla::dom::PBrowserParent;
|
|
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
|
|
|
|
nsSelectionEvent()
|
|
|
|
{
|
|
|
|
}
|
2010-10-01 14:17:37 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
PRUint32 seqno;
|
2010-08-17 08:07:42 +00:00
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsSelectionEvent(bool aIsTrusted, PRUint32 aMsg, nsIWidget *aWidget) :
|
2009-02-10 20:56:51 +00:00
|
|
|
nsGUIEvent(aIsTrusted, aMsg, aWidget, NS_SELECTION_EVENT),
|
2011-10-17 14:59:28 +00:00
|
|
|
mExpandToClusterBoundary(true), mSucceeded(false)
|
2009-02-10 20:56:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 mOffset; // start offset of selection
|
|
|
|
PRUint32 mLength; // length of selection
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mReversed; // selection "anchor" should be in front
|
|
|
|
bool mExpandToClusterBoundary; // cluster-based or character-based
|
|
|
|
bool mSucceeded;
|
2009-02-10 20:56:51 +00:00
|
|
|
};
|
|
|
|
|
2009-08-07 15:11:17 +00:00
|
|
|
class nsContentCommandEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsContentCommandEvent(bool aIsTrusted, PRUint32 aMsg, nsIWidget *aWidget,
|
|
|
|
bool aOnlyEnabledCheck = false) :
|
2009-08-07 15:11:17 +00:00
|
|
|
nsGUIEvent(aIsTrusted, aMsg, aWidget, NS_CONTENT_COMMAND_EVENT),
|
2011-09-29 06:19:26 +00:00
|
|
|
mOnlyEnabledCheck(bool(aOnlyEnabledCheck)),
|
2011-10-17 14:59:28 +00:00
|
|
|
mSucceeded(false), mIsEnabled(false)
|
2009-08-07 15:11:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-03-11 05:25:29 +00:00
|
|
|
// NS_CONTENT_COMMAND_PASTE_TRANSFERABLE
|
2010-01-11 01:45:45 +00:00
|
|
|
nsCOMPtr<nsITransferable> mTransferable; // [in]
|
2010-03-11 05:25:29 +00:00
|
|
|
|
|
|
|
// NS_CONTENT_COMMAND_SCROLL
|
|
|
|
// for mScroll.mUnit
|
|
|
|
enum {
|
|
|
|
eCmdScrollUnit_Line,
|
|
|
|
eCmdScrollUnit_Page,
|
|
|
|
eCmdScrollUnit_Whole
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ScrollInfo {
|
|
|
|
ScrollInfo() :
|
2011-10-17 14:59:28 +00:00
|
|
|
mAmount(0), mUnit(eCmdScrollUnit_Line), mIsHorizontal(false)
|
2010-03-11 05:25:29 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 mAmount; // [in]
|
|
|
|
PRUint8 mUnit; // [in]
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsHorizontal; // [in]
|
2010-03-11 05:25:29 +00:00
|
|
|
} mScroll;
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mOnlyEnabledCheck; // [in]
|
2009-08-07 15:11:17 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mSucceeded; // [out]
|
|
|
|
bool mIsEnabled; // [out]
|
2009-08-07 15:11:17 +00:00
|
|
|
};
|
|
|
|
|
2010-08-02 13:34:54 +00:00
|
|
|
class nsMozTouchEvent : public nsMouseEvent_base
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsMozTouchEvent(bool isTrusted, PRUint32 msg, nsIWidget* w,
|
2010-08-02 13:34:54 +00:00
|
|
|
PRUint32 streamIdArg)
|
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, NS_MOZTOUCH_EVENT),
|
|
|
|
streamId(streamIdArg)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 streamId;
|
|
|
|
};
|
|
|
|
|
2011-12-17 00:24:11 +00:00
|
|
|
class nsTouchEvent : public nsInputEvent
|
|
|
|
{
|
|
|
|
public:
|
2012-07-16 02:58:43 +00:00
|
|
|
nsTouchEvent()
|
|
|
|
{
|
|
|
|
}
|
2012-04-04 17:08:53 +00:00
|
|
|
nsTouchEvent(bool isTrusted, nsTouchEvent *aEvent)
|
|
|
|
: nsInputEvent(isTrusted,
|
|
|
|
aEvent->message,
|
|
|
|
aEvent->widget,
|
|
|
|
NS_TOUCH_EVENT)
|
2011-12-17 00:24:11 +00:00
|
|
|
{
|
2012-04-25 03:00:02 +00:00
|
|
|
modifiers = aEvent->modifiers;
|
2012-03-19 21:33:42 +00:00
|
|
|
time = aEvent->time;
|
2011-12-17 00:24:11 +00:00
|
|
|
touches.AppendElements(aEvent->touches);
|
|
|
|
MOZ_COUNT_CTOR(nsTouchEvent);
|
|
|
|
}
|
|
|
|
nsTouchEvent(bool isTrusted, PRUint32 msg, nsIWidget* w)
|
|
|
|
: nsInputEvent(isTrusted, msg, w, NS_TOUCH_EVENT)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsTouchEvent);
|
|
|
|
}
|
|
|
|
~nsTouchEvent()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsTouchEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTArray<nsCOMPtr<nsIDOMTouch> > touches;
|
|
|
|
};
|
|
|
|
|
2001-04-17 10:02:11 +00:00
|
|
|
/**
|
|
|
|
* Form event
|
|
|
|
*
|
|
|
|
* We hold the originating form control for form submit and reset events.
|
|
|
|
* originator is a weak pointer (does not hold a strong reference).
|
|
|
|
*/
|
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsFormEvent : public nsEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsFormEvent(bool isTrusted, PRUint32 msg)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsEvent(isTrusted, msg, NS_FORM_EVENT),
|
2012-07-30 14:20:58 +00:00
|
|
|
originator(nullptr)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-04-17 10:02:11 +00:00
|
|
|
nsIContent *originator;
|
|
|
|
};
|
|
|
|
|
2002-12-06 03:41:43 +00:00
|
|
|
/**
|
2006-12-01 11:09:53 +00:00
|
|
|
* Command event
|
2002-12-06 03:41:43 +00:00
|
|
|
*
|
2006-12-01 11:09:53 +00:00
|
|
|
* Custom commands for example from the operating system.
|
2002-12-06 03:41:43 +00:00
|
|
|
*/
|
|
|
|
|
2006-12-01 11:09:53 +00:00
|
|
|
class nsCommandEvent : public nsGUIEvent
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2005-04-28 23:48:28 +00:00
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsCommandEvent(bool isTrusted, nsIAtom* aEventType,
|
2006-12-01 11:09:53 +00:00
|
|
|
nsIAtom* aCommand, nsIWidget* w)
|
|
|
|
: nsGUIEvent(isTrusted, NS_USER_DEFINED_EVENT, w, NS_COMMAND_EVENT)
|
2004-01-12 08:25:18 +00:00
|
|
|
{
|
2006-12-01 11:09:53 +00:00
|
|
|
userType = aEventType;
|
|
|
|
command = aCommand;
|
2004-01-12 08:25:18 +00:00
|
|
|
}
|
|
|
|
|
2006-12-01 11:09:53 +00:00
|
|
|
nsCOMPtr<nsIAtom> command;
|
2002-12-06 03:41:43 +00:00
|
|
|
};
|
1999-03-09 23:50:18 +00:00
|
|
|
|
2004-04-30 23:55:16 +00:00
|
|
|
/**
|
|
|
|
* DOM UIEvent
|
|
|
|
*/
|
2005-04-28 23:48:28 +00:00
|
|
|
class nsUIEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsUIEvent(bool isTrusted, PRUint32 msg, PRInt32 d)
|
2005-04-28 23:48:28 +00:00
|
|
|
: nsEvent(isTrusted, msg, NS_UI_EVENT),
|
2004-04-30 23:55:16 +00:00
|
|
|
detail(d)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 detail;
|
|
|
|
};
|
|
|
|
|
2008-10-23 20:15:20 +00:00
|
|
|
/**
|
|
|
|
* Simple gesture event
|
|
|
|
*/
|
2009-02-17 11:49:03 +00:00
|
|
|
class nsSimpleGestureEvent : public nsMouseEvent_base
|
2008-10-23 20:15:20 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsSimpleGestureEvent(bool isTrusted, PRUint32 msg, nsIWidget* w,
|
2012-08-09 07:09:42 +00:00
|
|
|
PRUint32 directionArg, double deltaArg)
|
2009-02-17 11:49:03 +00:00
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, NS_SIMPLE_GESTURE_EVENT),
|
2012-06-14 17:40:12 +00:00
|
|
|
direction(directionArg), delta(deltaArg), clickCount(0)
|
2008-10-23 20:15:20 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-08-11 17:42:23 +00:00
|
|
|
nsSimpleGestureEvent(const nsSimpleGestureEvent& other)
|
|
|
|
: nsMouseEvent_base((other.flags & NS_EVENT_FLAG_TRUSTED) != 0,
|
|
|
|
other.message, other.widget, NS_SIMPLE_GESTURE_EVENT),
|
2012-06-14 17:40:12 +00:00
|
|
|
direction(other.direction), delta(other.delta), clickCount(0)
|
2011-08-11 17:42:23 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-10-23 20:15:20 +00:00
|
|
|
PRUint32 direction; // See nsIDOMSimpleGestureEvent for values
|
2012-08-09 07:09:42 +00:00
|
|
|
double delta; // Delta for magnify and rotate events
|
2012-06-14 17:40:12 +00:00
|
|
|
PRUint32 clickCount; // The number of taps for tap events
|
2008-10-23 20:15:20 +00:00
|
|
|
};
|
|
|
|
|
2009-12-23 19:10:31 +00:00
|
|
|
class nsTransitionEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsTransitionEvent(bool isTrusted, PRUint32 msg,
|
2009-12-23 19:10:31 +00:00
|
|
|
const nsString &propertyNameArg, float elapsedTimeArg)
|
|
|
|
: nsEvent(isTrusted, msg, NS_TRANSITION_EVENT),
|
|
|
|
propertyName(propertyNameArg), elapsedTime(elapsedTimeArg)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsString propertyName;
|
|
|
|
float elapsedTime;
|
|
|
|
};
|
|
|
|
|
2011-04-12 06:18:44 +00:00
|
|
|
class nsAnimationEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsAnimationEvent(bool isTrusted, PRUint32 msg,
|
2011-04-12 06:18:44 +00:00
|
|
|
const nsString &animationNameArg, float elapsedTimeArg)
|
|
|
|
: nsEvent(isTrusted, msg, NS_ANIMATION_EVENT),
|
|
|
|
animationName(animationNameArg), elapsedTime(elapsedTimeArg)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsString animationName;
|
|
|
|
float elapsedTime;
|
|
|
|
};
|
2009-12-23 19:10:31 +00:00
|
|
|
|
2010-04-21 14:53:42 +00:00
|
|
|
class nsUIStateChangeEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsUIStateChangeEvent(bool isTrusted, PRUint32 msg, nsIWidget* w)
|
2010-04-21 14:53:42 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_UISTATECHANGE_EVENT),
|
|
|
|
showAccelerators(UIStateChangeType_NoChange),
|
|
|
|
showFocusRings(UIStateChangeType_NoChange)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
UIStateChangeType showAccelerators;
|
|
|
|
UIStateChangeType showFocusRings;
|
|
|
|
};
|
|
|
|
|
2011-05-11 04:52:44 +00:00
|
|
|
/**
|
|
|
|
* Native event pluginEvent for plugins.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsPluginEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
nsPluginEvent(bool isTrusted, PRUint32 msg, nsIWidget *w)
|
2011-05-11 04:52:44 +00:00
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_PLUGIN_EVENT),
|
2011-10-17 14:59:28 +00:00
|
|
|
retargetToFocusedDocument(false)
|
2011-05-11 04:52:44 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// If TRUE, this event needs to be retargeted to focused document.
|
|
|
|
// Otherwise, never retargeted.
|
|
|
|
// Defaults to false.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool retargetToFocusedDocument;
|
2011-05-11 04:52:44 +00:00
|
|
|
};
|
|
|
|
|
1999-05-03 22:57:48 +00:00
|
|
|
/**
|
|
|
|
* Event status for D&D Event
|
|
|
|
*/
|
|
|
|
enum nsDragDropEventStatus {
|
2004-01-12 08:25:18 +00:00
|
|
|
/// The event is a enter
|
1999-05-03 22:57:48 +00:00
|
|
|
nsDragDropEventStatus_eDragEntered,
|
2004-01-12 08:25:18 +00:00
|
|
|
/// The event is exit
|
1999-05-03 22:57:48 +00:00
|
|
|
nsDragDropEventStatus_eDragExited,
|
2004-01-12 08:25:18 +00:00
|
|
|
/// The event is drop
|
1999-05-03 22:57:48 +00:00
|
|
|
nsDragDropEventStatus_eDrop
|
|
|
|
};
|
|
|
|
|
2012-07-19 01:28:16 +00:00
|
|
|
#define NS_IS_INPUT_EVENT(evnt) \
|
|
|
|
(((evnt)->eventStructType == NS_INPUT_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_ACCESSIBLE_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_MOUSE_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_KEY_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_TEXT_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_TOUCH_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_DRAG_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_MOUSE_SCROLL_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_MOZTOUCH_EVENT) || \
|
|
|
|
((evnt)->eventStructType == NS_SIMPLE_GESTURE_EVENT))
|
2001-05-17 18:37:50 +00:00
|
|
|
|
1998-08-18 03:47:24 +00:00
|
|
|
#define NS_IS_MOUSE_EVENT(evnt) \
|
2006-11-16 21:35:39 +00:00
|
|
|
(((evnt)->message == NS_MOUSE_BUTTON_DOWN) || \
|
|
|
|
((evnt)->message == NS_MOUSE_BUTTON_UP) || \
|
|
|
|
((evnt)->message == NS_MOUSE_CLICK) || \
|
|
|
|
((evnt)->message == NS_MOUSE_DOUBLECLICK) || \
|
1998-08-18 03:47:24 +00:00
|
|
|
((evnt)->message == NS_MOUSE_ENTER) || \
|
|
|
|
((evnt)->message == NS_MOUSE_EXIT) || \
|
2006-03-02 08:41:08 +00:00
|
|
|
((evnt)->message == NS_MOUSE_ACTIVATE) || \
|
2000-04-24 04:41:27 +00:00
|
|
|
((evnt)->message == NS_MOUSE_ENTER_SYNTH) || \
|
|
|
|
((evnt)->message == NS_MOUSE_EXIT_SYNTH) || \
|
2010-06-28 06:04:05 +00:00
|
|
|
((evnt)->message == NS_MOUSE_MOZHITTEST) || \
|
1998-08-18 03:47:24 +00:00
|
|
|
((evnt)->message == NS_MOUSE_MOVE))
|
|
|
|
|
2010-05-13 02:33:16 +00:00
|
|
|
#define NS_IS_MOUSE_EVENT_STRUCT(evnt) \
|
|
|
|
((evnt)->eventStructType == NS_MOUSE_EVENT || \
|
|
|
|
(evnt)->eventStructType == NS_DRAG_EVENT)
|
|
|
|
|
2006-11-16 21:35:39 +00:00
|
|
|
#define NS_IS_MOUSE_LEFT_CLICK(evnt) \
|
|
|
|
((evnt)->eventStructType == NS_MOUSE_EVENT && \
|
|
|
|
(evnt)->message == NS_MOUSE_CLICK && \
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<nsMouseEvent*>((evnt))->button == nsMouseEvent::eLeftButton)
|
2006-11-16 21:35:39 +00:00
|
|
|
|
|
|
|
#define NS_IS_CONTEXT_MENU_KEY(evnt) \
|
|
|
|
((evnt)->eventStructType == NS_MOUSE_EVENT && \
|
|
|
|
(evnt)->message == NS_CONTEXTMENU && \
|
2007-07-08 07:08:04 +00:00
|
|
|
static_cast<nsMouseEvent*>((evnt))->context == nsMouseEvent::eContextMenuKey)
|
2006-11-16 21:35:39 +00:00
|
|
|
|
2000-06-21 03:43:40 +00:00
|
|
|
#define NS_IS_DRAG_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_DRAGDROP_ENTER) || \
|
|
|
|
((evnt)->message == NS_DRAGDROP_OVER) || \
|
|
|
|
((evnt)->message == NS_DRAGDROP_EXIT) || \
|
2008-08-27 12:07:27 +00:00
|
|
|
((evnt)->message == NS_DRAGDROP_DRAGDROP) || \
|
2008-08-25 15:08:28 +00:00
|
|
|
((evnt)->message == NS_DRAGDROP_GESTURE) || \
|
2008-08-27 12:07:27 +00:00
|
|
|
((evnt)->message == NS_DRAGDROP_DRAG) || \
|
|
|
|
((evnt)->message == NS_DRAGDROP_END) || \
|
|
|
|
((evnt)->message == NS_DRAGDROP_START) || \
|
|
|
|
((evnt)->message == NS_DRAGDROP_DROP) || \
|
|
|
|
((evnt)->message == NS_DRAGDROP_LEAVE_SYNTH))
|
2000-06-21 03:43:40 +00:00
|
|
|
|
1998-08-18 03:47:24 +00:00
|
|
|
#define NS_IS_KEY_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_KEY_DOWN) || \
|
1999-03-28 22:27:38 +00:00
|
|
|
((evnt)->message == NS_KEY_PRESS) || \
|
1998-08-18 03:47:24 +00:00
|
|
|
((evnt)->message == NS_KEY_UP))
|
|
|
|
|
2000-06-07 01:20:13 +00:00
|
|
|
#define NS_IS_IME_EVENT(evnt) \
|
2004-01-12 08:25:18 +00:00
|
|
|
(((evnt)->message == NS_TEXT_TEXT) || \
|
2000-06-07 01:20:13 +00:00
|
|
|
((evnt)->message == NS_COMPOSITION_START) || \
|
2011-09-22 09:17:40 +00:00
|
|
|
((evnt)->message == NS_COMPOSITION_END) || \
|
|
|
|
((evnt)->message == NS_COMPOSITION_UPDATE))
|
2000-06-07 01:20:13 +00:00
|
|
|
|
2009-10-01 17:53:10 +00:00
|
|
|
#define NS_IS_ACTIVATION_EVENT(evnt) \
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
(((evnt)->message == NS_ACTIVATE) || \
|
2002-04-14 21:45:04 +00:00
|
|
|
((evnt)->message == NS_DEACTIVATE) || \
|
2010-11-15 21:12:50 +00:00
|
|
|
((evnt)->message == NS_PLUGIN_ACTIVATE) || \
|
|
|
|
((evnt)->message == NS_PLUGIN_FOCUS))
|
2002-04-14 21:45:04 +00:00
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
#define NS_IS_QUERY_CONTENT_EVENT(evnt) \
|
2011-05-17 00:23:23 +00:00
|
|
|
((evnt)->eventStructType == NS_QUERY_CONTENT_EVENT)
|
2009-02-10 20:56:51 +00:00
|
|
|
|
|
|
|
#define NS_IS_SELECTION_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_SELECTION_SET))
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2009-08-07 15:11:17 +00:00
|
|
|
#define NS_IS_CONTENT_COMMAND_EVENT(evnt) \
|
2010-06-25 21:51:17 +00:00
|
|
|
((evnt)->eventStructType == NS_CONTENT_COMMAND_EVENT)
|
2009-08-07 15:11:17 +00:00
|
|
|
|
2008-12-15 03:54:54 +00:00
|
|
|
#define NS_IS_PLUGIN_EVENT(evnt) \
|
2011-05-11 04:52:44 +00:00
|
|
|
(((evnt)->message == NS_PLUGIN_INPUT_EVENT) || \
|
|
|
|
((evnt)->message == NS_PLUGIN_FOCUS_EVENT))
|
|
|
|
|
|
|
|
#define NS_IS_RETARGETED_PLUGIN_EVENT(evnt) \
|
|
|
|
(NS_IS_PLUGIN_EVENT(evnt) && \
|
|
|
|
(static_cast<nsPluginEvent*>(evnt)->retargetToFocusedDocument))
|
2008-12-15 03:54:54 +00:00
|
|
|
|
2010-04-21 06:21:46 +00:00
|
|
|
#define NS_IS_NON_RETARGETED_PLUGIN_EVENT(evnt) \
|
2011-05-11 04:52:44 +00:00
|
|
|
(NS_IS_PLUGIN_EVENT(evnt) && \
|
|
|
|
!(static_cast<nsPluginEvent*>(evnt)->retargetToFocusedDocument))
|
2010-04-21 06:21:46 +00:00
|
|
|
|
2005-04-28 23:48:28 +00:00
|
|
|
#define NS_IS_TRUSTED_EVENT(event) \
|
2006-04-10 17:04:54 +00:00
|
|
|
(((event)->flags & NS_EVENT_FLAG_TRUSTED) != 0)
|
2005-04-28 23:48:28 +00:00
|
|
|
|
2005-06-22 01:53:58 +00:00
|
|
|
// Mark an event as being dispatching.
|
|
|
|
#define NS_MARK_EVENT_DISPATCH_STARTED(event) \
|
|
|
|
(event)->flags |= NS_EVENT_FLAG_DISPATCHING;
|
|
|
|
|
|
|
|
#define NS_IS_EVENT_IN_DISPATCH(event) \
|
|
|
|
(((event)->flags & NS_EVENT_FLAG_DISPATCHING) != 0)
|
2005-04-28 23:48:28 +00:00
|
|
|
|
2005-06-22 01:53:58 +00:00
|
|
|
// Mark an event as being done dispatching.
|
|
|
|
#define NS_MARK_EVENT_DISPATCH_DONE(event) \
|
|
|
|
NS_ASSERTION(NS_IS_EVENT_IN_DISPATCH(event), \
|
|
|
|
"Event never got marked for dispatch!"); \
|
|
|
|
(event)->flags &= ~NS_EVENT_FLAG_DISPATCHING; \
|
2008-06-04 20:09:48 +00:00
|
|
|
(event)->flags |= NS_EVENT_DISPATCHED;
|
2005-04-28 23:48:28 +00:00
|
|
|
|
2009-12-17 18:42:02 +00:00
|
|
|
// Be aware the query content events and the selection events are a part of IME
|
|
|
|
// processing. So, you shouldn't use NS_IS_IME_EVENT macro directly in most
|
|
|
|
// cases, you should use NS_IS_IME_RELATED_EVENT instead.
|
|
|
|
#define NS_IS_IME_RELATED_EVENT(evnt) \
|
|
|
|
(NS_IS_IME_EVENT(evnt) || \
|
2012-08-12 01:42:37 +00:00
|
|
|
NS_IS_QUERY_CONTENT_EVENT(evnt) || \
|
2009-12-17 18:42:02 +00:00
|
|
|
NS_IS_SELECTION_EVENT(evnt))
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
/*
|
2000-08-17 21:43:26 +00:00
|
|
|
* Virtual key bindings for keyboard events.
|
|
|
|
* These come from nsIDOMKeyEvent.h, which is generated from MouseKeyEvent.idl.
|
|
|
|
* Really, it would be better if we phased out the NS_VK symbols altogether
|
|
|
|
* in favor of the DOM ones, but at least this way they'll be in sync.
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
|
|
|
|
2012-05-17 07:04:16 +00:00
|
|
|
enum {
|
|
|
|
#define NS_DEFINE_VK(aDOMKeyName, aDOMKeyCode) NS_##aDOMKeyName = aDOMKeyCode
|
|
|
|
#include "nsVKList.h"
|
|
|
|
#undef NS_DEFINE_VK
|
|
|
|
};
|
2000-08-17 00:09:16 +00:00
|
|
|
|
2008-12-17 08:05:44 +00:00
|
|
|
// IME Constants -- keep in synch with nsIPrivateTextRange.h
|
|
|
|
#define NS_TEXTRANGE_CARETPOSITION 0x01
|
|
|
|
#define NS_TEXTRANGE_RAWINPUT 0x02
|
|
|
|
#define NS_TEXTRANGE_SELECTEDRAWTEXT 0x03
|
|
|
|
#define NS_TEXTRANGE_CONVERTEDTEXT 0x04
|
|
|
|
#define NS_TEXTRANGE_SELECTEDCONVERTEDTEXT 0x05
|
1999-06-29 20:31:22 +00:00
|
|
|
|
2009-12-17 18:42:02 +00:00
|
|
|
/**
|
|
|
|
* Whether the event should be handled by the frame of the mouse cursor
|
|
|
|
* position or not. When it should be handled there (e.g., the mouse events),
|
|
|
|
* this returns TRUE.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
inline bool NS_IsEventUsingCoordinates(nsEvent* aEvent)
|
2009-08-07 15:11:17 +00:00
|
|
|
{
|
2009-12-17 18:42:02 +00:00
|
|
|
return !NS_IS_KEY_EVENT(aEvent) && !NS_IS_IME_RELATED_EVENT(aEvent) &&
|
2009-10-01 17:53:10 +00:00
|
|
|
!NS_IS_CONTEXT_MENU_KEY(aEvent) && !NS_IS_ACTIVATION_EVENT(aEvent) &&
|
2011-05-11 04:52:44 +00:00
|
|
|
!NS_IS_PLUGIN_EVENT(aEvent) &&
|
2010-04-21 06:21:46 +00:00
|
|
|
!NS_IS_CONTENT_COMMAND_EVENT(aEvent) &&
|
2009-08-07 15:11:17 +00:00
|
|
|
aEvent->eventStructType != NS_ACCESSIBLE_EVENT;
|
|
|
|
}
|
|
|
|
|
2009-12-17 18:42:02 +00:00
|
|
|
/**
|
|
|
|
* Whether the event should be handled by the focused DOM window in the
|
|
|
|
* same top level window's or not. E.g., key events, IME related events
|
|
|
|
* (including the query content events, they are used in IME transaction)
|
|
|
|
* should be handled by the (last) focused window rather than the dispatched
|
|
|
|
* window.
|
|
|
|
*
|
|
|
|
* NOTE: Even if this returns TRUE, the event isn't going to be handled by the
|
|
|
|
* application level active DOM window which is on another top level window.
|
|
|
|
* So, when the event is fired on a deactive window, the event is going to be
|
|
|
|
* handled by the last focused DOM window in the last focused window.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
inline bool NS_IsEventTargetedAtFocusedWindow(nsEvent* aEvent)
|
2009-08-07 15:11:17 +00:00
|
|
|
{
|
2009-12-28 06:26:47 +00:00
|
|
|
return NS_IS_KEY_EVENT(aEvent) || NS_IS_IME_RELATED_EVENT(aEvent) ||
|
2011-04-20 23:54:43 +00:00
|
|
|
NS_IS_CONTEXT_MENU_KEY(aEvent) ||
|
2011-05-11 04:52:44 +00:00
|
|
|
NS_IS_CONTENT_COMMAND_EVENT(aEvent) ||
|
|
|
|
NS_IS_RETARGETED_PLUGIN_EVENT(aEvent);
|
2009-08-07 15:11:17 +00:00
|
|
|
}
|
|
|
|
|
2010-06-15 05:05:37 +00:00
|
|
|
/**
|
|
|
|
* Whether the event should be handled by the focused content or not. E.g.,
|
|
|
|
* key events, IME related events and other input events which are not handled
|
|
|
|
* by the frame of the mouse cursor position.
|
|
|
|
*
|
|
|
|
* NOTE: Even if this returns TRUE, the event isn't going to be handled by the
|
|
|
|
* application level active DOM window which is on another top level window.
|
|
|
|
* So, when the event is fired on a deactive window, the event is going to be
|
|
|
|
* handled by the last focused DOM element of the last focused DOM window in
|
|
|
|
* the last focused window.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
inline bool NS_IsEventTargetedAtFocusedContent(nsEvent* aEvent)
|
2010-06-15 05:05:37 +00:00
|
|
|
{
|
|
|
|
return NS_IS_KEY_EVENT(aEvent) || NS_IS_IME_RELATED_EVENT(aEvent) ||
|
2011-05-11 04:52:44 +00:00
|
|
|
NS_IS_CONTEXT_MENU_KEY(aEvent) ||
|
|
|
|
NS_IS_RETARGETED_PLUGIN_EVENT(aEvent);
|
2010-06-15 05:05:37 +00:00
|
|
|
}
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#endif // nsGUIEvent_h__
|