-
Notifications
You must be signed in to change notification settings - Fork 0
@ralphschuler.webgl shader factory.<internal>.MouseEvent
@ralphschuler/webgl-shader-factory.<internal>.MouseEvent
Events that occur due to the user interacting with a pointing device (such as a mouse). Common events using this interface include click, dblclick, mouseup, mousedown.
-
↳
MouseEvent
- AT_TARGET
- BUBBLING_PHASE
- CAPTURING_PHASE
- NONE
- altKey
- bubbles
- button
- buttons
- cancelBubble
- cancelable
- clientX
- clientY
- composed
- ctrlKey
- currentTarget
- defaultPrevented
- detail
- eventPhase
- isTrusted
- metaKey
- movementX
- movementY
- offsetX
- offsetY
- pageX
- pageY
- relatedTarget
- returnValue
- screenX
- screenY
- shiftKey
- srcElement
- target
- timeStamp
- type
- view
- which
- x
- y
- composedPath
- getModifierState
- initEvent
- initMouseEvent
- initUIEvent
- preventDefault
- stopImmediatePropagation
- stopPropagation
• Readonly
AT_TARGET: 2
UIEvent.AT_TARGET
node_modules/typescript/lib/lib.dom.d.ts:8100
• Readonly
BUBBLING_PHASE: 3
UIEvent.BUBBLING_PHASE
node_modules/typescript/lib/lib.dom.d.ts:8101
• Readonly
CAPTURING_PHASE: 1
UIEvent.CAPTURING_PHASE
node_modules/typescript/lib/lib.dom.d.ts:8099
• Readonly
NONE: 0
UIEvent.NONE
node_modules/typescript/lib/lib.dom.d.ts:8098
• Readonly
altKey: boolean
node_modules/typescript/lib/lib.dom.d.ts:15589
• Readonly
bubbles: boolean
Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.
UIEvent.bubbles
node_modules/typescript/lib/lib.dom.d.ts:7995
• Readonly
button: number
node_modules/typescript/lib/lib.dom.d.ts:15591
• Readonly
buttons: number
node_modules/typescript/lib/lib.dom.d.ts:15593
• cancelBubble: boolean
Deprecated
UIEvent.cancelBubble
node_modules/typescript/lib/lib.dom.d.ts:8001
• Readonly
cancelable: boolean
Returns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method.
UIEvent.cancelable
node_modules/typescript/lib/lib.dom.d.ts:8007
• Readonly
clientX: number
node_modules/typescript/lib/lib.dom.d.ts:15595
• Readonly
clientY: number
node_modules/typescript/lib/lib.dom.d.ts:15597
• Readonly
composed: boolean
Returns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise.
UIEvent.composed
node_modules/typescript/lib/lib.dom.d.ts:8013
• Readonly
ctrlKey: boolean
node_modules/typescript/lib/lib.dom.d.ts:15599
• Readonly
currentTarget: null
| EventTarget
Returns the object whose event listener's callback is currently being invoked.
UIEvent.currentTarget
node_modules/typescript/lib/lib.dom.d.ts:8019
• Readonly
defaultPrevented: boolean
Returns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise.
UIEvent.defaultPrevented
node_modules/typescript/lib/lib.dom.d.ts:8025
• Readonly
detail: number
UIEvent.detail
node_modules/typescript/lib/lib.dom.d.ts:22505
• Readonly
eventPhase: number
Returns the event's phase, which is one of NONE, CAPTURING_PHASE, AT_TARGET, and BUBBLING_PHASE.
UIEvent.eventPhase
node_modules/typescript/lib/lib.dom.d.ts:8031
• Readonly
isTrusted: boolean
Returns true if event was dispatched by the user agent, and false otherwise.
UIEvent.isTrusted
node_modules/typescript/lib/lib.dom.d.ts:8037
• Readonly
metaKey: boolean
node_modules/typescript/lib/lib.dom.d.ts:15601
• Readonly
movementX: number
node_modules/typescript/lib/lib.dom.d.ts:15603
• Readonly
movementY: number
node_modules/typescript/lib/lib.dom.d.ts:15605
• Readonly
offsetX: number
node_modules/typescript/lib/lib.dom.d.ts:15607
• Readonly
offsetY: number
node_modules/typescript/lib/lib.dom.d.ts:15609
• Readonly
pageX: number
node_modules/typescript/lib/lib.dom.d.ts:15611
• Readonly
pageY: number
node_modules/typescript/lib/lib.dom.d.ts:15613
• Readonly
relatedTarget: null
| EventTarget
node_modules/typescript/lib/lib.dom.d.ts:15615
• returnValue: boolean
Deprecated
UIEvent.returnValue
node_modules/typescript/lib/lib.dom.d.ts:8043
• Readonly
screenX: number
node_modules/typescript/lib/lib.dom.d.ts:15617
• Readonly
screenY: number
node_modules/typescript/lib/lib.dom.d.ts:15619
• Readonly
shiftKey: boolean
node_modules/typescript/lib/lib.dom.d.ts:15621
• Readonly
srcElement: null
| EventTarget
Deprecated
UIEvent.srcElement
node_modules/typescript/lib/lib.dom.d.ts:8049
• Readonly
target: null
| EventTarget
Returns the object to which event is dispatched (its target).
UIEvent.target
node_modules/typescript/lib/lib.dom.d.ts:8055
• Readonly
timeStamp: number
Returns the event's timestamp as the number of milliseconds measured relative to the time origin.
UIEvent.timeStamp
node_modules/typescript/lib/lib.dom.d.ts:8061
• Readonly
type: string
Returns the type of event, e.g. "click", "hashchange", or "submit".
UIEvent.type
node_modules/typescript/lib/lib.dom.d.ts:8067
• Readonly
view: null
| Window
UIEvent.view
node_modules/typescript/lib/lib.dom.d.ts:22507
• Readonly
which: number
Deprecated
UIEvent.which
node_modules/typescript/lib/lib.dom.d.ts:22513
• Readonly
x: number
node_modules/typescript/lib/lib.dom.d.ts:15623
• Readonly
y: number
node_modules/typescript/lib/lib.dom.d.ts:15625
▸ composedPath(): EventTarget
[]
Returns the invocation target objects of event's path (objects on which listeners will be invoked), except for any nodes in shadow trees of which the shadow root's mode is "closed" that are not reachable from event's currentTarget.
EventTarget
[]
UIEvent.composedPath
node_modules/typescript/lib/lib.dom.d.ts:8073
▸ getModifierState(keyArg
): boolean
Name | Type |
---|---|
keyArg |
string |
boolean
node_modules/typescript/lib/lib.dom.d.ts:15627
▸ initEvent(type
, bubbles?
, cancelable?
): void
Name | Type |
---|---|
type |
string |
bubbles? |
boolean |
cancelable? |
boolean |
void
Deprecated
UIEvent.initEvent
node_modules/typescript/lib/lib.dom.d.ts:8079
▸ initMouseEvent(typeArg
, canBubbleArg
, cancelableArg
, viewArg
, detailArg
, screenXArg
, screenYArg
, clientXArg
, clientYArg
, ctrlKeyArg
, altKeyArg
, shiftKeyArg
, metaKeyArg
, buttonArg
, relatedTargetArg
): void
Name | Type |
---|---|
typeArg |
string |
canBubbleArg |
boolean |
cancelableArg |
boolean |
viewArg |
Window |
detailArg |
number |
screenXArg |
number |
screenYArg |
number |
clientXArg |
number |
clientYArg |
number |
ctrlKeyArg |
boolean |
altKeyArg |
boolean |
shiftKeyArg |
boolean |
metaKeyArg |
boolean |
buttonArg |
number |
relatedTargetArg |
null | EventTarget
|
void
Deprecated
node_modules/typescript/lib/lib.dom.d.ts:15633
▸ initUIEvent(typeArg
, bubblesArg?
, cancelableArg?
, viewArg?
, detailArg?
): void
Name | Type |
---|---|
typeArg |
string |
bubblesArg? |
boolean |
cancelableArg? |
boolean |
viewArg? |
null | Window
|
detailArg? |
number |
void
Deprecated
UIEvent.initUIEvent
node_modules/typescript/lib/lib.dom.d.ts:22519
▸ preventDefault(): void
If invoked when the cancelable attribute value is true, and while executing a listener for the event with passive set to false, signals to the operation that caused event to be dispatched that it needs to be canceled.
void
UIEvent.preventDefault
node_modules/typescript/lib/lib.dom.d.ts:8085
▸ stopImmediatePropagation(): void
Invoking this method prevents event from reaching any registered event listeners after the current one finishes running and, when dispatched in a tree, also prevents event from reaching any other objects.
void
UIEvent.stopImmediatePropagation
node_modules/typescript/lib/lib.dom.d.ts:8091
▸ stopPropagation(): void
When dispatched in a tree, invoking this method prevents event from reaching any objects other than the current object.
void
UIEvent.stopPropagation
node_modules/typescript/lib/lib.dom.d.ts:8097
- @ralphschuler/ai-function-caller
- index
- types/AIFunction
- types/Message
- @ralphschuler/assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- error
- index
- util
- @ralphschuler/better-map
- @ralphschuler/better-set
- @ralphschuler/binary-serializer
- @ralphschuler/bit-mask
- @ralphschuler/complex-compare
- @ralphschuler/i811n
- @ralphschuler/logger
- Color
- ColorMap
- Logger
- animations/BallonAnimation
- animations/BaseAnimation
- animations/BombAnimation
- animations/BouncingBallAnimation
- animations/ClockAnimation
- animations/DotsAnimation
- animations/HorizontalBarAnimation
- animations/PongAnimation
- animations/ProgressAnimation
- animations/ProgressBarAnimation
- animations/SpinnerAnimation
- animations/VerticalBarAnimation
- enums/LogLevel
- index
- interfaces/IColor
- interfaces/IMessage
- types/ColorName
- types/Colors
- @ralphschuler/lsystem
- @ralphschuler/mixin-class-factory
- @ralphschuler/neuronal-network
- @ralphschuler/parser-combinator
- index
- inputTypes
- parser
- unicode
- @ralphschuler/prom-metrics-decorator
- @ralphschuler/prom-metrics-parser
- @ralphschuler/random
- PseudoRandomItemSelector
- PseudoRandomNumberGenerator
- Seed
- index
- strategies
- strategy
- strategy
- strategy
- strategy
- strategy
- strategy
- types
- type
- type
- type
- @ralphschuler/safe-array
- @ralphschuler/slot-mashine
- @ralphschuler/state-store
- StateStore
- index
- type
- type
- type
- type
- type
- type
- type
- type
- util
- @ralphschuler/stats-tracker
- @ralphschuler/ts-error
- error
- index
- type
- util
- util
- util
- util
- @ralphschuler/webgl-sand-engine
- index
- pixel-renderer
- @ralphschuler/webgl-shader-factory
- "node:stream/consumers"
- "node:stream/promises"
- ChatCompletionSnapshot
- Choice
- Message
- ToolCall
- EventEmitter
- FormData
- OpenAI
- OpenAI
- Audio
- Speech
- Transcriptions
- Translations
- Beta
- Assistants
- Assistant
- AssistantCreateParams
- AssistantUpdateParams
- Files
- Chat
- Threads
- Messages
- Files
- MessageContentImageFile
- MessageContentText
- Text
- FileCitation
- FilePath
- Runs
- RequiredActionFunctionToolCall
- Run
- RequiredAction
- RunCreateParams
- RunSubmitToolOutputsParams
- Steps
- CodeToolCall
- CodeInterpreter
- Image
- FunctionToolCall
- MessageCreationStepDetails
- RunStep
- ThreadCreateAndRunParams
- Thread
- ThreadCreateParams
- Chat
- Completions
- ChatCompletion
- ChatCompletionAssistantMessageParam
- ChatCompletionChunk
- Choice
- Delta
- ToolCall
- ChatCompletionContentPartImage
- ChatCompletionCreateParams
- ChatCompletionMessage
- ChatCompletionMessageToolCall
- ChatCompletionNamedToolChoice
- Completions
- CompletionChoice
- CompletionCreateParams
- Edits
- Edit
- Embeddings
- CreateEmbeddingResponse
- Files
- FineTunes
- FineTune
- FineTuneCreateParams
- FineTuneListEventsParams
- FineTuning
- Jobs
- FineTuningJob
- JobCreateParams
- Images
- Models
- Moderations
- Moderation
- internal
- finished
- pipeline
- "node:stream/consumers"
- "node:stream/promises"
- EventEmitter
- internal
- finished
- pipeline
- Counter
- Gauge
- Histogram
- Summary