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

iosMain.org.jetbrains.skiko.TextActions.kt Maven / Gradle / Ivy

There is a newer version: 0.8.15
Show newest version
package org.jetbrains.skiko

interface TextActions {
    /**
     * Copy action. If null, then copy is not possible in current context
     */
    val copy: (() -> Unit)?

    /**
     * Paste action. If null, then paste is not possible in current context
     */
    val paste: (() -> Unit)?

    /**
     * Cut action. If null, then cut is not possible in current context
     */
    val cut: (() -> Unit)?

    /**
     * SelectAll action. If null, then select all is not possible in current context
     */
    val selectAll: (() -> Unit)?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy