3ad597ca5c
#KT-37910 Fixed
128 lines
4.9 KiB
Kotlin
128 lines
4.9 KiB
Kotlin
/*
|
|
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
// NOTE: THIS FILE IS AUTO-GENERATED, DO NOT EDIT!
|
|
// See github.com/kotlin/dukat for details
|
|
|
|
package org.w3c.dom.pointerevents
|
|
|
|
import kotlin.js.*
|
|
import org.khronos.webgl.*
|
|
import org.w3c.css.masking.*
|
|
import org.w3c.dom.*
|
|
import org.w3c.dom.clipboard.*
|
|
import org.w3c.dom.css.*
|
|
import org.w3c.dom.encryptedmedia.*
|
|
import org.w3c.dom.events.*
|
|
import org.w3c.dom.mediacapture.*
|
|
import org.w3c.dom.mediasource.*
|
|
import org.w3c.dom.parsing.*
|
|
import org.w3c.dom.svg.*
|
|
import org.w3c.dom.url.*
|
|
import org.w3c.fetch.*
|
|
import org.w3c.files.*
|
|
import org.w3c.notifications.*
|
|
import org.w3c.performance.*
|
|
import org.w3c.workers.*
|
|
import org.w3c.xhr.*
|
|
|
|
public external interface PointerEventInit : MouseEventInit {
|
|
var pointerId: Int? /* = 0 */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var width: Double? /* = 1.0 */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var height: Double? /* = 1.0 */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var pressure: Float? /* = 0f */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var tangentialPressure: Float? /* = 0f */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var tiltX: Int? /* = 0 */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var tiltY: Int? /* = 0 */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var twist: Int? /* = 0 */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var pointerType: String? /* = "" */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
var isPrimary: Boolean? /* = false */
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
}
|
|
|
|
@kotlin.internal.InlineOnly
|
|
public inline fun PointerEventInit(pointerId: Int? = 0, width: Double? = 1.0, height: Double? = 1.0, pressure: Float? = 0f, tangentialPressure: Float? = 0f, tiltX: Int? = 0, tiltY: Int? = 0, twist: Int? = 0, pointerType: String? = "", isPrimary: Boolean? = false, screenX: Int? = 0, screenY: Int? = 0, clientX: Int? = 0, clientY: Int? = 0, button: Short? = 0, buttons: Short? = 0, relatedTarget: EventTarget? = null, region: String? = null, ctrlKey: Boolean? = false, shiftKey: Boolean? = false, altKey: Boolean? = false, metaKey: Boolean? = false, modifierAltGraph: Boolean? = false, modifierCapsLock: Boolean? = false, modifierFn: Boolean? = false, modifierFnLock: Boolean? = false, modifierHyper: Boolean? = false, modifierNumLock: Boolean? = false, modifierScrollLock: Boolean? = false, modifierSuper: Boolean? = false, modifierSymbol: Boolean? = false, modifierSymbolLock: Boolean? = false, view: Window? = null, detail: Int? = 0, bubbles: Boolean? = false, cancelable: Boolean? = false, composed: Boolean? = false): PointerEventInit {
|
|
val o = js("({})")
|
|
o["pointerId"] = pointerId
|
|
o["width"] = width
|
|
o["height"] = height
|
|
o["pressure"] = pressure
|
|
o["tangentialPressure"] = tangentialPressure
|
|
o["tiltX"] = tiltX
|
|
o["tiltY"] = tiltY
|
|
o["twist"] = twist
|
|
o["pointerType"] = pointerType
|
|
o["isPrimary"] = isPrimary
|
|
o["screenX"] = screenX
|
|
o["screenY"] = screenY
|
|
o["clientX"] = clientX
|
|
o["clientY"] = clientY
|
|
o["button"] = button
|
|
o["buttons"] = buttons
|
|
o["relatedTarget"] = relatedTarget
|
|
o["region"] = region
|
|
o["ctrlKey"] = ctrlKey
|
|
o["shiftKey"] = shiftKey
|
|
o["altKey"] = altKey
|
|
o["metaKey"] = metaKey
|
|
o["modifierAltGraph"] = modifierAltGraph
|
|
o["modifierCapsLock"] = modifierCapsLock
|
|
o["modifierFn"] = modifierFn
|
|
o["modifierFnLock"] = modifierFnLock
|
|
o["modifierHyper"] = modifierHyper
|
|
o["modifierNumLock"] = modifierNumLock
|
|
o["modifierScrollLock"] = modifierScrollLock
|
|
o["modifierSuper"] = modifierSuper
|
|
o["modifierSymbol"] = modifierSymbol
|
|
o["modifierSymbolLock"] = modifierSymbolLock
|
|
o["view"] = view
|
|
o["detail"] = detail
|
|
o["bubbles"] = bubbles
|
|
o["cancelable"] = cancelable
|
|
o["composed"] = composed
|
|
return o
|
|
}
|
|
|
|
/**
|
|
* Exposes the JavaScript [PointerEvent](https://developer.mozilla.org/en/docs/Web/API/PointerEvent) to Kotlin
|
|
*/
|
|
public external open class PointerEvent(type: String, eventInitDict: PointerEventInit = definedExternally) : MouseEvent {
|
|
open val pointerId: Int
|
|
open val width: Double
|
|
open val height: Double
|
|
open val pressure: Float
|
|
open val tangentialPressure: Float
|
|
open val tiltX: Int
|
|
open val tiltY: Int
|
|
open val twist: Int
|
|
open val pointerType: String
|
|
open val isPrimary: Boolean
|
|
|
|
companion object {
|
|
val NONE: Short
|
|
val CAPTURING_PHASE: Short
|
|
val AT_TARGET: Short
|
|
val BUBBLING_PHASE: Short
|
|
}
|
|
} |