diff options
author | 2024-03-05 04:42:25 +0100 | |
---|---|---|
committer | 2024-03-05 04:49:07 +0100 | |
commit | d681aaa57e3106cf0ce90b74ade040ca7bb97832 (patch) | |
tree | e182bb66db63e6e77df0f92fd20f6db051dc6b71 /style/src/scrollable.rs | |
parent | 29326215ccf13e1d1e25bf3bf5ada007856bff69 (diff) | |
download | iced-d681aaa57e3106cf0ce90b74ade040ca7bb97832.tar.gz iced-d681aaa57e3106cf0ce90b74ade040ca7bb97832.tar.bz2 iced-d681aaa57e3106cf0ce90b74ade040ca7bb97832.zip |
Simplify theming for `Scrollable` widget
Diffstat (limited to 'style/src/scrollable.rs')
-rw-r--r-- | style/src/scrollable.rs | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/style/src/scrollable.rs b/style/src/scrollable.rs deleted file mode 100644 index d2348510..00000000 --- a/style/src/scrollable.rs +++ /dev/null @@ -1,55 +0,0 @@ -//! Change the appearance of a scrollable. -use crate::container; -use crate::core::{Background, Border, Color}; - -/// The appearance of a scrolable. -#[derive(Debug, Clone, Copy)] -pub struct Appearance { - /// The [`container::Appearance`] of a scrollable. - pub container: container::Appearance, - /// The [`Scrollbar`] appearance. - pub scrollbar: Scrollbar, - /// The [`Background`] of the gap between a horizontal and vertical scrollbar. - pub gap: Option<Background>, -} - -/// The appearance of the scrollbar of a scrollable. -#[derive(Debug, Clone, Copy)] -pub struct Scrollbar { - /// The [`Background`] of a scrollbar. - pub background: Option<Background>, - /// The [`Border`] of a scrollbar. - pub border: Border, - /// The appearance of the [`Scroller`] of a scrollbar. - pub scroller: Scroller, -} - -/// The appearance of the scroller of a scrollable. -#[derive(Debug, Clone, Copy)] -pub struct Scroller { - /// The [`Color`] of the scroller. - pub color: Color, - /// The [`Border`] of the scroller. - pub border: Border, -} - -/// A set of rules that dictate the style of a scrollable. -pub trait StyleSheet { - /// The supported style of the [`StyleSheet`]. - type Style: Default; - - /// Produces the [`Appearance`] of an active scrollable. - fn active(&self, style: &Self::Style) -> Appearance; - - /// Produces the [`Appearance`] of a scrollable when it is being hovered. - fn hovered( - &self, - style: &Self::Style, - is_mouse_over_scrollbar: bool, - ) -> Appearance; - - /// Produces the [`Appearance`] of a scrollable when it is being dragged. - fn dragging(&self, style: &Self::Style) -> Appearance { - self.hovered(style, true) - } -} |