commonMain.io.nacular.doodle.system.PointerInputService.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-jvm Show documentation
Show all versions of core-jvm Show documentation
A pure Kotlin, UI framework for the Web and Desktop
package io.nacular.doodle.system
public interface PointerInputService {
public var cursor : Cursor?
public var toolTipText: String
public operator fun plusAssign (listener: Listener)
public operator fun minusAssign(listener: Listener)
public operator fun plusAssign (preprocessor: Preprocessor)
public operator fun minusAssign(preprocessor: Preprocessor)
public interface Listener {
public fun changed(event: SystemPointerEvent)
}
public interface Preprocessor {
public fun preprocess(event: SystemPointerEvent) {}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy