commonMain.androidx.compose.ui.focus.FocusState.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 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.compose.ui.focus
/**
* The focus state of a [FocusTargetNode]. Use [onFocusChanged] or [onFocusEvent] modifiers
* to access [FocusState].
*
* @sample androidx.compose.ui.samples.FocusableSample
*/
interface FocusState {
/**
* Whether the component is focused or not.
*
* @sample androidx.compose.ui.samples.FocusableSample
*
* @return true if the component is focused, false otherwise.
*/
val isFocused: Boolean
/**
* Whether the focus modifier associated with this [FocusState] has a child that is focused.
*
* @return true if a child is focused, false otherwise.
*/
val hasFocus: Boolean
/**
* Whether focus is captured or not. A focusable component is in a captured state when it
* wants to hold onto focus. (Eg. when a text field has an invalid phone number). When we are
* in a captured state, clicking on other focusable items does not clear focus from the
* currently focused item.
*
* You can capture focus by calling [focusRequester.captureFocus()][captureFocus] and free
* focus by calling [focusRequester.freeFocus()][freeFocus].
*
* @return true if focus is captured, false otherwise.
*
* @sample androidx.compose.ui.samples.CaptureFocusSample
*/
val isCaptured: Boolean
}
/** Different states of the focus system. These are the states used by the Focus Nodes. */
internal enum class FocusStateImpl : FocusState {
/** The focusable component is currently active (i.e. it receives key events). */
Active,
/** One of the descendants of the focusable component is Active. */
ActiveParent,
/**
* The focusable component is currently active (has focus), and is in a state where
* it does not want to give up focus. (Eg. a text field with an invalid phone number).
*/
Captured,
/**
* The focusable component does not receive any key events. (ie it is not active, nor are any
* of its descendants active).
*/
Inactive;
override val isFocused: Boolean
get() = when (this) {
Captured, Active -> true
ActiveParent, Inactive -> false
}
override val hasFocus: Boolean
get() = when (this) {
Active, ActiveParent, Captured -> true
Inactive -> false
}
override val isCaptured: Boolean
get() = when (this) {
Captured -> true
Active, ActiveParent, Inactive -> false
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy