mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
548 lines
16 KiB
C++
548 lines
16 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_TextEvents_h__
|
|
#define mozilla_TextEvents_h__
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "mozilla/Assertions.h"
|
|
#include "mozilla/BasicEvents.h"
|
|
#include "mozilla/EventForwards.h" // for KeyNameIndex, temporarily
|
|
#include "nsColor.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIDOMKeyEvent.h"
|
|
#include "nsITransferable.h"
|
|
#include "nsRect.h"
|
|
#include "nsStringGlue.h"
|
|
#include "nsStyleConsts.h"
|
|
#include "nsTArray.h"
|
|
|
|
/******************************************************************************
|
|
* virtual keycode values
|
|
******************************************************************************/
|
|
|
|
#define NS_DEFINE_VK(aDOMKeyName, aDOMKeyCode) NS_##aDOMKeyName = aDOMKeyCode
|
|
|
|
enum
|
|
{
|
|
#include "nsVKList.h"
|
|
};
|
|
|
|
#undef NS_DEFINE_VK
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
class PBrowserParent;
|
|
class PBrowserChild;
|
|
} // namespace dom
|
|
namespace plugins {
|
|
class PPluginInstanceChild;
|
|
} // namespace plugins
|
|
|
|
/******************************************************************************
|
|
* mozilla::AlternativeCharCode
|
|
*
|
|
* This stores alternative charCode values of a key event with some modifiers.
|
|
* The stored values proper for testing shortcut key or access key.
|
|
******************************************************************************/
|
|
|
|
struct AlternativeCharCode
|
|
{
|
|
AlternativeCharCode(uint32_t aUnshiftedCharCode, uint32_t aShiftedCharCode) :
|
|
mUnshiftedCharCode(aUnshiftedCharCode), mShiftedCharCode(aShiftedCharCode)
|
|
{
|
|
}
|
|
uint32_t mUnshiftedCharCode;
|
|
uint32_t mShiftedCharCode;
|
|
};
|
|
|
|
/******************************************************************************
|
|
* mozilla::WidgetKeyboardEvent
|
|
******************************************************************************/
|
|
|
|
class WidgetKeyboardEvent : public WidgetInputEvent
|
|
{
|
|
private:
|
|
friend class dom::PBrowserParent;
|
|
friend class dom::PBrowserChild;
|
|
|
|
public:
|
|
WidgetKeyboardEvent()
|
|
{
|
|
}
|
|
|
|
WidgetKeyboardEvent(bool aIsTrusted, uint32_t aMessage, nsIWidget* aWidget) :
|
|
WidgetInputEvent(aIsTrusted, aMessage, aWidget, NS_KEY_EVENT),
|
|
keyCode(0), charCode(0),
|
|
location(nsIDOMKeyEvent::DOM_KEY_LOCATION_STANDARD), isChar(0),
|
|
mKeyNameIndex(mozilla::KEY_NAME_INDEX_Unidentified),
|
|
mNativeKeyEvent(nullptr),
|
|
mUniqueId(0)
|
|
{
|
|
}
|
|
|
|
// A DOM keyCode value or 0. If a keypress event whose charCode is 0, this
|
|
// should be 0.
|
|
uint32_t keyCode;
|
|
// If the instance is a keypress event of a printable key, this is a UTF-16
|
|
// value of the key. Otherwise, 0. This value must not be a control
|
|
// character when some modifiers are active. Then, this value should be an
|
|
// unmodified value except Shift and AltGr.
|
|
uint32_t charCode;
|
|
// One of nsIDOMKeyEvent::DOM_KEY_LOCATION_*
|
|
uint32_t location;
|
|
// OS translated Unicode chars which are used for accesskey and accelkey
|
|
// handling. The handlers will try from first character to last character.
|
|
nsTArray<AlternativeCharCode> alternativeCharCodes;
|
|
// Indicates whether the event signifies a printable character
|
|
bool isChar;
|
|
// DOM KeyboardEvent.key
|
|
KeyNameIndex mKeyNameIndex;
|
|
// OS-specific native event can optionally be preserved
|
|
void* mNativeKeyEvent;
|
|
// Unique id associated with a keydown / keypress event. Used in identifing
|
|
// keypress events for removal from async event dispatch queue in metrofx
|
|
// after preventDefault is called on keydown events. It's ok if this wraps
|
|
// over long periods.
|
|
uint32_t mUniqueId;
|
|
|
|
void GetDOMKeyName(nsAString& aKeyName)
|
|
{
|
|
GetDOMKeyName(mKeyNameIndex, aKeyName);
|
|
}
|
|
|
|
static void GetDOMKeyName(mozilla::KeyNameIndex aKeyNameIndex,
|
|
nsAString& aKeyName)
|
|
{
|
|
#define NS_DEFINE_KEYNAME(aCPPName, aDOMKeyName) \
|
|
case KEY_NAME_INDEX_##aCPPName: \
|
|
aKeyName.Assign(NS_LITERAL_STRING(aDOMKeyName)); return;
|
|
switch (aKeyNameIndex) {
|
|
#include "nsDOMKeyNameList.h"
|
|
default:
|
|
aKeyName.Truncate();
|
|
return;
|
|
}
|
|
#undef NS_DEFINE_KEYNAME
|
|
}
|
|
|
|
void AssignKeyEventData(const WidgetKeyboardEvent& aEvent, bool aCopyTargets)
|
|
{
|
|
AssignInputEventData(aEvent, aCopyTargets);
|
|
|
|
keyCode = aEvent.keyCode;
|
|
charCode = aEvent.charCode;
|
|
location = aEvent.location;
|
|
alternativeCharCodes = aEvent.alternativeCharCodes;
|
|
isChar = aEvent.isChar;
|
|
mKeyNameIndex = aEvent.mKeyNameIndex;
|
|
// Don't copy mNativeKeyEvent because it may be referred after its instance
|
|
// is destroyed.
|
|
mNativeKeyEvent = nullptr;
|
|
mUniqueId = aEvent.mUniqueId;
|
|
}
|
|
};
|
|
|
|
/******************************************************************************
|
|
* mozilla::TextRangeStyle
|
|
******************************************************************************/
|
|
|
|
struct TextRangeStyle
|
|
{
|
|
enum {
|
|
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
|
|
};
|
|
|
|
enum {
|
|
DEFINED_NONE = 0x00,
|
|
DEFINED_LINESTYLE = 0x01,
|
|
DEFINED_FOREGROUND_COLOR = 0x02,
|
|
DEFINED_BACKGROUND_COLOR = 0x04,
|
|
DEFINED_UNDERLINE_COLOR = 0x08
|
|
};
|
|
|
|
// Initialize all members, because TextRange instances may be compared by
|
|
// memcomp.
|
|
TextRangeStyle()
|
|
{
|
|
Clear();
|
|
}
|
|
|
|
void Clear()
|
|
{
|
|
mDefinedStyles = DEFINED_NONE;
|
|
mLineStyle = LINESTYLE_NONE;
|
|
mIsBoldLine = false;
|
|
mForegroundColor = mBackgroundColor = mUnderlineColor = NS_RGBA(0, 0, 0, 0);
|
|
}
|
|
|
|
bool IsDefined() const { return mDefinedStyles != DEFINED_NONE; }
|
|
|
|
bool IsLineStyleDefined() const
|
|
{
|
|
return (mDefinedStyles & DEFINED_LINESTYLE) != 0;
|
|
}
|
|
|
|
bool IsForegroundColorDefined() const
|
|
{
|
|
return (mDefinedStyles & DEFINED_FOREGROUND_COLOR) != 0;
|
|
}
|
|
|
|
bool IsBackgroundColorDefined() const
|
|
{
|
|
return (mDefinedStyles & DEFINED_BACKGROUND_COLOR) != 0;
|
|
}
|
|
|
|
bool IsUnderlineColorDefined() const
|
|
{
|
|
return (mDefinedStyles & DEFINED_UNDERLINE_COLOR) != 0;
|
|
}
|
|
|
|
bool IsNoChangeStyle() const
|
|
{
|
|
return !IsForegroundColorDefined() && !IsBackgroundColorDefined() &&
|
|
IsLineStyleDefined() && mLineStyle == LINESTYLE_NONE;
|
|
}
|
|
|
|
bool Equals(const nsTextRangeStyle& aOther)
|
|
{
|
|
if (mDefinedStyles != aOther.mDefinedStyles)
|
|
return false;
|
|
if (IsLineStyleDefined() && (mLineStyle != aOther.mLineStyle ||
|
|
!mIsBoldLine != !aOther.mIsBoldLine))
|
|
return false;
|
|
if (IsForegroundColorDefined() &&
|
|
(mForegroundColor != aOther.mForegroundColor))
|
|
return false;
|
|
if (IsBackgroundColorDefined() &&
|
|
(mBackgroundColor != aOther.mBackgroundColor))
|
|
return false;
|
|
if (IsUnderlineColorDefined() &&
|
|
(mUnderlineColor != aOther.mUnderlineColor))
|
|
return false;
|
|
return true;
|
|
}
|
|
|
|
bool operator !=(const TextRangeStyle &aOther)
|
|
{
|
|
return !Equals(aOther);
|
|
}
|
|
|
|
bool operator ==(const TextRangeStyle &aOther)
|
|
{
|
|
return Equals(aOther);
|
|
}
|
|
|
|
uint8_t mDefinedStyles;
|
|
uint8_t mLineStyle; // DEFINED_LINESTYLE
|
|
|
|
bool mIsBoldLine; // DEFINED_LINESTYLE
|
|
|
|
nscolor mForegroundColor; // DEFINED_FOREGROUND_COLOR
|
|
nscolor mBackgroundColor; // DEFINED_BACKGROUND_COLOR
|
|
nscolor mUnderlineColor; // DEFINED_UNDERLINE_COLOR
|
|
};
|
|
|
|
/******************************************************************************
|
|
* mozilla::TextRange
|
|
******************************************************************************/
|
|
|
|
// Sync with nsIPrivateTextRange.h when you change these constants.
|
|
#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
|
|
|
|
struct TextRange
|
|
{
|
|
TextRange() :
|
|
mStartOffset(0), mEndOffset(0), mRangeType(0)
|
|
{
|
|
}
|
|
|
|
uint32_t mStartOffset;
|
|
// XXX Storing end offset makes the initializing code very complicated.
|
|
// We should replace it with mLength.
|
|
uint32_t mEndOffset;
|
|
uint32_t mRangeType;
|
|
|
|
TextRangeStyle mRangeStyle;
|
|
|
|
uint32_t Length() const { return mEndOffset - mStartOffset; }
|
|
};
|
|
|
|
/******************************************************************************
|
|
* mozilla::TextRangeArray
|
|
*
|
|
* XXX This should be replaced with nsTArray<TextRange>.
|
|
******************************************************************************/
|
|
|
|
typedef TextRange* TextRangeArray;
|
|
|
|
/******************************************************************************
|
|
* mozilla::WidgetTextEvent
|
|
*
|
|
* XXX WidgetTextEvent is fired with compositionupdate event almost every time.
|
|
* This wastes performance and the cost of mantaining each platform's
|
|
* implementation. Therefore, we should merge WidgetTextEvent and
|
|
* WidgetCompositionEvent. Then, DOM compositionupdate should be fired
|
|
* from TextComposition automatically.
|
|
******************************************************************************/
|
|
|
|
class WidgetTextEvent : public WidgetGUIEvent
|
|
{
|
|
private:
|
|
friend class dom::PBrowserParent;
|
|
friend class dom::PBrowserChild;
|
|
friend class plugins::PPluginInstanceChild;
|
|
|
|
WidgetTextEvent()
|
|
{
|
|
}
|
|
|
|
public:
|
|
uint32_t seqno;
|
|
|
|
public:
|
|
WidgetTextEvent(bool aIsTrusted, uint32_t aMessage, nsIWidget* aWidget) :
|
|
WidgetGUIEvent(aIsTrusted, aMessage, aWidget, NS_TEXT_EVENT),
|
|
rangeCount(0), rangeArray(nullptr), isChar(false)
|
|
{
|
|
}
|
|
|
|
// The composition string or the commit string.
|
|
nsString theText;
|
|
// Count of rangeArray.
|
|
uint32_t rangeCount;
|
|
// Pointer to the first item of the ranges (clauses).
|
|
// 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.
|
|
nsTextRangeArray rangeArray;
|
|
// Indicates whether the event signifies printable text.
|
|
// XXX This is not a standard, and most platforms don't set this properly.
|
|
// So, perhaps, we can get rid of this.
|
|
bool isChar;
|
|
|
|
void AssignTextEventData(const WidgetTextEvent& aEvent, bool aCopyTargets)
|
|
{
|
|
AssignGUIEventData(aEvent, aCopyTargets);
|
|
|
|
isChar = aEvent.isChar;
|
|
|
|
// Currently, we don't need to copy the other members because they are
|
|
// for internal use only (not available from JS).
|
|
}
|
|
};
|
|
|
|
/******************************************************************************
|
|
* mozilla::WidgetCompositionEvent
|
|
******************************************************************************/
|
|
|
|
class WidgetCompositionEvent : public WidgetGUIEvent
|
|
{
|
|
private:
|
|
friend class mozilla::dom::PBrowserParent;
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
WidgetCompositionEvent()
|
|
{
|
|
}
|
|
|
|
public:
|
|
uint32_t seqno;
|
|
|
|
public:
|
|
WidgetCompositionEvent(bool aIsTrusted, uint32_t aMessage,
|
|
nsIWidget* aWidget) :
|
|
WidgetGUIEvent(aIsTrusted, aMessage, aWidget, NS_COMPOSITION_EVENT)
|
|
{
|
|
// 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.
|
|
mFlags.mCancelable = false;
|
|
}
|
|
|
|
// The composition string or the commit string. If the instance is a
|
|
// compositionstart event, this is initialized with selected text by
|
|
// TextComposition automatically.
|
|
nsString data;
|
|
|
|
void AssignCompositionEventData(const WidgetCompositionEvent& aEvent,
|
|
bool aCopyTargets)
|
|
{
|
|
AssignGUIEventData(aEvent, aCopyTargets);
|
|
|
|
data = aEvent.data;
|
|
}
|
|
};
|
|
|
|
/******************************************************************************
|
|
* mozilla::WidgetQueryContentEvent
|
|
******************************************************************************/
|
|
|
|
class WidgetQueryContentEvent : public WidgetGUIEvent
|
|
{
|
|
private:
|
|
friend class dom::PBrowserParent;
|
|
friend class dom::PBrowserChild;
|
|
|
|
WidgetQueryContentEvent()
|
|
{
|
|
MOZ_CRASH("WidgetQueryContentEvent is created without proper arguments");
|
|
}
|
|
|
|
public:
|
|
WidgetQueryContentEvent(bool aIsTrusted, uint32_t aMessage,
|
|
nsIWidget* aWidget) :
|
|
WidgetGUIEvent(aIsTrusted, aMessage, aWidget, NS_QUERY_CONTENT_EVENT),
|
|
mSucceeded(false), mWasAsync(false)
|
|
{
|
|
}
|
|
|
|
void InitForQueryTextContent(uint32_t aOffset, uint32_t aLength)
|
|
{
|
|
NS_ASSERTION(message == NS_QUERY_TEXT_CONTENT,
|
|
"wrong initializer is called");
|
|
mInput.mOffset = aOffset;
|
|
mInput.mLength = aLength;
|
|
}
|
|
|
|
void InitForQueryCaretRect(uint32_t aOffset)
|
|
{
|
|
NS_ASSERTION(message == NS_QUERY_CARET_RECT,
|
|
"wrong initializer is called");
|
|
mInput.mOffset = aOffset;
|
|
}
|
|
|
|
void InitForQueryTextRect(uint32_t aOffset, uint32_t aLength)
|
|
{
|
|
NS_ASSERTION(message == NS_QUERY_TEXT_RECT,
|
|
"wrong initializer is called");
|
|
mInput.mOffset = aOffset;
|
|
mInput.mLength = aLength;
|
|
}
|
|
|
|
void InitForQueryDOMWidgetHittest(const mozilla::LayoutDeviceIntPoint& aPoint)
|
|
{
|
|
NS_ASSERTION(message == NS_QUERY_DOM_WIDGET_HITTEST,
|
|
"wrong initializer is called");
|
|
refPoint = aPoint;
|
|
}
|
|
|
|
uint32_t GetSelectionStart(void) const
|
|
{
|
|
NS_ASSERTION(message == NS_QUERY_SELECTED_TEXT,
|
|
"not querying selection");
|
|
return mReply.mOffset + (mReply.mReversed ? mReply.mString.Length() : 0);
|
|
}
|
|
|
|
uint32_t GetSelectionEnd(void) const
|
|
{
|
|
NS_ASSERTION(message == NS_QUERY_SELECTED_TEXT,
|
|
"not querying selection");
|
|
return mReply.mOffset + (mReply.mReversed ? 0 : mReply.mString.Length());
|
|
}
|
|
|
|
bool mSucceeded;
|
|
bool mWasAsync;
|
|
struct
|
|
{
|
|
uint32_t mOffset;
|
|
uint32_t mLength;
|
|
} mInput;
|
|
struct
|
|
{
|
|
void* mContentsRoot;
|
|
uint32_t mOffset;
|
|
nsString mString;
|
|
// Finally, the coordinates is system coordinates.
|
|
nsIntRect mRect;
|
|
// The return widget has the caret. This is set at all query events.
|
|
nsIWidget* mFocusedWidget;
|
|
// true if selection is reversed (end < start)
|
|
bool mReversed;
|
|
// true if the selection exists
|
|
bool mHasSelection;
|
|
// true if DOM element under mouse belongs to widget
|
|
bool mWidgetIsHit;
|
|
// used by NS_QUERY_SELECTION_AS_TRANSFERABLE
|
|
nsCOMPtr<nsITransferable> mTransferable;
|
|
} mReply;
|
|
|
|
enum
|
|
{
|
|
NOT_FOUND = UINT32_MAX
|
|
};
|
|
|
|
// values of mComputedScrollAction
|
|
enum
|
|
{
|
|
SCROLL_ACTION_NONE,
|
|
SCROLL_ACTION_LINE,
|
|
SCROLL_ACTION_PAGE
|
|
};
|
|
};
|
|
|
|
/******************************************************************************
|
|
* mozilla::WidgetSelectionEvent
|
|
******************************************************************************/
|
|
|
|
class WidgetSelectionEvent : public WidgetGUIEvent
|
|
{
|
|
private:
|
|
friend class mozilla::dom::PBrowserParent;
|
|
friend class mozilla::dom::PBrowserChild;
|
|
|
|
WidgetSelectionEvent()
|
|
{
|
|
MOZ_CRASH("WidgetSelectionEvent is created without proper arguments");
|
|
}
|
|
|
|
public:
|
|
uint32_t seqno;
|
|
|
|
public:
|
|
WidgetSelectionEvent(bool aIsTrusted, uint32_t aMessage, nsIWidget* aWidget) :
|
|
WidgetGUIEvent(aIsTrusted, aMessage, aWidget, NS_SELECTION_EVENT),
|
|
mExpandToClusterBoundary(true), mSucceeded(false)
|
|
{
|
|
}
|
|
|
|
// Start offset of selection
|
|
uint32_t mOffset;
|
|
// Length of selection
|
|
uint32_t mLength;
|
|
// Selection "anchor" should be in front
|
|
bool mReversed;
|
|
// Cluster-based or character-based
|
|
bool mExpandToClusterBoundary;
|
|
// true if setting selection succeeded.
|
|
bool mSucceeded;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
// TODO: Remove following typedefs
|
|
typedef mozilla::AlternativeCharCode nsAlternativeCharCode;
|
|
typedef mozilla::WidgetKeyboardEvent nsKeyEvent;
|
|
typedef mozilla::TextRangeStyle nsTextRangeStyle;
|
|
typedef mozilla::TextRange nsTextRange;
|
|
typedef mozilla::TextRangeArray nsTextRangeArray;
|
|
typedef mozilla::WidgetTextEvent nsTextEvent;
|
|
typedef mozilla::WidgetCompositionEvent nsCompositionEvent;
|
|
typedef mozilla::WidgetQueryContentEvent nsQueryContentEvent;
|
|
typedef mozilla::WidgetSelectionEvent nsSelectionEvent;
|
|
|
|
#endif // mozilla_TextEvents_h__
|