All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gtlp.ui.events.KeyEvent.kt Maven / Gradle / Ivy

The newest version!
package org.gtlp.ui.events

/**
 * An [IWindowEvent] when a key is pressed, released or typed.
 *
 * @param key the key that is pressed.
 * @param keyEventType the type of event (whether the key is pressed down, released or typed).
 * @param cancelled whether this event has been cancelled.
 */
data class KeyEvent(val key: Char, val keyEventType: KeyEventType, override var cancelled: Boolean = false) : IWindowEvent


/**
 * The various types of [KeyEvent]s.
 */
enum class KeyEventType {
    KEY_DOWN,
    KEY_UP,
    KEY_TYPED
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy