2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Makoto Kato <m_kato@ga2.so-net.ne.jp>
|
|
|
|
* Dean Tessman <dean_tessman@hotmail.com>
|
2008-10-23 13:15:20 -07:00
|
|
|
* Thomas K. Dyas <tdyas@zecador.org> (simple gestures support)
|
2009-12-17 10:42:02 -08:00
|
|
|
* Masayuki Nakano <masayuki@d-toybox.com>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef nsGUIEvent_h__
|
|
|
|
#define nsGUIEvent_h__
|
|
|
|
|
|
|
|
#include "nsPoint.h"
|
|
|
|
#include "nsRect.h"
|
2008-09-18 02:47:21 -07:00
|
|
|
#include "nsRegion.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsEvent.h"
|
|
|
|
#include "nsStringGlue.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
#include "nsIDOMKeyEvent.h"
|
2008-08-27 05:07:27 -07:00
|
|
|
#include "nsIDOMDataTransfer.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsWeakPtr.h"
|
2008-02-06 20:04:58 -08:00
|
|
|
#include "nsIWidget.h"
|
2008-04-14 21:16:24 -07:00
|
|
|
#include "nsTArray.h"
|
2008-04-17 15:38:35 -07:00
|
|
|
#include "nsTraceRefcnt.h"
|
2009-03-17 19:04:01 -07:00
|
|
|
#include "nsITransferable.h"
|
2009-09-01 09:45:05 -07:00
|
|
|
#include "nsIVariant.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsIRenderingContext;
|
|
|
|
class nsIRegion;
|
|
|
|
class nsIMenuItem;
|
|
|
|
class nsIAccessible;
|
|
|
|
class nsIContent;
|
|
|
|
class nsIURI;
|
|
|
|
class nsHashKey;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Event Struct Types
|
|
|
|
*/
|
|
|
|
#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_MENU_EVENT 11
|
|
|
|
#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
|
|
|
|
#define NS_MUTATION_EVENT 19 // |nsMutationEvent| in content
|
|
|
|
#define NS_ACCESSIBLE_EVENT 20
|
|
|
|
#define NS_FORM_EVENT 21
|
2009-10-01 10:53:10 -07:00
|
|
|
#define NS_FOCUS_EVENT 22
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_POPUP_EVENT 23
|
|
|
|
#define NS_COMMAND_EVENT 24
|
2009-09-11 16:13:56 -07:00
|
|
|
#define NS_SCROLLAREA_EVENT 25
|
2009-12-23 11:10:31 -08:00
|
|
|
#define NS_TRANSITION_EVENT 26
|
2009-06-24 01:42:00 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_UI_EVENT 27
|
|
|
|
#ifdef MOZ_SVG
|
|
|
|
#define NS_SVG_EVENT 30
|
|
|
|
#define NS_SVGZOOM_EVENT 31
|
|
|
|
#endif // MOZ_SVG
|
2009-06-30 00:56:40 -07:00
|
|
|
|
2008-02-19 23:40:04 -08:00
|
|
|
#define NS_QUERY_CONTENT_EVENT 33
|
2008-07-09 01:22:20 -07:00
|
|
|
#ifdef MOZ_MEDIA
|
|
|
|
#define NS_MEDIA_EVENT 34
|
|
|
|
#endif // MOZ_MEDIA
|
2008-08-27 05:07:27 -07:00
|
|
|
#define NS_DRAG_EVENT 35
|
2008-09-18 02:47:21 -07:00
|
|
|
#define NS_NOTIFYPAINT_EVENT 36
|
2008-10-23 13:15:20 -07:00
|
|
|
#define NS_SIMPLE_GESTURE_EVENT 37
|
2009-02-10 12:56:51 -08:00
|
|
|
#define NS_SELECTION_EVENT 38
|
2009-08-07 08:11:17 -07:00
|
|
|
#define NS_CONTENT_COMMAND_EVENT 39
|
2009-08-13 13:54:09 -07:00
|
|
|
#define NS_GESTURENOTIFY_EVENT 40
|
2007-03-22 10:30:00 -07: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!
|
|
|
|
#define NS_EVENT_FLAG_NONE 0x0000
|
|
|
|
#define NS_EVENT_FLAG_TRUSTED 0x0001
|
|
|
|
#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 13:09:48 -07:00
|
|
|
// Event has been dispatched at least once
|
|
|
|
#define NS_EVENT_DISPATCHED 0x0400
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_EVENT_FLAG_DISPATCHING 0x0800
|
2009-02-12 02:44:38 -08:00
|
|
|
// When an event is synthesized for testing, this flag will be set.
|
2009-10-02 14:06:42 -07: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
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-29 04:11:02 -07: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
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_PRIV_EVENT_UNTRUSTED_PERMITTED 0x8000
|
|
|
|
|
|
|
|
#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))
|
|
|
|
|
|
|
|
#define NS_EVENT_TYPE_NULL 0
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GUI MESSAGES
|
|
|
|
*/
|
|
|
|
//@{
|
|
|
|
#define NS_EVENT_NULL 0
|
|
|
|
|
|
|
|
|
|
|
|
#define NS_WINDOW_START 100
|
|
|
|
|
|
|
|
// Widget is being created
|
|
|
|
#define NS_CREATE (NS_WINDOW_START)
|
|
|
|
// 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)
|
2009-11-13 15:03:46 -08:00
|
|
|
// Widget will need to be painted
|
|
|
|
#define NS_WILL_PAINT (NS_WINDOW_START + 29)
|
2007-03-22 10:30:00 -07: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)
|
|
|
|
|
|
|
|
// Tab control's selected tab has changed
|
|
|
|
#define NS_TABCHANGE (NS_WINDOW_START + 35)
|
|
|
|
|
|
|
|
#define NS_OS_TOOLBAR (NS_WINDOW_START + 36)
|
|
|
|
|
|
|
|
// Menu item selected
|
|
|
|
#define NS_MENU_SELECTED (NS_WINDOW_START + 38)
|
|
|
|
|
|
|
|
// Form control changed: currently == combo box selection changed
|
|
|
|
// but could be expanded to mean textbox, checkbox changed, etc.
|
|
|
|
// This is a GUI specific event that does not necessarily correspond
|
|
|
|
// directly to a mouse click or a key press.
|
|
|
|
#define NS_CONTROL_CHANGE (NS_WINDOW_START + 39)
|
|
|
|
|
|
|
|
// Indicates the display has changed depth
|
|
|
|
#define NS_DISPLAYCHANGED (NS_WINDOW_START + 40)
|
|
|
|
|
|
|
|
// Indicates a theme change has occurred
|
|
|
|
#define NS_THEMECHANGED (NS_WINDOW_START + 41)
|
|
|
|
|
|
|
|
// Indicates a System color has changed. It is the platform
|
|
|
|
// toolkits responsibility to invalidate the window to
|
|
|
|
// ensure that it is drawn using the current system colors.
|
|
|
|
#define NS_SYSCOLORCHANGED (NS_WINDOW_START + 42)
|
|
|
|
|
|
|
|
#define NS_RESIZE_EVENT (NS_WINDOW_START + 60)
|
|
|
|
#define NS_SCROLL_EVENT (NS_WINDOW_START + 61)
|
|
|
|
|
|
|
|
#define NS_PLUGIN_ACTIVATE (NS_WINDOW_START + 62)
|
|
|
|
|
2007-06-06 20:28:04 -07:00
|
|
|
#define NS_OFFLINE (NS_WINDOW_START + 63)
|
|
|
|
#define NS_ONLINE (NS_WINDOW_START + 64)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_MOUSE_MESSAGE_START 300
|
|
|
|
#define NS_MOUSE_MOVE (NS_MOUSE_MESSAGE_START)
|
|
|
|
#define NS_MOUSE_BUTTON_UP (NS_MOUSE_MESSAGE_START + 1)
|
|
|
|
#define NS_MOUSE_BUTTON_DOWN (NS_MOUSE_MESSAGE_START + 2)
|
|
|
|
#define NS_MOUSE_ENTER (NS_MOUSE_MESSAGE_START + 22)
|
|
|
|
#define NS_MOUSE_EXIT (NS_MOUSE_MESSAGE_START + 23)
|
|
|
|
#define NS_MOUSE_DOUBLECLICK (NS_MOUSE_MESSAGE_START + 24)
|
|
|
|
#define NS_MOUSE_CLICK (NS_MOUSE_MESSAGE_START + 27)
|
|
|
|
#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)
|
|
|
|
|
|
|
|
#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
|
|
|
|
#define NS_LOAD (NS_STREAM_EVENT_START)
|
|
|
|
#define NS_PAGE_UNLOAD (NS_STREAM_EVENT_START + 1)
|
2009-06-26 10:16:50 -07:00
|
|
|
#define NS_HASHCHANGE (NS_STREAM_EVENT_START + 2)
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_IMAGE_ABORT (NS_STREAM_EVENT_START + 3)
|
|
|
|
#define NS_LOAD_ERROR (NS_STREAM_EVENT_START + 4)
|
2009-09-01 09:45:05 -07:00
|
|
|
#define NS_POPSTATE (NS_STREAM_EVENT_START + 5)
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_BEFORE_PAGE_UNLOAD (NS_STREAM_EVENT_START + 6)
|
|
|
|
#define NS_PAGE_RESTORE (NS_STREAM_EVENT_START + 7)
|
|
|
|
|
|
|
|
#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)
|
|
|
|
|
|
|
|
//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 05:07:27 -07:00
|
|
|
#define NS_DRAGDROP_DRAGDROP (NS_DRAGDROP_EVENT_START + 3)
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_DRAGDROP_GESTURE (NS_DRAGDROP_EVENT_START + 4)
|
2007-04-11 21:37:39 -07:00
|
|
|
#define NS_DRAGDROP_DRAG (NS_DRAGDROP_EVENT_START + 5)
|
|
|
|
#define NS_DRAGDROP_END (NS_DRAGDROP_EVENT_START + 6)
|
2008-08-27 05:07:27 -07:00
|
|
|
#define NS_DRAGDROP_START (NS_DRAGDROP_EVENT_START + 7)
|
|
|
|
#define NS_DRAGDROP_DROP (NS_DRAGDROP_EVENT_START + 8)
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_DRAGDROP_OVER_SYNTH (NS_DRAGDROP_EVENT_START + 1)
|
|
|
|
#define NS_DRAGDROP_EXIT_SYNTH (NS_DRAGDROP_EVENT_START + 2)
|
2008-08-27 05:07:27 -07:00
|
|
|
#define NS_DRAGDROP_LEAVE_SYNTH (NS_DRAGDROP_EVENT_START + 9)
|
2007-03-22 10:30:00 -07: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)
|
|
|
|
// NS_XUL_COMMAND used to be here (NS_XUL_EVENT_START+4)
|
|
|
|
#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 04:27:19 -07:00
|
|
|
#define NS_MOUSE_PIXEL_SCROLL (NS_MOUSE_SCROLL_START + 1)
|
2007-03-22 10:30:00 -07: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)
|
|
|
|
|
|
|
|
// text events
|
|
|
|
#define NS_TEXT_START 2400
|
|
|
|
#define NS_TEXT_TEXT (NS_TEXT_START)
|
|
|
|
|
|
|
|
// UI events
|
|
|
|
#define NS_UI_EVENT_START 2500
|
|
|
|
// this is not to be confused with NS_ACTIVATE!
|
|
|
|
#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)
|
|
|
|
|
|
|
|
// pagetransition events
|
|
|
|
#define NS_PAGETRANSITION_START 2700
|
|
|
|
#define NS_PAGE_SHOW (NS_PAGETRANSITION_START + 1)
|
|
|
|
#define NS_PAGE_HIDE (NS_PAGETRANSITION_START + 2)
|
|
|
|
|
|
|
|
#ifdef MOZ_SVG
|
|
|
|
// 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)
|
|
|
|
#endif // MOZ_SVG
|
|
|
|
|
|
|
|
// XUL command events
|
|
|
|
#define NS_XULCOMMAND_EVENT_START 3000
|
|
|
|
#define NS_XUL_COMMAND (NS_XULCOMMAND_EVENT_START)
|
|
|
|
|
2007-07-25 21:14:33 -07: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-19 23:40:04 -08: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 12:56:51 -08:00
|
|
|
// Returns the entire text if requested length > actual length.
|
2008-02-19 23:40:04 -08: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 12:56:51 -08: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-14 17:46:24 -07:00
|
|
|
#define NS_QUERY_EDITOR_RECT (NS_QUERY_CONTENT_EVENT_START + 5)
|
2009-03-17 19:04:01 -07: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-14 17:46:24 -07:00
|
|
|
#define NS_QUERY_CONTENT_STATE (NS_QUERY_CONTENT_EVENT_START + 6)
|
2009-03-17 19:04:01 -07: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-14 17:46:24 -07: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)
|
2008-02-19 23:40:04 -08:00
|
|
|
|
2008-07-09 01:22:20 -07:00
|
|
|
// Video events
|
|
|
|
#ifdef MOZ_MEDIA
|
|
|
|
#define NS_MEDIA_EVENT_START 3300
|
|
|
|
#define NS_LOADSTART (NS_MEDIA_EVENT_START)
|
|
|
|
#define NS_PROGRESS (NS_MEDIA_EVENT_START+1)
|
2009-02-26 03:55:30 -08: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)
|
|
|
|
#define NS_MEDIA_ABORT (NS_MEDIA_EVENT_START+20)
|
|
|
|
#define NS_MEDIA_ERROR (NS_MEDIA_EVENT_START+21)
|
2008-07-09 01:22:20 -07:00
|
|
|
#endif // MOZ_MEDIA
|
|
|
|
|
2008-09-18 02:47:21 -07:00
|
|
|
// paint notification events
|
|
|
|
#define NS_NOTIFYPAINT_START 3400
|
|
|
|
#define NS_AFTERPAINT (NS_NOTIFYPAINT_START)
|
|
|
|
|
2008-10-23 13:15:20 -07: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 12:34:31 -07:00
|
|
|
#define NS_SIMPLE_GESTURE_TAP (NS_SIMPLE_GESTURE_EVENT_START+7)
|
|
|
|
#define NS_SIMPLE_GESTURE_PRESSTAP (NS_SIMPLE_GESTURE_EVENT_START+8)
|
2008-10-23 13:15:20 -07:00
|
|
|
|
2008-12-14 19:54:54 -08:00
|
|
|
// Plug-in event. This is used when a plug-in has focus and when the native
|
|
|
|
// event needs to be passed to the focused plug-in directly.
|
|
|
|
#define NS_PLUGIN_EVENT_START 3600
|
|
|
|
#define NS_PLUGIN_EVENT (NS_PLUGIN_EVENT_START)
|
|
|
|
|
2009-02-10 12:56:51 -08: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 08:11:17 -07: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-10 17:45:45 -08:00
|
|
|
#define NS_CONTENT_COMMAND_PASTE_TRANSFERABLE (NS_CONTENT_COMMAND_EVENT_START+6)
|
2009-08-07 08:11:17 -07:00
|
|
|
|
2009-08-13 13:54:09 -07:00
|
|
|
// Event to gesture notification
|
|
|
|
#define NS_GESTURENOTIFY_EVENT_START 3900
|
|
|
|
|
2009-08-21 10:28:52 -07:00
|
|
|
#define NS_ORIENTATION_EVENT 4000
|
|
|
|
|
2009-09-11 16:13:56 -07:00
|
|
|
#define NS_SCROLLAREA_EVENT_START 4100
|
|
|
|
#define NS_SCROLLEDAREACHANGED (NS_SCROLLAREA_EVENT_START)
|
|
|
|
|
2009-12-23 11:10:31 -08:00
|
|
|
#define NS_TRANSITION_EVENT_START 4200
|
|
|
|
#define NS_TRANSITION_END (NS_TRANSITION_EVENT_START)
|
2009-09-11 16:13:56 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Return status for event processors, nsEventStatus, is defined in
|
|
|
|
* nsEvent.h.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* different types of (top-level) window z-level positioning
|
|
|
|
*/
|
|
|
|
enum nsWindowZ {
|
|
|
|
nsWindowZTop = 0, // on top
|
|
|
|
nsWindowZBottom, // on bottom
|
|
|
|
nsWindowZRelative // just below some specified widget
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* General event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsEvent
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
nsEvent(PRBool isTrusted, PRUint32 msg, PRUint8 structType)
|
|
|
|
: eventStructType(structType),
|
|
|
|
message(msg),
|
|
|
|
refPoint(0, 0),
|
|
|
|
time(0),
|
|
|
|
flags(isTrusted ? NS_EVENT_FLAG_TRUSTED : NS_EVENT_FLAG_NONE),
|
|
|
|
userType(0)
|
|
|
|
{
|
2008-04-17 15:38:35 -07:00
|
|
|
MOZ_COUNT_CTOR(nsEvent);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsEvent(PRBool isTrusted, PRUint32 msg)
|
|
|
|
: eventStructType(NS_EVENT),
|
|
|
|
message(msg),
|
|
|
|
refPoint(0, 0),
|
|
|
|
time(0),
|
|
|
|
flags(isTrusted ? NS_EVENT_FLAG_TRUSTED : NS_EVENT_FLAG_NONE),
|
|
|
|
userType(0)
|
|
|
|
{
|
2008-04-17 15:38:35 -07:00
|
|
|
MOZ_COUNT_CTOR(nsEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
~nsEvent()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsEvent);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// See event struct types
|
|
|
|
PRUint8 eventStructType;
|
|
|
|
// See GUI MESSAGES,
|
|
|
|
PRUint32 message;
|
|
|
|
// In widget relative coordinates, not modified by layout code.
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntPoint refPoint;
|
2007-03-22 10:30:00 -07:00
|
|
|
// Elapsed time, in milliseconds, from a platform-specific zero time
|
|
|
|
// to the time the message was created
|
|
|
|
PRUint32 time;
|
|
|
|
// Flags to hold event flow stage and capture/bubble cancellation
|
|
|
|
// status. This is used also to indicate whether the event is trusted.
|
|
|
|
PRUint32 flags;
|
|
|
|
// Additional type info for user defined events
|
|
|
|
nsCOMPtr<nsIAtom> userType;
|
|
|
|
// Event targets, needed by DOM Events
|
|
|
|
// Using nsISupports, not nsIDOMEventTarget because in some cases
|
|
|
|
// nsIDOMEventTarget is implemented as a tearoff.
|
|
|
|
nsCOMPtr<nsISupports> target;
|
|
|
|
nsCOMPtr<nsISupports> currentTarget;
|
|
|
|
nsCOMPtr<nsISupports> originalTarget;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* General graphic user interface event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsGUIEvent : public nsEvent
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
nsGUIEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w, PRUint8 structType)
|
|
|
|
: nsEvent(isTrusted, msg, structType),
|
2009-11-10 13:55:38 -08:00
|
|
|
widget(w), pluginEvent(nsnull)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsGUIEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsEvent(isTrusted, msg, NS_GUI_EVENT),
|
2009-11-10 13:55:38 -08:00
|
|
|
widget(w), pluginEvent(nsnull)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Originator of the event
|
2008-10-27 13:16:23 -07:00
|
|
|
nsCOMPtr<nsIWidget> widget;
|
|
|
|
|
2009-11-10 13:55:38 -08:00
|
|
|
/// Event for NPAPI plugin
|
|
|
|
void* pluginEvent;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Script error event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsScriptErrorEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsScriptErrorEvent(PRBool isTrusted, PRUint32 msg)
|
|
|
|
: nsEvent(isTrusted, msg, NS_SCRIPT_ERROR_EVENT),
|
|
|
|
lineNr(0), errorMsg(nsnull), fileName(nsnull)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 lineNr;
|
|
|
|
const PRUnichar* errorMsg;
|
|
|
|
const PRUnichar* fileName;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Window resize event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsSizeEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsSizeEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SIZE_EVENT),
|
|
|
|
windowSize(nsnull), mWinWidth(0), mWinHeight(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// x,y width, height in pixels (client area)
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntRect *windowSize;
|
2007-03-22 10:30:00 -07:00
|
|
|
/// width of entire window (in pixels)
|
|
|
|
PRInt32 mWinWidth;
|
|
|
|
/// height of entire window (in pixels)
|
|
|
|
PRInt32 mWinHeight;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Window size mode event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsSizeModeEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsSizeModeEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SIZEMODE_EVENT),
|
|
|
|
mSizeMode(nsSizeMode_Normal)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSizeMode mSizeMode;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Window z-level event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsZLevelEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsZLevelEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_ZLEVEL_EVENT),
|
|
|
|
mPlacement(nsWindowZTop), mReqBelow(nsnull), mActualBelow(nsnull),
|
|
|
|
mImmediate(PR_FALSE), mAdjusted(PR_FALSE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsWindowZ mPlacement;
|
|
|
|
nsIWidget *mReqBelow, // widget we request being below, if any
|
|
|
|
*mActualBelow; // widget to be below, returned by handler
|
|
|
|
PRBool mImmediate, // handler should make changes immediately
|
|
|
|
mAdjusted; // handler changed placement
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Window repaint event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsPaintEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsPaintEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_PAINT_EVENT),
|
|
|
|
renderingContext(nsnull), region(nsnull), rect(nsnull)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Context to paint in.
|
|
|
|
nsIRenderingContext *renderingContext;
|
|
|
|
/// area to paint (should be used instead of rect)
|
|
|
|
nsIRegion *region;
|
|
|
|
/// x,y, width, height in pixels of area to paint
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntRect *rect;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Scrollbar event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsScrollbarEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsScrollbarEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SCROLLBAR_EVENT),
|
|
|
|
position(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ranges between scrollbar 0 and (maxRange - thumbSize). See nsIScrollbar
|
|
|
|
PRUint32 position;
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsScrollPortEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum orientType {
|
|
|
|
vertical = 0,
|
|
|
|
horizontal = 1,
|
|
|
|
both = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
nsScrollPortEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SCROLLPORT_EVENT),
|
|
|
|
orient(vertical)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
orientType orient;
|
|
|
|
};
|
|
|
|
|
2009-09-11 16:13:56 -07:00
|
|
|
class nsScrollAreaEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsScrollAreaEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_SCROLLAREA_EVENT)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect mArea;
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsInputEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
nsInputEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w,
|
|
|
|
PRUint8 structType)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, structType),
|
|
|
|
isShift(PR_FALSE), isControl(PR_FALSE), isAlt(PR_FALSE), isMeta(PR_FALSE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
nsInputEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_INPUT_EVENT),
|
|
|
|
isShift(PR_FALSE), isControl(PR_FALSE), isAlt(PR_FALSE), isMeta(PR_FALSE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// PR_TRUE indicates the shift key is down
|
|
|
|
PRBool isShift;
|
|
|
|
/// PR_TRUE indicates the control key is down
|
|
|
|
PRBool isControl;
|
|
|
|
/// PR_TRUE indicates the alt key is down
|
|
|
|
PRBool isAlt;
|
|
|
|
/// PR_TRUE indicates the meta key is down (or, on Mac, the Command key)
|
|
|
|
PRBool isMeta;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mouse event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsMouseEvent_base : public nsInputEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsMouseEvent_base(PRBool isTrusted, PRUint32 msg, nsIWidget *w, PRUint8 type)
|
2008-12-11 15:55:15 -08:00
|
|
|
: nsInputEvent(isTrusted, msg, w, type), button(0), pressure(0) {}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/// The possible related target
|
|
|
|
nsCOMPtr<nsISupports> relatedTarget;
|
|
|
|
|
|
|
|
PRInt16 button;
|
2008-12-11 15:55:15 -08:00
|
|
|
|
|
|
|
// Finger or touch pressure of event
|
|
|
|
// ranges between 0.0 and 1.0
|
|
|
|
float pressure;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsMouseEvent : public nsMouseEvent_base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum buttonType { eLeftButton = 0, eMiddleButton = 1, eRightButton = 2 };
|
|
|
|
enum reasonType { eReal, eSynthesized };
|
|
|
|
enum contextType { eNormal, eContextMenuKey };
|
2008-03-12 15:44:45 -07:00
|
|
|
enum exitType { eChild, eTopLevel };
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-27 05:07:27 -07:00
|
|
|
protected:
|
|
|
|
nsMouseEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w,
|
|
|
|
PRUint8 structType, reasonType aReason)
|
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, structType),
|
2008-11-28 11:53:33 -08:00
|
|
|
acceptActivation(PR_FALSE), ignoreRootScrollFrame(PR_FALSE),
|
2008-10-28 15:47:37 -07:00
|
|
|
reason(aReason), context(eNormal), exit(eChild), clickCount(0)
|
2008-08-27 05:07:27 -07:00
|
|
|
{
|
|
|
|
if (msg == NS_MOUSE_MOVE) {
|
|
|
|
flags |= NS_EVENT_FLAG_CANT_CANCEL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMouseEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w,
|
|
|
|
reasonType aReason, contextType aContext = eNormal)
|
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, NS_MOUSE_EVENT),
|
2008-11-28 11:53:33 -08:00
|
|
|
acceptActivation(PR_FALSE), ignoreRootScrollFrame(PR_FALSE),
|
2008-10-28 15:47:37 -07:00
|
|
|
reason(aReason), context(aContext), exit(eChild), clickCount(0)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (msg == NS_MOUSE_MOVE) {
|
|
|
|
flags |= NS_EVENT_FLAG_CANT_CANCEL;
|
|
|
|
} else if (msg == NS_CONTEXTMENU) {
|
2007-09-18 00:25:49 -07:00
|
|
|
button = (context == eNormal) ? eRightButton : eLeftButton;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
~nsMouseEvent() {
|
2007-09-18 00:25:49 -07:00
|
|
|
NS_WARN_IF_FALSE(message != NS_CONTEXTMENU ||
|
|
|
|
button ==
|
|
|
|
((context == eNormal) ? eRightButton : eLeftButton),
|
2007-03-22 10:30:00 -07:00
|
|
|
"Wrong button set to NS_CONTEXTMENU event?");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/// Special return code for MOUSE_ACTIVATE to signal
|
|
|
|
/// if the target accepts activation (1), or denies it (0)
|
|
|
|
PRPackedBool acceptActivation;
|
2008-10-27 13:16:23 -07:00
|
|
|
// Whether the event should ignore scroll frame bounds
|
|
|
|
// during dispatch.
|
2008-11-28 11:53:33 -08:00
|
|
|
PRPackedBool ignoreRootScrollFrame;
|
2008-10-27 13:16:23 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
reasonType reason : 4;
|
|
|
|
contextType context : 4;
|
2008-03-12 15:44:45 -07:00
|
|
|
exitType exit;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/// The number of mouse clicks
|
|
|
|
PRUint32 clickCount;
|
|
|
|
};
|
|
|
|
|
2008-08-27 05:07:27 -07:00
|
|
|
/**
|
|
|
|
* Drag event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsDragEvent : public nsMouseEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDragEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
2009-02-17 07:51:12 -08:00
|
|
|
: nsMouseEvent(isTrusted, msg, w, NS_DRAG_EVENT, eReal),
|
|
|
|
userCancelled(PR_FALSE)
|
2008-08-27 05:07:27 -07: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;
|
2009-02-17 07:51:12 -08:00
|
|
|
PRPackedBool userCancelled;
|
2008-08-27 05:07:27 -07:00
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Accessible event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsAccessibleEvent : public nsInputEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsAccessibleEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsInputEvent(isTrusted, msg, w, NS_ACCESSIBLE_EVENT),
|
|
|
|
accessible(nsnull)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAccessible* accessible;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Keyboard event
|
|
|
|
*/
|
|
|
|
|
2008-04-14 21:16:24 -07:00
|
|
|
struct nsAlternativeCharCode {
|
|
|
|
nsAlternativeCharCode(PRUint32 aUnshiftedCharCode,
|
|
|
|
PRUint32 aShiftedCharCode) :
|
|
|
|
mUnshiftedCharCode(aUnshiftedCharCode), mShiftedCharCode(aShiftedCharCode)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
PRUint32 mUnshiftedCharCode;
|
|
|
|
PRUint32 mShiftedCharCode;
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsKeyEvent : public nsInputEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsKeyEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsInputEvent(isTrusted, msg, w, NS_KEY_EVENT),
|
|
|
|
keyCode(0), charCode(0), isChar(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// see NS_VK codes
|
|
|
|
PRUint32 keyCode;
|
|
|
|
/// OS translated Unicode char
|
|
|
|
PRUint32 charCode;
|
2008-04-14 21:16:24 -07: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;
|
2007-03-22 10:30:00 -07:00
|
|
|
// indicates whether the event signifies a printable character
|
|
|
|
PRBool isChar;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* IME Related Events
|
|
|
|
*/
|
2009-04-22 20:27:12 -07:00
|
|
|
|
|
|
|
struct nsTextRangeStyle
|
|
|
|
{
|
|
|
|
enum {
|
|
|
|
LINESTYLE_NONE = 0,
|
|
|
|
LINESTYLE_SOLID = 1,
|
|
|
|
LINESTYLE_DOTTED = 2,
|
|
|
|
LINESTYLE_DASHED = 3,
|
|
|
|
LINESTYLE_DOUBLE = 4,
|
|
|
|
LINESTYLE_WAVY = 5
|
|
|
|
};
|
|
|
|
|
|
|
|
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-14 17:45:15 -07:00
|
|
|
nsTextRangeStyle()
|
2009-04-22 20:27:12 -07:00
|
|
|
{
|
2009-05-14 17:45:15 -07:00
|
|
|
Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Clear()
|
|
|
|
{
|
|
|
|
mDefinedStyles = DEFINED_NONE;
|
|
|
|
mLineStyle = LINESTYLE_NONE;
|
|
|
|
mIsBoldLine = PR_FALSE;
|
|
|
|
mForegroundColor = mBackgroundColor = mUnderlineColor = NS_RGBA(0, 0, 0, 0);
|
2009-04-22 20:27:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsDefined() const { return mDefinedStyles != DEFINED_NONE; }
|
|
|
|
|
|
|
|
PRBool IsLineStyleDefined() const
|
|
|
|
{
|
|
|
|
return (mDefinedStyles & DEFINED_LINESTYLE) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsForegroundColorDefined() const
|
|
|
|
{
|
|
|
|
return (mDefinedStyles & DEFINED_FOREGROUND_COLOR) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsBackgroundColorDefined() const
|
|
|
|
{
|
|
|
|
return (mDefinedStyles & DEFINED_BACKGROUND_COLOR) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsUnderlineColorDefined() const
|
|
|
|
{
|
|
|
|
return (mDefinedStyles & DEFINED_UNDERLINE_COLOR) != 0;
|
|
|
|
}
|
|
|
|
|
2009-05-14 17:45:15 -07:00
|
|
|
PRBool IsNoChangeStyle() const
|
|
|
|
{
|
|
|
|
return !IsForegroundColorDefined() && !IsBackgroundColorDefined() &&
|
|
|
|
IsLineStyleDefined() && mLineStyle == LINESTYLE_NONE;
|
|
|
|
}
|
|
|
|
|
2009-04-22 20:27:12 -07:00
|
|
|
PRBool Equals(const nsTextRangeStyle& aOther)
|
|
|
|
{
|
|
|
|
if (mDefinedStyles != aOther.mDefinedStyles)
|
|
|
|
return PR_FALSE;
|
|
|
|
if (IsLineStyleDefined() && (mLineStyle != aOther.mLineStyle ||
|
|
|
|
!mIsBoldLine != !aOther.mIsBoldLine))
|
|
|
|
return PR_FALSE;
|
|
|
|
if (IsForegroundColorDefined() &&
|
|
|
|
(mForegroundColor != aOther.mForegroundColor))
|
|
|
|
return PR_FALSE;
|
|
|
|
if (IsBackgroundColorDefined() &&
|
|
|
|
(mBackgroundColor != aOther.mBackgroundColor))
|
|
|
|
return PR_FALSE;
|
|
|
|
if (IsUnderlineColorDefined() &&
|
|
|
|
(mUnderlineColor != aOther.mUnderlineColor))
|
|
|
|
return PR_FALSE;
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool operator !=(const nsTextRangeStyle &aOther)
|
|
|
|
{
|
|
|
|
return !Equals(aOther);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool operator ==(const nsTextRangeStyle &aOther)
|
|
|
|
{
|
|
|
|
return Equals(aOther);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint8 mDefinedStyles;
|
|
|
|
PRUint8 mLineStyle; // DEFINED_LINESTYLE
|
|
|
|
|
|
|
|
PRPackedBool mIsBoldLine; // DEFINED_LINESTYLE
|
|
|
|
|
|
|
|
nscolor mForegroundColor; // DEFINED_FOREGROUND_COLOR
|
|
|
|
nscolor mBackgroundColor; // DEFINED_BACKGROUND_COLOR
|
|
|
|
nscolor mUnderlineColor; // DEFINED_UNDERLINE_COLOR
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
struct nsTextRange
|
|
|
|
{
|
|
|
|
nsTextRange()
|
|
|
|
: mStartOffset(0), mEndOffset(0), mRangeType(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 mStartOffset;
|
|
|
|
PRUint32 mEndOffset;
|
|
|
|
PRUint32 mRangeType;
|
2009-04-22 20:27:12 -07:00
|
|
|
|
|
|
|
nsTextRangeStyle mRangeStyle;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef nsTextRange* nsTextRangeArray;
|
|
|
|
|
2009-11-16 05:13:02 -08:00
|
|
|
// XXX We should drop this struct because the results are provided by query
|
|
|
|
// content events now, so, this struct finished the role.
|
2007-03-22 10:30:00 -07:00
|
|
|
struct nsTextEventReply
|
|
|
|
{
|
|
|
|
nsTextEventReply()
|
2008-07-30 09:12:49 -07:00
|
|
|
: mCursorIsCollapsed(PR_FALSE), mReferenceWidget(nsnull)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntRect mCursorPosition;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool mCursorIsCollapsed;
|
2008-07-30 09:12:49 -07:00
|
|
|
nsIWidget* mReferenceWidget;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct nsTextEventReply nsTextEventReply;
|
|
|
|
|
|
|
|
class nsTextEvent : public nsInputEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsTextEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsInputEvent(isTrusted, msg, w, NS_TEXT_EVENT),
|
2009-02-10 12:56:51 -08:00
|
|
|
rangeCount(0), rangeArray(nsnull), isChar(PR_FALSE)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-02-10 12:56:51 -08:00
|
|
|
nsString theText;
|
2009-11-16 05:13:02 -08:00
|
|
|
nsTextEventReply theReply; // OBSOLETE
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 rangeCount;
|
2008-12-17 00:05:44 -08: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.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTextRangeArray rangeArray;
|
|
|
|
PRBool isChar;
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsCompositionEvent : public nsInputEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsCompositionEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsInputEvent(isTrusted, msg, w, NS_COMPOSITION_EVENT)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-11-16 05:13:02 -08:00
|
|
|
nsTextEventReply theReply; // OBSOLETE
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2008-09-17 04:27:19 -07:00
|
|
|
/* Mouse Scroll Events: Line Scrolling, Pixel Scrolling and Common Event Flows
|
|
|
|
*
|
|
|
|
* There are two common event flows:
|
|
|
|
* (1) Normal line scrolling:
|
|
|
|
* 1. An NS_MOUSE_SCROLL event without kHasPixels is dispatched to Gecko.
|
|
|
|
* 2. A DOMMouseScroll event is sent into the DOM.
|
|
|
|
* 3. A MozMousePixelScroll event is sent into the DOM.
|
|
|
|
* 4. If neither event has been consumed, the default handling of the
|
|
|
|
* NS_MOUSE_SCROLL event is executed.
|
|
|
|
*
|
|
|
|
* (2) Pixel scrolling:
|
|
|
|
* 1. An NS_MOUSE_SCROLL event with kHasPixels is dispatched to Gecko.
|
|
|
|
* 2. A DOMMouseScroll event is sent into the DOM.
|
|
|
|
* 3. No scrolling takes place in the default handler.
|
|
|
|
* 4. An NS_MOUSE_PIXEL_SCROLL event is dispatched to Gecko.
|
|
|
|
* 5. A MozMousePixelScroll event is sent into the DOM.
|
|
|
|
* 6. If neither the NS_MOUSE_PIXELSCROLL event nor the preceding
|
|
|
|
* NS_MOUSE_SCROLL event have been consumed, the default handler scrolls.
|
|
|
|
* 7. Steps 4.-6. are repeated for every pixel scroll that belongs to
|
|
|
|
* the announced line scroll. Once enough pixels have been sent to
|
|
|
|
* complete a line, a new NS_MOUSE_SCROLL event is sent (goto step 1.).
|
|
|
|
*
|
|
|
|
* If a DOMMouseScroll event has been preventDefaulted, the associated
|
|
|
|
* following MozMousePixelScroll events are still sent - they just don't result
|
|
|
|
* in any scrolling (their default handler isn't executed).
|
|
|
|
*
|
|
|
|
* How many pixel scrolls make up one line scroll is decided in the widget layer
|
|
|
|
* where the NS_MOUSE(_PIXEL)_SCROLL events are created.
|
|
|
|
*
|
|
|
|
* This event flow model satisfies several requirements:
|
|
|
|
* - DOMMouseScroll handlers don't need to be aware of the existence of pixel
|
|
|
|
* scrolling.
|
|
|
|
* - preventDefault on a DOMMouseScroll event results in no scrolling.
|
|
|
|
* - DOMMouseScroll events aren't polluted with a kHasPixels flag.
|
|
|
|
* - You can make use of pixel scroll DOM events (MozMousePixelScroll).
|
|
|
|
*/
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsMouseScrollEvent : public nsMouseEvent_base
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum nsMouseScrollFlags {
|
|
|
|
kIsFullPage = 1 << 0,
|
|
|
|
kIsVertical = 1 << 1,
|
|
|
|
kIsHorizontal = 1 << 2,
|
2009-04-02 12:34:31 -07:00
|
|
|
kHasPixels = 1 << 3, // Marks line scroll events that are provided as
|
2008-09-17 04:27:19 -07:00
|
|
|
// a fallback for pixel scroll events.
|
|
|
|
// These scroll events are used by things that can't
|
|
|
|
// be scrolled pixel-wise, like trees. You should
|
|
|
|
// ignore them when processing pixel scroll events
|
|
|
|
// to avoid double-processing the same scroll gesture.
|
|
|
|
// When kHasPixels is set, the event is guaranteed to
|
|
|
|
// be followed up by an event that contains pixel
|
|
|
|
// scrolling information.
|
2009-05-19 19:05:59 -07:00
|
|
|
kNoLines = 1 << 4, // Marks pixel scroll events that will not be
|
2009-04-02 12:34:31 -07:00
|
|
|
// followed by a line scroll events. EventStateManager
|
|
|
|
// will compute the appropriate height/width based on
|
|
|
|
// view lineHeight and generate line scroll events
|
|
|
|
// as needed.
|
2009-05-19 19:05:59 -07:00
|
|
|
kNoDefer = 1 << 5 // For scrollable views, indicates scroll should not
|
|
|
|
// occur asynchronously.
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nsMouseScrollEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, NS_MOUSE_SCROLL_EVENT),
|
2009-05-19 19:05:59 -07:00
|
|
|
scrollFlags(0), delta(0), scrollOverflow(0)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 scrollFlags;
|
|
|
|
PRInt32 delta;
|
2009-05-19 19:05:59 -07:00
|
|
|
PRInt32 scrollOverflow;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2009-08-13 13:54:09 -07: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;
|
|
|
|
PRPackedBool displayPanFeedback;
|
|
|
|
|
|
|
|
nsGestureNotifyEvent(PRBool aIsTrusted, PRUint32 aMsg, nsIWidget *aWidget):
|
|
|
|
nsGUIEvent(aIsTrusted, aMsg, aWidget, NS_GESTURENOTIFY_EVENT),
|
|
|
|
panDirection(ePanNone),
|
|
|
|
displayPanFeedback(PR_FALSE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-02-19 23:40:04 -08:00
|
|
|
class nsQueryContentEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsQueryContentEvent(PRBool aIsTrusted, PRUint32 aMsg, nsIWidget *aWidget) :
|
|
|
|
nsGUIEvent(aIsTrusted, aMsg, aWidget, NS_QUERY_CONTENT_EVENT),
|
|
|
|
mSucceeded(PR_FALSE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
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 12:56:51 -08:00
|
|
|
void InitForQueryCaretRect(PRUint32 aOffset)
|
2008-02-19 23:40:04 -08:00
|
|
|
{
|
2009-02-10 12:56:51 -08:00
|
|
|
NS_ASSERTION(message == NS_QUERY_CARET_RECT,
|
2008-02-19 23:40:04 -08:00
|
|
|
"wrong initializer is called");
|
|
|
|
mInput.mOffset = aOffset;
|
|
|
|
}
|
|
|
|
|
2009-02-10 12:56:51 -08:00
|
|
|
void InitForQueryTextRect(PRUint32 aOffset, PRUint32 aLength)
|
2008-02-19 23:40:04 -08:00
|
|
|
{
|
2009-02-10 12:56:51 -08:00
|
|
|
NS_ASSERTION(message == NS_QUERY_TEXT_RECT,
|
2008-02-19 23:40:04 -08:00
|
|
|
"wrong initializer is called");
|
|
|
|
mInput.mOffset = aOffset;
|
2009-02-10 12:56:51 -08:00
|
|
|
mInput.mLength = aLength;
|
2008-02-19 23:40:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool mSucceeded;
|
|
|
|
struct {
|
|
|
|
PRUint32 mOffset;
|
|
|
|
PRUint32 mLength;
|
|
|
|
} mInput;
|
|
|
|
struct {
|
|
|
|
void* mContentsRoot;
|
|
|
|
PRUint32 mOffset;
|
|
|
|
nsString mString;
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntRect mRect; // Finally, the coordinates is system coordinates.
|
2008-08-11 01:27:59 -07:00
|
|
|
// The return widget has the caret. This is set at all query events.
|
|
|
|
nsIWidget* mFocusedWidget;
|
2009-02-10 12:56:51 -08:00
|
|
|
PRPackedBool mReversed; // true if selection is reversed (end < start)
|
2009-03-17 19:04:01 -07:00
|
|
|
PRPackedBool mHasSelection; // true if the selection exists
|
|
|
|
// used by NS_QUERY_SELECTION_AS_TRANSFERABLE
|
|
|
|
nsCOMPtr<nsITransferable> mTransferable;
|
2008-02-19 23:40:04 -08:00
|
|
|
} mReply;
|
2009-05-14 17:46:24 -07:00
|
|
|
|
|
|
|
enum {
|
|
|
|
NOT_FOUND = PR_UINT32_MAX
|
|
|
|
};
|
2008-02-19 23:40:04 -08:00
|
|
|
};
|
|
|
|
|
2009-10-01 10:53:10 -07:00
|
|
|
class nsFocusEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsFocusEvent(PRBool isTrusted, PRUint32 msg)
|
|
|
|
: nsEvent(isTrusted, msg, NS_FOCUS_EVENT),
|
|
|
|
fromRaise(PR_FALSE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRPackedBool fromRaise;
|
|
|
|
};
|
|
|
|
|
2009-02-10 12:56:51 -08:00
|
|
|
class nsSelectionEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsSelectionEvent(PRBool aIsTrusted, PRUint32 aMsg, nsIWidget *aWidget) :
|
|
|
|
nsGUIEvent(aIsTrusted, aMsg, aWidget, NS_SELECTION_EVENT),
|
|
|
|
mSucceeded(PR_FALSE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 mOffset; // start offset of selection
|
|
|
|
PRUint32 mLength; // length of selection
|
|
|
|
PRPackedBool mReversed; // selection "anchor" should be in front
|
|
|
|
PRPackedBool mSucceeded;
|
|
|
|
};
|
|
|
|
|
2009-08-07 08:11:17 -07:00
|
|
|
class nsContentCommandEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsContentCommandEvent(PRBool aIsTrusted, PRUint32 aMsg, nsIWidget *aWidget,
|
|
|
|
PRBool aOnlyEnabledCheck = PR_FALSE) :
|
|
|
|
nsGUIEvent(aIsTrusted, aMsg, aWidget, NS_CONTENT_COMMAND_EVENT),
|
|
|
|
mOnlyEnabledCheck(PRPackedBool(aOnlyEnabledCheck)),
|
|
|
|
mSucceeded(PR_FALSE), mIsEnabled(PR_FALSE)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-01-10 17:45:45 -08:00
|
|
|
nsCOMPtr<nsITransferable> mTransferable; // [in]
|
2009-08-07 08:11:17 -07:00
|
|
|
PRPackedBool mOnlyEnabledCheck; // [in]
|
|
|
|
|
|
|
|
PRPackedBool mSucceeded; // [out]
|
|
|
|
PRPackedBool mIsEnabled; // [out]
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* MenuItem event
|
|
|
|
*
|
|
|
|
* When this event occurs the widget field in nsGUIEvent holds the "target"
|
|
|
|
* for the event
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsMenuEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsMenuEvent(PRBool isTrusted, PRUint32 msg, nsIWidget *w)
|
|
|
|
: nsGUIEvent(isTrusted, msg, w, NS_MENU_EVENT),
|
|
|
|
mMenuItem(nsnull), mCommand(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIMenuItem * mMenuItem;
|
|
|
|
PRUint32 mCommand;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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).
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsFormEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsFormEvent(PRBool isTrusted, PRUint32 msg)
|
|
|
|
: nsEvent(isTrusted, msg, NS_FORM_EVENT),
|
|
|
|
originator(nsnull)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIContent *originator;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Command event
|
|
|
|
*
|
|
|
|
* Custom commands for example from the operating system.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsCommandEvent : public nsGUIEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsCommandEvent(PRBool isTrusted, nsIAtom* aEventType,
|
|
|
|
nsIAtom* aCommand, nsIWidget* w)
|
|
|
|
: nsGUIEvent(isTrusted, NS_USER_DEFINED_EVENT, w, NS_COMMAND_EVENT)
|
|
|
|
{
|
|
|
|
userType = aEventType;
|
|
|
|
command = aCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> command;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DOM UIEvent
|
|
|
|
*/
|
|
|
|
class nsUIEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsUIEvent(PRBool isTrusted, PRUint32 msg, PRInt32 d)
|
|
|
|
: nsEvent(isTrusted, msg, NS_UI_EVENT),
|
|
|
|
detail(d)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 detail;
|
|
|
|
};
|
|
|
|
|
2008-10-23 13:15:20 -07:00
|
|
|
/**
|
|
|
|
* Simple gesture event
|
|
|
|
*/
|
2009-02-17 03:49:03 -08:00
|
|
|
class nsSimpleGestureEvent : public nsMouseEvent_base
|
2008-10-23 13:15:20 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsSimpleGestureEvent(PRBool isTrusted, PRUint32 msg, nsIWidget* w,
|
|
|
|
PRUint32 directionArg, PRFloat64 deltaArg)
|
2009-02-17 03:49:03 -08:00
|
|
|
: nsMouseEvent_base(isTrusted, msg, w, NS_SIMPLE_GESTURE_EVENT),
|
2008-10-23 13:15:20 -07:00
|
|
|
direction(directionArg), delta(deltaArg)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 direction; // See nsIDOMSimpleGestureEvent for values
|
|
|
|
PRFloat64 delta; // Delta for magnify and rotate events
|
|
|
|
};
|
|
|
|
|
2009-12-23 11:10:31 -08:00
|
|
|
class nsTransitionEvent : public nsEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsTransitionEvent(PRBool isTrusted, PRUint32 msg,
|
|
|
|
const nsString &propertyNameArg, float elapsedTimeArg)
|
|
|
|
: nsEvent(isTrusted, msg, NS_TRANSITION_EVENT),
|
|
|
|
propertyName(propertyNameArg), elapsedTime(elapsedTimeArg)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsString propertyName;
|
|
|
|
float elapsedTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Event status for D&D Event
|
|
|
|
*/
|
|
|
|
enum nsDragDropEventStatus {
|
|
|
|
/// The event is a enter
|
|
|
|
nsDragDropEventStatus_eDragEntered,
|
|
|
|
/// The event is exit
|
|
|
|
nsDragDropEventStatus_eDragExited,
|
|
|
|
/// The event is drop
|
|
|
|
nsDragDropEventStatus_eDrop
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define NS_IS_MOUSE_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_MOUSE_BUTTON_DOWN) || \
|
|
|
|
((evnt)->message == NS_MOUSE_BUTTON_UP) || \
|
|
|
|
((evnt)->message == NS_MOUSE_CLICK) || \
|
|
|
|
((evnt)->message == NS_MOUSE_DOUBLECLICK) || \
|
|
|
|
((evnt)->message == NS_MOUSE_ENTER) || \
|
|
|
|
((evnt)->message == NS_MOUSE_EXIT) || \
|
|
|
|
((evnt)->message == NS_MOUSE_ACTIVATE) || \
|
|
|
|
((evnt)->message == NS_MOUSE_ENTER_SYNTH) || \
|
|
|
|
((evnt)->message == NS_MOUSE_EXIT_SYNTH) || \
|
|
|
|
((evnt)->message == NS_MOUSE_MOVE))
|
|
|
|
|
|
|
|
#define NS_IS_MOUSE_LEFT_CLICK(evnt) \
|
|
|
|
((evnt)->eventStructType == NS_MOUSE_EVENT && \
|
|
|
|
(evnt)->message == NS_MOUSE_CLICK && \
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsMouseEvent*>((evnt))->button == nsMouseEvent::eLeftButton)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#define NS_IS_CONTEXT_MENU_KEY(evnt) \
|
|
|
|
((evnt)->eventStructType == NS_MOUSE_EVENT && \
|
|
|
|
(evnt)->message == NS_CONTEXTMENU && \
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsMouseEvent*>((evnt))->context == nsMouseEvent::eContextMenuKey)
|
2007-03-22 10:30:00 -07: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 05:07:27 -07:00
|
|
|
((evnt)->message == NS_DRAGDROP_DRAGDROP) || \
|
2008-08-25 08:08:28 -07:00
|
|
|
((evnt)->message == NS_DRAGDROP_GESTURE) || \
|
2008-08-27 05:07:27 -07: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))
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#define NS_IS_KEY_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_KEY_DOWN) || \
|
|
|
|
((evnt)->message == NS_KEY_PRESS) || \
|
|
|
|
((evnt)->message == NS_KEY_UP))
|
|
|
|
|
|
|
|
#define NS_IS_IME_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_TEXT_TEXT) || \
|
|
|
|
((evnt)->message == NS_COMPOSITION_START) || \
|
2009-11-16 05:13:02 -08:00
|
|
|
((evnt)->message == NS_COMPOSITION_END))
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-01 10:53:10 -07: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 11:00:39 -07:00
|
|
|
(((evnt)->message == NS_ACTIVATE) || \
|
2007-03-22 10:30:00 -07:00
|
|
|
((evnt)->message == NS_DEACTIVATE) || \
|
|
|
|
((evnt)->message == NS_PLUGIN_ACTIVATE))
|
|
|
|
|
2008-02-19 23:40:04 -08:00
|
|
|
#define NS_IS_QUERY_CONTENT_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_QUERY_SELECTED_TEXT) || \
|
|
|
|
((evnt)->message == NS_QUERY_TEXT_CONTENT) || \
|
2009-02-10 12:56:51 -08:00
|
|
|
((evnt)->message == NS_QUERY_CARET_RECT) || \
|
|
|
|
((evnt)->message == NS_QUERY_TEXT_RECT) || \
|
2009-05-14 17:46:24 -07:00
|
|
|
((evnt)->message == NS_QUERY_EDITOR_RECT) || \
|
|
|
|
((evnt)->message == NS_QUERY_CONTENT_STATE) || \
|
|
|
|
((evnt)->message == NS_QUERY_SELECTION_AS_TRANSFERABLE) || \
|
|
|
|
((evnt)->message == NS_QUERY_CHARACTER_AT_POINT))
|
2009-02-10 12:56:51 -08:00
|
|
|
|
|
|
|
#define NS_IS_SELECTION_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_SELECTION_SET))
|
2008-02-19 23:40:04 -08:00
|
|
|
|
2009-08-07 08:11:17 -07:00
|
|
|
#define NS_IS_CONTENT_COMMAND_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_CONTENT_COMMAND_CUT) || \
|
|
|
|
((evnt)->message == NS_CONTENT_COMMAND_COPY) || \
|
|
|
|
((evnt)->message == NS_CONTENT_COMMAND_PASTE) || \
|
|
|
|
((evnt)->message == NS_CONTENT_COMMAND_DELETE) || \
|
|
|
|
((evnt)->message == NS_CONTENT_COMMAND_UNDO) || \
|
|
|
|
((evnt)->message == NS_CONTENT_COMMAND_REDO))
|
|
|
|
|
2008-12-14 19:54:54 -08:00
|
|
|
#define NS_IS_PLUGIN_EVENT(evnt) \
|
|
|
|
(((evnt)->message == NS_PLUGIN_EVENT))
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_IS_TRUSTED_EVENT(event) \
|
|
|
|
(((event)->flags & NS_EVENT_FLAG_TRUSTED) != 0)
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
|
|
|
|
// 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 13:09:48 -07:00
|
|
|
(event)->flags |= NS_EVENT_DISPATCHED;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-12-17 10:42:02 -08: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) || \
|
|
|
|
NS_IS_QUERY_CONTENT_EVENT(evnt) || \
|
|
|
|
NS_IS_SELECTION_EVENT(evnt))
|
|
|
|
|
2007-03-22 10:30:00 -07: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NS_VK_CANCEL nsIDOMKeyEvent::DOM_VK_CANCEL
|
2007-04-11 16:44:19 -07:00
|
|
|
#define NS_VK_HELP nsIDOMKeyEvent::DOM_VK_HELP
|
2007-03-22 10:30:00 -07:00
|
|
|
#define NS_VK_BACK nsIDOMKeyEvent::DOM_VK_BACK_SPACE
|
|
|
|
#define NS_VK_TAB nsIDOMKeyEvent::DOM_VK_TAB
|
|
|
|
#define NS_VK_CLEAR nsIDOMKeyEvent::DOM_VK_CLEAR
|
|
|
|
#define NS_VK_RETURN nsIDOMKeyEvent::DOM_VK_RETURN
|
|
|
|
#define NS_VK_ENTER nsIDOMKeyEvent::DOM_VK_ENTER
|
|
|
|
#define NS_VK_SHIFT nsIDOMKeyEvent::DOM_VK_SHIFT
|
|
|
|
#define NS_VK_CONTROL nsIDOMKeyEvent::DOM_VK_CONTROL
|
|
|
|
#define NS_VK_ALT nsIDOMKeyEvent::DOM_VK_ALT
|
|
|
|
#define NS_VK_PAUSE nsIDOMKeyEvent::DOM_VK_PAUSE
|
|
|
|
#define NS_VK_CAPS_LOCK nsIDOMKeyEvent::DOM_VK_CAPS_LOCK
|
|
|
|
#define NS_VK_ESCAPE nsIDOMKeyEvent::DOM_VK_ESCAPE
|
|
|
|
#define NS_VK_SPACE nsIDOMKeyEvent::DOM_VK_SPACE
|
|
|
|
#define NS_VK_PAGE_UP nsIDOMKeyEvent::DOM_VK_PAGE_UP
|
|
|
|
#define NS_VK_PAGE_DOWN nsIDOMKeyEvent::DOM_VK_PAGE_DOWN
|
|
|
|
#define NS_VK_END nsIDOMKeyEvent::DOM_VK_END
|
|
|
|
#define NS_VK_HOME nsIDOMKeyEvent::DOM_VK_HOME
|
|
|
|
#define NS_VK_LEFT nsIDOMKeyEvent::DOM_VK_LEFT
|
|
|
|
#define NS_VK_UP nsIDOMKeyEvent::DOM_VK_UP
|
|
|
|
#define NS_VK_RIGHT nsIDOMKeyEvent::DOM_VK_RIGHT
|
|
|
|
#define NS_VK_DOWN nsIDOMKeyEvent::DOM_VK_DOWN
|
|
|
|
#define NS_VK_PRINTSCREEN nsIDOMKeyEvent::DOM_VK_PRINTSCREEN
|
|
|
|
#define NS_VK_INSERT nsIDOMKeyEvent::DOM_VK_INSERT
|
|
|
|
#define NS_VK_DELETE nsIDOMKeyEvent::DOM_VK_DELETE
|
|
|
|
|
|
|
|
// NS_VK_0 - NS_VK_9 match their ascii values
|
|
|
|
#define NS_VK_0 nsIDOMKeyEvent::DOM_VK_0
|
|
|
|
#define NS_VK_1 nsIDOMKeyEvent::DOM_VK_1
|
|
|
|
#define NS_VK_2 nsIDOMKeyEvent::DOM_VK_2
|
|
|
|
#define NS_VK_3 nsIDOMKeyEvent::DOM_VK_3
|
|
|
|
#define NS_VK_4 nsIDOMKeyEvent::DOM_VK_4
|
|
|
|
#define NS_VK_5 nsIDOMKeyEvent::DOM_VK_5
|
|
|
|
#define NS_VK_6 nsIDOMKeyEvent::DOM_VK_6
|
|
|
|
#define NS_VK_7 nsIDOMKeyEvent::DOM_VK_7
|
|
|
|
#define NS_VK_8 nsIDOMKeyEvent::DOM_VK_8
|
|
|
|
#define NS_VK_9 nsIDOMKeyEvent::DOM_VK_9
|
|
|
|
|
|
|
|
#define NS_VK_SEMICOLON nsIDOMKeyEvent::DOM_VK_SEMICOLON
|
|
|
|
#define NS_VK_EQUALS nsIDOMKeyEvent::DOM_VK_EQUALS
|
|
|
|
|
|
|
|
// NS_VK_A - NS_VK_Z match their ascii values
|
|
|
|
#define NS_VK_A nsIDOMKeyEvent::DOM_VK_A
|
|
|
|
#define NS_VK_B nsIDOMKeyEvent::DOM_VK_B
|
|
|
|
#define NS_VK_C nsIDOMKeyEvent::DOM_VK_C
|
|
|
|
#define NS_VK_D nsIDOMKeyEvent::DOM_VK_D
|
|
|
|
#define NS_VK_E nsIDOMKeyEvent::DOM_VK_E
|
|
|
|
#define NS_VK_F nsIDOMKeyEvent::DOM_VK_F
|
|
|
|
#define NS_VK_G nsIDOMKeyEvent::DOM_VK_G
|
|
|
|
#define NS_VK_H nsIDOMKeyEvent::DOM_VK_H
|
|
|
|
#define NS_VK_I nsIDOMKeyEvent::DOM_VK_I
|
|
|
|
#define NS_VK_J nsIDOMKeyEvent::DOM_VK_J
|
|
|
|
#define NS_VK_K nsIDOMKeyEvent::DOM_VK_K
|
|
|
|
#define NS_VK_L nsIDOMKeyEvent::DOM_VK_L
|
|
|
|
#define NS_VK_M nsIDOMKeyEvent::DOM_VK_M
|
|
|
|
#define NS_VK_N nsIDOMKeyEvent::DOM_VK_N
|
|
|
|
#define NS_VK_O nsIDOMKeyEvent::DOM_VK_O
|
|
|
|
#define NS_VK_P nsIDOMKeyEvent::DOM_VK_P
|
|
|
|
#define NS_VK_Q nsIDOMKeyEvent::DOM_VK_Q
|
|
|
|
#define NS_VK_R nsIDOMKeyEvent::DOM_VK_R
|
|
|
|
#define NS_VK_S nsIDOMKeyEvent::DOM_VK_S
|
|
|
|
#define NS_VK_T nsIDOMKeyEvent::DOM_VK_T
|
|
|
|
#define NS_VK_U nsIDOMKeyEvent::DOM_VK_U
|
|
|
|
#define NS_VK_V nsIDOMKeyEvent::DOM_VK_V
|
|
|
|
#define NS_VK_W nsIDOMKeyEvent::DOM_VK_W
|
|
|
|
#define NS_VK_X nsIDOMKeyEvent::DOM_VK_X
|
|
|
|
#define NS_VK_Y nsIDOMKeyEvent::DOM_VK_Y
|
|
|
|
#define NS_VK_Z nsIDOMKeyEvent::DOM_VK_Z
|
|
|
|
|
|
|
|
#define NS_VK_CONTEXT_MENU nsIDOMKeyEvent::DOM_VK_CONTEXT_MENU
|
|
|
|
|
|
|
|
#define NS_VK_NUMPAD0 nsIDOMKeyEvent::DOM_VK_NUMPAD0
|
|
|
|
#define NS_VK_NUMPAD1 nsIDOMKeyEvent::DOM_VK_NUMPAD1
|
|
|
|
#define NS_VK_NUMPAD2 nsIDOMKeyEvent::DOM_VK_NUMPAD2
|
|
|
|
#define NS_VK_NUMPAD3 nsIDOMKeyEvent::DOM_VK_NUMPAD3
|
|
|
|
#define NS_VK_NUMPAD4 nsIDOMKeyEvent::DOM_VK_NUMPAD4
|
|
|
|
#define NS_VK_NUMPAD5 nsIDOMKeyEvent::DOM_VK_NUMPAD5
|
|
|
|
#define NS_VK_NUMPAD6 nsIDOMKeyEvent::DOM_VK_NUMPAD6
|
|
|
|
#define NS_VK_NUMPAD7 nsIDOMKeyEvent::DOM_VK_NUMPAD7
|
|
|
|
#define NS_VK_NUMPAD8 nsIDOMKeyEvent::DOM_VK_NUMPAD8
|
|
|
|
#define NS_VK_NUMPAD9 nsIDOMKeyEvent::DOM_VK_NUMPAD9
|
|
|
|
#define NS_VK_MULTIPLY nsIDOMKeyEvent::DOM_VK_MULTIPLY
|
|
|
|
#define NS_VK_ADD nsIDOMKeyEvent::DOM_VK_ADD
|
|
|
|
#define NS_VK_SEPARATOR nsIDOMKeyEvent::DOM_VK_SEPARATOR
|
|
|
|
#define NS_VK_SUBTRACT nsIDOMKeyEvent::DOM_VK_SUBTRACT
|
|
|
|
#define NS_VK_DECIMAL nsIDOMKeyEvent::DOM_VK_DECIMAL
|
|
|
|
#define NS_VK_DIVIDE nsIDOMKeyEvent::DOM_VK_DIVIDE
|
|
|
|
#define NS_VK_F1 nsIDOMKeyEvent::DOM_VK_F1
|
|
|
|
#define NS_VK_F2 nsIDOMKeyEvent::DOM_VK_F2
|
|
|
|
#define NS_VK_F3 nsIDOMKeyEvent::DOM_VK_F3
|
|
|
|
#define NS_VK_F4 nsIDOMKeyEvent::DOM_VK_F4
|
|
|
|
#define NS_VK_F5 nsIDOMKeyEvent::DOM_VK_F5
|
|
|
|
#define NS_VK_F6 nsIDOMKeyEvent::DOM_VK_F6
|
|
|
|
#define NS_VK_F7 nsIDOMKeyEvent::DOM_VK_F7
|
|
|
|
#define NS_VK_F8 nsIDOMKeyEvent::DOM_VK_F8
|
|
|
|
#define NS_VK_F9 nsIDOMKeyEvent::DOM_VK_F9
|
|
|
|
#define NS_VK_F10 nsIDOMKeyEvent::DOM_VK_F10
|
|
|
|
#define NS_VK_F11 nsIDOMKeyEvent::DOM_VK_F11
|
|
|
|
#define NS_VK_F12 nsIDOMKeyEvent::DOM_VK_F12
|
|
|
|
#define NS_VK_F13 nsIDOMKeyEvent::DOM_VK_F13
|
|
|
|
#define NS_VK_F14 nsIDOMKeyEvent::DOM_VK_F14
|
|
|
|
#define NS_VK_F15 nsIDOMKeyEvent::DOM_VK_F15
|
|
|
|
#define NS_VK_F16 nsIDOMKeyEvent::DOM_VK_F16
|
|
|
|
#define NS_VK_F17 nsIDOMKeyEvent::DOM_VK_F17
|
|
|
|
#define NS_VK_F18 nsIDOMKeyEvent::DOM_VK_F18
|
|
|
|
#define NS_VK_F19 nsIDOMKeyEvent::DOM_VK_F19
|
|
|
|
#define NS_VK_F20 nsIDOMKeyEvent::DOM_VK_F20
|
|
|
|
#define NS_VK_F21 nsIDOMKeyEvent::DOM_VK_F21
|
|
|
|
#define NS_VK_F22 nsIDOMKeyEvent::DOM_VK_F22
|
|
|
|
#define NS_VK_F23 nsIDOMKeyEvent::DOM_VK_F23
|
|
|
|
#define NS_VK_F24 nsIDOMKeyEvent::DOM_VK_F24
|
|
|
|
|
|
|
|
#define NS_VK_NUM_LOCK nsIDOMKeyEvent::DOM_VK_NUM_LOCK
|
|
|
|
#define NS_VK_SCROLL_LOCK nsIDOMKeyEvent::DOM_VK_SCROLL_LOCK
|
|
|
|
|
|
|
|
#define NS_VK_COMMA nsIDOMKeyEvent::DOM_VK_COMMA
|
|
|
|
#define NS_VK_PERIOD nsIDOMKeyEvent::DOM_VK_PERIOD
|
|
|
|
#define NS_VK_SLASH nsIDOMKeyEvent::DOM_VK_SLASH
|
|
|
|
#define NS_VK_BACK_QUOTE nsIDOMKeyEvent::DOM_VK_BACK_QUOTE
|
|
|
|
#define NS_VK_OPEN_BRACKET nsIDOMKeyEvent::DOM_VK_OPEN_BRACKET
|
|
|
|
#define NS_VK_BACK_SLASH nsIDOMKeyEvent::DOM_VK_BACK_SLASH
|
|
|
|
#define NS_VK_CLOSE_BRACKET nsIDOMKeyEvent::DOM_VK_CLOSE_BRACKET
|
|
|
|
#define NS_VK_QUOTE nsIDOMKeyEvent::DOM_VK_QUOTE
|
|
|
|
|
|
|
|
#define NS_VK_META nsIDOMKeyEvent::DOM_VK_META
|
|
|
|
|
2008-12-17 00:05:44 -08: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
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-03-05 11:27:54 -08:00
|
|
|
inline PRBool NS_TargetUnfocusedEventToLastFocusedContent(nsEvent* aEvent)
|
2008-02-19 23:16:06 -08:00
|
|
|
{
|
|
|
|
#if defined(MOZ_X11) || defined(XP_MACOSX)
|
|
|
|
// bug 52416 (MOZ_X11)
|
|
|
|
// Lookup region (candidate window) of UNIX IME grabs
|
|
|
|
// input focus from Mozilla but wants to send IME event
|
|
|
|
// to redraw pre-edit (composed) string
|
|
|
|
// If Mozilla does not have input focus and event is IME,
|
|
|
|
// sends IME event to pre-focused element
|
|
|
|
|
|
|
|
// bug 417315 (XP_MACOSX)
|
|
|
|
// The commit event when the window is deactivating is sent after
|
|
|
|
// the next focused widget getting the focus.
|
|
|
|
// We need to send the commit event to last focused content.
|
|
|
|
|
2009-12-17 10:42:02 -08:00
|
|
|
return NS_IS_IME_RELATED_EVENT(aEvent);
|
2008-02-19 23:16:06 -08:00
|
|
|
#elif defined(XP_WIN)
|
|
|
|
// bug 292263 (XP_WIN)
|
|
|
|
// If software keyboard has focus, it may send the key messages and
|
|
|
|
// the IME messages to pre-focused window. Therefore, if Mozilla
|
|
|
|
// doesn't have focus and event is key event or IME event, we should
|
|
|
|
// send the events to pre-focused element.
|
|
|
|
|
2009-12-17 10:42:02 -08:00
|
|
|
return NS_IS_KEY_EVENT(aEvent) || NS_IS_IME_RELATED_EVENT(aEvent) ||
|
2009-08-07 08:11:17 -07:00
|
|
|
NS_IS_PLUGIN_EVENT(aEvent) || NS_IS_CONTENT_COMMAND_EVENT(aEvent);
|
2008-02-19 23:16:06 -08:00
|
|
|
#else
|
|
|
|
return PR_FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-12-17 10:42:02 -08: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.
|
|
|
|
*/
|
2009-08-07 08:11:17 -07:00
|
|
|
inline PRBool NS_IsEventUsingCoordinates(nsEvent* aEvent)
|
|
|
|
{
|
2009-12-17 10:42:02 -08:00
|
|
|
return !NS_IS_KEY_EVENT(aEvent) && !NS_IS_IME_RELATED_EVENT(aEvent) &&
|
2009-10-01 10:53:10 -07:00
|
|
|
!NS_IS_CONTEXT_MENU_KEY(aEvent) && !NS_IS_ACTIVATION_EVENT(aEvent) &&
|
2009-12-17 10:42:02 -08:00
|
|
|
!NS_IS_PLUGIN_EVENT(aEvent) && !NS_IS_CONTENT_COMMAND_EVENT(aEvent) &&
|
2009-08-07 08:11:17 -07:00
|
|
|
aEvent->eventStructType != NS_ACCESSIBLE_EVENT;
|
|
|
|
}
|
|
|
|
|
2009-12-17 10:42:02 -08: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.
|
|
|
|
*/
|
2009-08-07 08:11:17 -07:00
|
|
|
inline PRBool NS_IsEventTargetedAtFocusedWindow(nsEvent* aEvent)
|
|
|
|
{
|
2009-12-27 22:26:47 -08:00
|
|
|
return NS_IS_KEY_EVENT(aEvent) || NS_IS_IME_RELATED_EVENT(aEvent) ||
|
2009-08-07 08:11:17 -07:00
|
|
|
NS_IS_CONTEXT_MENU_KEY(aEvent) || NS_IS_CONTENT_COMMAND_EVENT(aEvent);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif // nsGUIEvent_h__
|