summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-17 14:41:34 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-03-17 14:41:34 +0100
commitc4b4207f4768c7e254ff0a6bf95c4d76ea08ce48 (patch)
treec2f72adcc6d016186ca486595e4f0a514fdff402 /src
parenta034e40f7c0e325938da92894ee34f589f372e0a (diff)
downloadiced-c4b4207f4768c7e254ff0a6bf95c4d76ea08ce48.tar.gz
iced-c4b4207f4768c7e254ff0a6bf95c4d76ea08ce48.tar.bz2
iced-c4b4207f4768c7e254ff0a6bf95c4d76ea08ce48.zip
Support custom themes in `Program` API
Diffstat (limited to 'src')
-rw-r--r--src/application/program.rs32
-rw-r--r--src/lib.rs5
2 files changed, 20 insertions, 17 deletions
diff --git a/src/application/program.rs b/src/application/program.rs
index 24e00efe..d70f39cf 100644
--- a/src/application/program.rs
+++ b/src/application/program.rs
@@ -64,37 +64,38 @@ use std::borrow::Cow;
/// ]
/// }
/// ```
-pub fn program<State, Message>(
+pub fn program<State, Message, Theme>(
title: impl Title<State>,
update: impl Update<State, Message>,
- view: impl for<'a> self::View<'a, State, Message>,
-) -> Program<
- impl Definition<State = State, Message = Message, Theme = crate::Theme>,
->
+ view: impl for<'a> self::View<'a, State, Message, Theme>,
+) -> Program<impl Definition<State = State, Message = Message, Theme = Theme>>
where
State: Default + 'static,
Message: Send + std::fmt::Debug,
+ Theme: Default + application::DefaultStyle,
{
use std::marker::PhantomData;
- struct Application<State, Message, Update, View> {
+ struct Application<State, Message, Theme, Update, View> {
update: Update,
view: View,
_state: PhantomData<State>,
_message: PhantomData<Message>,
+ _theme: PhantomData<Theme>,
}
- impl<State, Message, Update, View> Definition
- for Application<State, Message, Update, View>
+ impl<State, Message, Theme, Update, View> Definition
+ for Application<State, Message, Theme, Update, View>
where
State: Default,
Message: Send + std::fmt::Debug,
+ Theme: Default + application::DefaultStyle,
Update: self::Update<State, Message>,
- View: for<'a> self::View<'a, State, Message>,
+ View: for<'a> self::View<'a, State, Message, Theme>,
{
type State = State;
type Message = Message;
- type Theme = crate::Theme;
+ type Theme = Theme;
type Executor = executor::Default;
fn build(&self) -> (Self::State, Command<Self::Message>) {
@@ -123,6 +124,7 @@ where
view,
_state: PhantomData,
_message: PhantomData,
+ _theme: PhantomData,
},
settings: Settings::default(),
}
@@ -793,18 +795,18 @@ where
///
/// This trait allows the [`program`] builder to take any closure that
/// returns any `Into<Element<'_, Message>>`.
-pub trait View<'a, State, Message> {
+pub trait View<'a, State, Message, Theme> {
/// Produces the widget of the [`Program`].
- fn view(&self, state: &'a State) -> impl Into<Element<'a, Message>>;
+ fn view(&self, state: &'a State) -> impl Into<Element<'a, Message, Theme>>;
}
-impl<'a, T, State, Message, Widget> View<'a, State, Message> for T
+impl<'a, T, State, Message, Theme, Widget> View<'a, State, Message, Theme> for T
where
T: Fn(&'a State) -> Widget,
State: 'static,
- Widget: Into<Element<'a, Message>>,
+ Widget: Into<Element<'a, Message, Theme>>,
{
- fn view(&self, state: &'a State) -> impl Into<Element<'a, Message>> {
+ fn view(&self, state: &'a State) -> impl Into<Element<'a, Message, Theme>> {
self(state)
}
}
diff --git a/src/lib.rs b/src/lib.rs
index d238e78a..bc87b1a3 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -373,14 +373,15 @@ pub type Result = std::result::Result<(), Error>;
/// ]
/// }
/// ```
-pub fn run<State, Message>(
+pub fn run<State, Message, Theme>(
title: impl application::Title<State> + 'static,
update: impl application::Update<State, Message> + 'static,
- view: impl for<'a> application::View<'a, State, Message> + 'static,
+ view: impl for<'a> application::View<'a, State, Message, Theme> + 'static,
) -> Result
where
State: Default + 'static,
Message: std::fmt::Debug + Send + 'static,
+ Theme: Default + application::DefaultStyle + 'static,
{
program(title, update, view).run()
}