commonMain.androidx.compose.ui.draganddrop.DragAndDrop.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-desktop Show documentation
Show all versions of ui-desktop Show documentation
Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.
/*
* Copyright 2023 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.compose.ui.draganddrop
import androidx.compose.ui.geometry.Offset
/**
* Definition for a type representing transferable data. It could be a remote URI,
* rich text data on the clip board, a local file, or more.
*/
expect class DragAndDropTransferData
/**
* A representation of an event sent by the platform during a drag and drop operation.
*/
expect class DragAndDropEvent
/**
* Returns the position of this [DragAndDropEvent] relative to the root Compose View in the
* layout hierarchy.
*/
internal expect val DragAndDropEvent.positionInRoot: Offset
/**
* Provides a means of receiving a transfer data from a drag and drop session.
*/
interface DragAndDropTarget {
/**
* An item has been dropped inside this [DragAndDropTarget].
*
* @return true to indicate that the [DragAndDropEvent] was consumed; false indicates it was
* rejected.
*/
fun onDrop(event: DragAndDropEvent): Boolean
/** A drag and drop session has just been started and this [DragAndDropTarget] is eligible
* to receive it. This gives an opportunity to set the state for a [DragAndDropTarget] in
* preparation for consuming a drag and drop session.
*/
fun onStarted(event: DragAndDropEvent) = Unit
/**
* An item being dropped has entered into the bounds of this [DragAndDropTarget].
*/
fun onEntered(event: DragAndDropEvent) = Unit
/**
* An item being dropped has moved within the bounds of this [DragAndDropTarget].
*/
fun onMoved(event: DragAndDropEvent) = Unit
/**
* An item being dropped has moved outside the bounds of this [DragAndDropTarget].
*/
fun onExited(event: DragAndDropEvent) = Unit
/**
* An event in the current drag and drop session has changed within this [DragAndDropTarget]
* bounds. Perhaps a modifier key has been pressed or released.
*/
fun onChanged(event: DragAndDropEvent) = Unit
/**
* The drag and drop session has been completed. All [DragAndDropTarget] instances in the
* hierarchy that previously received an [onStarted] event will receive this event. This gives
* an opportunity to reset the state for a [DragAndDropTarget].
*/
fun onEnded(event: DragAndDropEvent) = Unit
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy