icecat: add release icecat-140.9.0-1gnu1 for ecne
This commit is contained in:
parent
8eb1f1732f
commit
a5f93cb214
1197 changed files with 30593 additions and 15344 deletions
|
|
@ -54,7 +54,7 @@ enum class SystemGroupOnly { eYes, eNo };
|
|||
* Event messages
|
||||
*/
|
||||
|
||||
typedef uint16_t EventMessageType;
|
||||
using EventMessageType = uint16_t;
|
||||
|
||||
enum EventMessage : EventMessageType {
|
||||
|
||||
|
|
@ -102,19 +102,20 @@ const char* ToChar(EventMessage aEventMessage);
|
|||
* Event class IDs
|
||||
*/
|
||||
|
||||
typedef uint8_t EventClassIDType;
|
||||
using EventClassIDType = uint8_t;
|
||||
|
||||
enum EventClassID : EventClassIDType {
|
||||
// The event class name will be:
|
||||
// eBasicEventClass for WidgetEvent
|
||||
// eFooEventClass for WidgetFooEvent or InternalFooEvent
|
||||
#define NS_ROOT_EVENT_CLASS(aPrefix, aName) eBasic##aName##Class
|
||||
#define NS_EVENT_CLASS(aPrefix, aName) , e##aName##Class
|
||||
#define NS_ROOT_EVENT_CLASS(aPrefix, aName) eBasic##aName##Class,
|
||||
#define NS_EVENT_CLASS(aPrefix, aName) e##aName##Class,
|
||||
|
||||
#include "mozilla/EventClassList.h"
|
||||
|
||||
#undef NS_EVENT_CLASS
|
||||
#undef NS_ROOT_EVENT_CLASS
|
||||
eEventClassID_MaxValue
|
||||
};
|
||||
|
||||
const char* ToChar(EventClassID aEventClassID);
|
||||
|
|
@ -123,8 +124,7 @@ typedef uint16_t Modifiers;
|
|||
|
||||
#define NS_DEFINE_KEYNAME(aCPPName, aDOMKeyName) KEY_NAME_INDEX_##aCPPName,
|
||||
|
||||
typedef uint16_t KeyNameIndexType;
|
||||
enum KeyNameIndex : KeyNameIndexType {
|
||||
enum KeyNameIndex : uint16_t {
|
||||
#include "mozilla/KeyNameList.h"
|
||||
// If a DOM keyboard event is synthesized by script, this is used. Then,
|
||||
// specified key name should be stored and use it as .key value.
|
||||
|
|
@ -138,8 +138,7 @@ const nsCString ToString(KeyNameIndex aKeyNameIndex);
|
|||
#define NS_DEFINE_PHYSICAL_KEY_CODE_NAME(aCPPName, aDOMCodeName) \
|
||||
CODE_NAME_INDEX_##aCPPName,
|
||||
|
||||
typedef uint8_t CodeNameIndexType;
|
||||
enum CodeNameIndex : CodeNameIndexType {
|
||||
enum CodeNameIndex : uint8_t {
|
||||
#include "mozilla/PhysicalKeyCodeNameList.h"
|
||||
// If a DOM keyboard event is synthesized by script, this is used. Then,
|
||||
// specified code name should be stored and use it as .code value.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue