Files
kotlin-fork/libraries/stdlib/api/js-v1/org.w3c.dom.pointerevents.kt
T
Anton Bannykh cbabb4f76a JS stdlib api test: various changes
- Setting -Doverwrite.output=true updates gold data
- Big packages don't get split into chunks
- Unique lines in the API are marked with /*∆*/ and diff test is removed
- Annotations on separate lines and other dump format tweaks
- Test data moved to libraries/stdlib/api/
- Minor visibility fix to Enum members
2020-06-15 11:49:15 +03:00

58 lines
3.4 KiB
Kotlin

/*∆*/ @kotlin.internal.InlineOnly
/*∆*/ public inline fun PointerEventInit(pointerId: kotlin.Int? = ..., width: kotlin.Double? = ..., height: kotlin.Double? = ..., pressure: kotlin.Float? = ..., tangentialPressure: kotlin.Float? = ..., tiltX: kotlin.Int? = ..., tiltY: kotlin.Int? = ..., twist: kotlin.Int? = ..., pointerType: kotlin.String? = ..., isPrimary: kotlin.Boolean? = ..., screenX: kotlin.Int? = ..., screenY: kotlin.Int? = ..., clientX: kotlin.Int? = ..., clientY: kotlin.Int? = ..., button: kotlin.Short? = ..., buttons: kotlin.Short? = ..., relatedTarget: org.w3c.dom.events.EventTarget? = ..., region: kotlin.String? = ..., ctrlKey: kotlin.Boolean? = ..., shiftKey: kotlin.Boolean? = ..., altKey: kotlin.Boolean? = ..., metaKey: kotlin.Boolean? = ..., modifierAltGraph: kotlin.Boolean? = ..., modifierCapsLock: kotlin.Boolean? = ..., modifierFn: kotlin.Boolean? = ..., modifierFnLock: kotlin.Boolean? = ..., modifierHyper: kotlin.Boolean? = ..., modifierNumLock: kotlin.Boolean? = ..., modifierScrollLock: kotlin.Boolean? = ..., modifierSuper: kotlin.Boolean? = ..., modifierSymbol: kotlin.Boolean? = ..., modifierSymbolLock: kotlin.Boolean? = ..., view: org.w3c.dom.Window? = ..., detail: kotlin.Int? = ..., bubbles: kotlin.Boolean? = ..., cancelable: kotlin.Boolean? = ..., composed: kotlin.Boolean? = ...): org.w3c.dom.pointerevents.PointerEventInit
/*∆*/
/*∆*/ public open external class PointerEvent : org.w3c.dom.events.MouseEvent {
/*∆*/ public constructor PointerEvent(type: kotlin.String, eventInitDict: org.w3c.dom.pointerevents.PointerEventInit = ...)
/*∆*/
/*∆*/ public open val height: kotlin.Double { get; }
/*∆*/
/*∆*/ public open val isPrimary: kotlin.Boolean { get; }
/*∆*/
/*∆*/ public open val pointerId: kotlin.Int { get; }
/*∆*/
/*∆*/ public open val pointerType: kotlin.String { get; }
/*∆*/
/*∆*/ public open val pressure: kotlin.Float { get; }
/*∆*/
/*∆*/ public open val tangentialPressure: kotlin.Float { get; }
/*∆*/
/*∆*/ public open val tiltX: kotlin.Int { get; }
/*∆*/
/*∆*/ public open val tiltY: kotlin.Int { get; }
/*∆*/
/*∆*/ public open val twist: kotlin.Int { get; }
/*∆*/
/*∆*/ public open val width: kotlin.Double { get; }
/*∆*/
/*∆*/ public companion object of PointerEvent {
/*∆*/ public final val AT_TARGET: kotlin.Short { get; }
/*∆*/
/*∆*/ public final val BUBBLING_PHASE: kotlin.Short { get; }
/*∆*/
/*∆*/ public final val CAPTURING_PHASE: kotlin.Short { get; }
/*∆*/
/*∆*/ public final val NONE: kotlin.Short { get; }
/*∆*/ }
/*∆*/ }
/*∆*/
/*∆*/ public external interface PointerEventInit : org.w3c.dom.events.MouseEventInit {
/*∆*/ public open var height: kotlin.Double? { get; set; }
/*∆*/
/*∆*/ public open var isPrimary: kotlin.Boolean? { get; set; }
/*∆*/
/*∆*/ public open var pointerId: kotlin.Int? { get; set; }
/*∆*/
/*∆*/ public open var pointerType: kotlin.String? { get; set; }
/*∆*/
/*∆*/ public open var pressure: kotlin.Float? { get; set; }
/*∆*/
/*∆*/ public open var tangentialPressure: kotlin.Float? { get; set; }
/*∆*/
/*∆*/ public open var tiltX: kotlin.Int? { get; set; }
/*∆*/
/*∆*/ public open var tiltY: kotlin.Int? { get; set; }
/*∆*/
/*∆*/ public open var twist: kotlin.Int? { get; set; }
/*∆*/
/*∆*/ public open var width: kotlin.Double? { get; set; }
/*∆*/ }