
This PR shifts the design of checkboxes and introduces ways to style checkboxes based on Elevation, or tint them with a custom color. This may have some impacts on existing uses of checkboxes. When creating a checkbox you now need to call `.fill` if you want the checkbox to have a filled style. Before:   After:   Release Notes: - N/A
114 lines
4.8 KiB
Rust
114 lines
4.8 KiB
Rust
use std::fmt::{self, Display, Formatter};
|
||
|
||
use gpui::{hsla, point, px, BoxShadow, Hsla, WindowContext};
|
||
use smallvec::{smallvec, SmallVec};
|
||
use theme::ActiveTheme;
|
||
|
||
/// Today, elevation is primarily used to add shadows to elements, and set the correct background for elements like buttons.
|
||
///
|
||
/// Elevation can be thought of as the physical closeness of an element to the
|
||
/// user. Elements with lower elevations are physically further away on the
|
||
/// z-axis and appear to be underneath elements with higher elevations.
|
||
///
|
||
/// In the future, a more complete approach to elevation may be added.
|
||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||
pub enum ElevationIndex {
|
||
/// On the layer of the app background. This is under panels, panes, and
|
||
/// other surfaces.
|
||
Background,
|
||
/// The primary surface – Contains panels, panes, containers, etc.
|
||
Surface,
|
||
/// The same elevation as the primary surface, but used for the editable areas, like buffers
|
||
EditorSurface,
|
||
/// A surface that is elevated above the primary surface. but below washes, models, and dragged elements.
|
||
ElevatedSurface,
|
||
/// A surface above the [ElevationIndex::Wash] that is used for dialogs, alerts, modals, etc.
|
||
ModalSurface,
|
||
}
|
||
|
||
impl Display for ElevationIndex {
|
||
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
||
match self {
|
||
ElevationIndex::Background => write!(f, "Background"),
|
||
ElevationIndex::Surface => write!(f, "Surface"),
|
||
ElevationIndex::EditorSurface => write!(f, "Editor Surface"),
|
||
ElevationIndex::ElevatedSurface => write!(f, "Elevated Surface"),
|
||
ElevationIndex::ModalSurface => write!(f, "Modal Surface"),
|
||
}
|
||
}
|
||
}
|
||
|
||
impl ElevationIndex {
|
||
/// Returns an appropriate shadow for the given elevation index.
|
||
pub fn shadow(self) -> SmallVec<[BoxShadow; 2]> {
|
||
match self {
|
||
ElevationIndex::Surface => smallvec![],
|
||
ElevationIndex::EditorSurface => smallvec![],
|
||
|
||
ElevationIndex::ElevatedSurface => smallvec![BoxShadow {
|
||
color: hsla(0., 0., 0., 0.12),
|
||
offset: point(px(0.), px(2.)),
|
||
blur_radius: px(3.),
|
||
spread_radius: px(0.),
|
||
}],
|
||
|
||
ElevationIndex::ModalSurface => smallvec![
|
||
BoxShadow {
|
||
color: hsla(0., 0., 0., 0.12),
|
||
offset: point(px(0.), px(2.)),
|
||
blur_radius: px(3.),
|
||
spread_radius: px(0.),
|
||
},
|
||
BoxShadow {
|
||
color: hsla(0., 0., 0., 0.08),
|
||
offset: point(px(0.), px(3.)),
|
||
blur_radius: px(6.),
|
||
spread_radius: px(0.),
|
||
},
|
||
BoxShadow {
|
||
color: hsla(0., 0., 0., 0.04),
|
||
offset: point(px(0.), px(6.)),
|
||
blur_radius: px(12.),
|
||
spread_radius: px(0.),
|
||
},
|
||
],
|
||
|
||
_ => smallvec![],
|
||
}
|
||
}
|
||
|
||
/// Returns the background color for the given elevation index.
|
||
pub fn bg(&self, cx: &WindowContext) -> Hsla {
|
||
match self {
|
||
ElevationIndex::Background => cx.theme().colors().background,
|
||
ElevationIndex::Surface => cx.theme().colors().surface_background,
|
||
ElevationIndex::EditorSurface => cx.theme().colors().editor_background,
|
||
ElevationIndex::ElevatedSurface => cx.theme().colors().elevated_surface_background,
|
||
ElevationIndex::ModalSurface => cx.theme().colors().elevated_surface_background,
|
||
}
|
||
}
|
||
|
||
/// Returns a color that is appropriate a filled element on this elevation
|
||
pub fn on_elevation_bg(&self, cx: &WindowContext) -> Hsla {
|
||
match self {
|
||
ElevationIndex::Background => cx.theme().colors().surface_background,
|
||
ElevationIndex::Surface => cx.theme().colors().background,
|
||
ElevationIndex::EditorSurface => cx.theme().colors().surface_background,
|
||
ElevationIndex::ElevatedSurface => cx.theme().colors().background,
|
||
ElevationIndex::ModalSurface => cx.theme().colors().background,
|
||
}
|
||
}
|
||
|
||
/// Attempts to return a darker background color than the current elevation index's background.
|
||
///
|
||
/// If the current background color is already dark, it will return a lighter color instead.
|
||
pub fn darker_bg(&self, cx: &WindowContext) -> Hsla {
|
||
match self {
|
||
ElevationIndex::Background => cx.theme().colors().surface_background,
|
||
ElevationIndex::Surface => cx.theme().colors().editor_background,
|
||
ElevationIndex::EditorSurface => cx.theme().colors().surface_background,
|
||
ElevationIndex::ElevatedSurface => cx.theme().colors().editor_background,
|
||
ElevationIndex::ModalSurface => cx.theme().colors().editor_background,
|
||
}
|
||
}
|
||
}
|