Skip to content

Commit

Permalink
Merge pull request #2067 from iced-rs/custom-extended-palette-generation
Browse files Browse the repository at this point in the history
Introduce `theme::Custom::with_fn` to generate completely custom themes
  • Loading branch information
hecrj authored Sep 3, 2023
2 parents 9b9b37e + 624d5c2 commit 3b0d1b1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- `Theme::Custom::with_fn` for custom extended palette generation. [#2067](https://github.com/iced-rs/iced/pull/2067)

### Changed
- Updated `wgpu` to `0.17`. [#2065](https://github.com/iced-rs/iced/pull/2065)

Expand Down
27 changes: 22 additions & 5 deletions style/src/theme.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
//! Use the built-in theme and styles.
pub mod palette;

use self::palette::Extended;
pub use self::palette::Palette;
pub use palette::Palette;

use crate::application;
use crate::button;
Expand Down Expand Up @@ -40,7 +39,16 @@ pub enum Theme {
impl Theme {
/// Creates a new custom [`Theme`] from the given [`Palette`].
pub fn custom(palette: Palette) -> Self {
Self::Custom(Box::new(Custom::new(palette)))
Self::custom_with_fn(palette, palette::Extended::generate)
}

/// Creates a new custom [`Theme`] from the given [`Palette`], with
/// a custom generator of a [`palette::Extended`].
pub fn custom_with_fn(
palette: Palette,
generate: impl FnOnce(Palette) -> palette::Extended,
) -> Self {
Self::Custom(Box::new(Custom::with_fn(palette, generate)))
}

/// Returns the [`Palette`] of the [`Theme`].
Expand All @@ -66,15 +74,24 @@ impl Theme {
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Custom {
palette: Palette,
extended: Extended,
extended: palette::Extended,
}

impl Custom {
/// Creates a [`Custom`] theme from the given [`Palette`].
pub fn new(palette: Palette) -> Self {
Self::with_fn(palette, palette::Extended::generate)
}

/// Creates a [`Custom`] theme from the given [`Palette`] with
/// a custom generator of a [`palette::Extended`].
pub fn with_fn(
palette: Palette,
generate: impl FnOnce(Palette) -> palette::Extended,
) -> Self {
Self {
palette,
extended: Extended::generate(palette),
extended: generate(palette),
}
}
}
Expand Down

0 comments on commit 3b0d1b1

Please sign in to comment.