[go: nahoru, domu]

blob: aefab92c8f38d70755ab30f657e5275b0c51aa83 [file] [log] [blame]
/*
* Copyright 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.ui.core.texttoolbar
import androidx.ui.geometry.Rect
internal typealias ActionCallback = () -> Unit
/**
* Interface for text-related toolbar.
*/
interface TextToolbar {
/**
* Show the floating toolbar(post-M) or primary toolbar(pre-M) for copying, cutting and pasting
* text.
* @param rect region of interest. The selected region around which the floating toolbar
* should show.
* @param onCopyRequested callback to copy text into ClipBoardManager.
* @param onPasteRequested callback to get text from ClipBoardManager and paste it.
* @param onCutRequested callback to cut text and copy the text into ClipBoardManager.
*/
fun showMenu(
rect: Rect,
onCopyRequested: ActionCallback? = null,
onPasteRequested: ActionCallback? = null,
onCutRequested: ActionCallback? = null
)
/**
* Hide the floating toolbar(post-M) or primary toolbar(pre-M).
*/
fun hide()
/**
* Return the [TextToolbarStatus] to check if the toolbar is shown or hidden.
*
* @return [TextToolbarStatus] of [TextToolbar].
*/
val status: TextToolbarStatus
}