2023-09-01 07:29:19 +02:00
|
|
|
|
// Copyright 2019 H<>ctor Ram<61>n, Iced contributors
|
|
|
|
|
|
// Copyright 2023 System76 <info@system76.com>
|
|
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
2023-08-23 10:59:26 -04:00
|
|
|
|
//! Change the appearance of a text input.
|
2023-09-13 15:47:32 +02:00
|
|
|
|
|
2025-03-21 13:33:07 +01:00
|
|
|
|
use iced_core::{Background, Color, border::Radius};
|
2023-08-23 10:59:26 -04:00
|
|
|
|
|
|
|
|
|
|
/// The appearance of a text input.
|
|
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
|
|
pub struct Appearance {
|
|
|
|
|
|
/// The [`Background`] of the text input.
|
|
|
|
|
|
pub background: Background,
|
|
|
|
|
|
/// The border radius of the text input.
|
2024-01-30 22:14:00 -05:00
|
|
|
|
pub border_radius: Radius,
|
2023-08-23 10:59:26 -04:00
|
|
|
|
/// The border offset
|
|
|
|
|
|
pub border_offset: Option<f32>,
|
|
|
|
|
|
/// The border width of the text input.
|
|
|
|
|
|
pub border_width: f32,
|
|
|
|
|
|
/// The border [`Color`] of the text input.
|
|
|
|
|
|
pub border_color: Color,
|
|
|
|
|
|
/// The label [`Color`] of the text input.
|
|
|
|
|
|
pub label_color: Color,
|
2023-09-13 15:47:32 +02:00
|
|
|
|
/// The placeholder text [`Color`].
|
|
|
|
|
|
pub placeholder_color: Color,
|
2023-08-23 10:59:26 -04:00
|
|
|
|
/// The text [`Color`] of the text input.
|
|
|
|
|
|
pub selected_text_color: Color,
|
2024-04-26 14:51:45 +02:00
|
|
|
|
/// The icon [`Color`] of the text input.
|
|
|
|
|
|
pub icon_color: Option<Color>,
|
2023-08-23 10:59:26 -04:00
|
|
|
|
/// The text [`Color`] of the text input.
|
2024-04-26 14:51:45 +02:00
|
|
|
|
pub text_color: Option<Color>,
|
2023-08-23 10:59:26 -04:00
|
|
|
|
/// The selected fill [`Color`] of the text input.
|
|
|
|
|
|
pub selected_fill: Color,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// A set of rules that dictate the style of a text input.
|
|
|
|
|
|
pub trait StyleSheet {
|
|
|
|
|
|
/// The supported style of the [`StyleSheet`].
|
|
|
|
|
|
type Style: Default;
|
|
|
|
|
|
|
|
|
|
|
|
/// Produces the style of an active text input.
|
|
|
|
|
|
fn active(&self, style: &Self::Style) -> Appearance;
|
|
|
|
|
|
|
|
|
|
|
|
/// Produces the style of an errored text input.
|
|
|
|
|
|
fn error(&self, style: &Self::Style) -> Appearance;
|
|
|
|
|
|
|
|
|
|
|
|
/// Produces the style of a focused text input.
|
|
|
|
|
|
fn focused(&self, style: &Self::Style) -> Appearance;
|
|
|
|
|
|
|
|
|
|
|
|
/// Produces the style of an hovered text input.
|
|
|
|
|
|
fn hovered(&self, style: &Self::Style) -> Appearance {
|
|
|
|
|
|
self.focused(style)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Produces the style of a disabled text input.
|
|
|
|
|
|
fn disabled(&self, style: &Self::Style) -> Appearance;
|
|
|
|
|
|
}
|