cosmic/app/
multi_window.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
//! Create and run daemons that run in the background.
//! Copied from iced 0.13, but adds optional initial window

use iced::application;
use iced::window;
use iced::{
    self,
    program::{self, with_style, with_subscription, with_theme, with_title},
    runtime::{Appearance, DefaultStyle},
    Program,
};
use iced::{Element, Result, Settings, Subscription, Task};

use std::marker::PhantomData;

pub(crate) struct Instance<State, Message, Theme, Renderer, Update, View, Executor> {
    update: Update,
    view: View,
    _state: PhantomData<State>,
    _message: PhantomData<Message>,
    _theme: PhantomData<Theme>,
    _renderer: PhantomData<Renderer>,
    _executor: PhantomData<Executor>,
}

/// Creates an iced [`MultiWindow`] given its title, update, and view logic.
pub fn multi_window<State, Message, Theme, Renderer, Executor>(
    title: impl Title<State>,
    update: impl application::Update<State, Message>,
    view: impl for<'a> self::View<'a, State, Message, Theme, Renderer>,
) -> MultiWindow<impl Program<State = State, Message = Message, Theme = Theme>>
where
    State: 'static,
    Message: Send + std::fmt::Debug + 'static,
    Theme: Default + DefaultStyle,
    Renderer: program::Renderer,
    Executor: iced::Executor,
{
    use std::marker::PhantomData;

    impl<State, Message, Theme, Renderer, Update, View, Executor> Program
        for Instance<State, Message, Theme, Renderer, Update, View, Executor>
    where
        Message: Send + std::fmt::Debug + 'static,
        Theme: Default + DefaultStyle,
        Renderer: program::Renderer,
        Update: application::Update<State, Message>,
        View: for<'a> self::View<'a, State, Message, Theme, Renderer>,
        Executor: iced::Executor,
    {
        type State = State;
        type Message = Message;
        type Theme = Theme;
        type Renderer = Renderer;
        type Executor = Executor;

        fn update(&self, state: &mut Self::State, message: Self::Message) -> Task<Self::Message> {
            self.update.update(state, message).into()
        }

        fn view<'a>(
            &self,
            state: &'a Self::State,
            window: window::Id,
        ) -> Element<'a, Self::Message, Self::Theme, Self::Renderer> {
            self.view.view(state, window).into()
        }
    }

    MultiWindow {
        raw: Instance {
            update,
            view,
            _state: PhantomData,
            _message: PhantomData,
            _theme: PhantomData,
            _renderer: PhantomData,
            _executor: PhantomData::<Executor>,
        },
        settings: Settings::default(),
        window: None,
    }
    .title(title)
}

/// The underlying definition and configuration of an iced daemon.
///
/// You can use this API to create and run iced applications
/// step by step—without coupling your logic to a trait
/// or a specific type.
///
/// You can create a [`MultiWindow`] with the [`daemon`] helper.
#[derive(Debug)]
pub struct MultiWindow<P: Program> {
    raw: P,
    settings: Settings,
    window: Option<window::Settings>,
}

impl<P: Program> MultiWindow<P> {
    #[cfg(any(feature = "winit", feature = "wayland"))]
    /// Runs the [`MultiWindow`].
    ///
    /// The state of the [`MultiWindow`] must implement [`Default`].
    /// If your state does not implement [`Default`], use [`run_with`]
    /// instead.
    ///
    /// [`run_with`]: Self::run_with
    pub fn run(self) -> Result
    where
        Self: 'static,
        P::State: Default,
    {
        self.raw.run(self.settings, self.window)
    }

    #[cfg(any(feature = "winit", feature = "wayland"))]
    /// Runs the [`MultiWindow`] with a closure that creates the initial state.
    pub fn run_with<I>(self, initialize: I) -> Result
    where
        Self: 'static,
        I: FnOnce() -> (P::State, Task<P::Message>) + 'static,
    {
        self.raw.run_with(self.settings, self.window, initialize)
    }

    /// Sets the [`Settings`] that will be used to run the [`MultiWindow`].
    pub fn settings(self, settings: Settings) -> Self {
        Self { settings, ..self }
    }

    /// Sets the [`Title`] of the [`MultiWindow`].
    pub(crate) fn title(
        self,
        title: impl Title<P::State>,
    ) -> MultiWindow<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>> {
        MultiWindow {
            raw: with_title(self.raw, move |state, window| title.title(state, window)),
            settings: self.settings,
            window: self.window,
        }
    }

    /// Sets the subscription logic of the [`MultiWindow`].
    pub fn subscription(
        self,
        f: impl Fn(&P::State) -> Subscription<P::Message>,
    ) -> MultiWindow<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>> {
        MultiWindow {
            raw: with_subscription(self.raw, f),
            settings: self.settings,
            window: self.window,
        }
    }

    /// Sets the theme logic of the [`MultiWindow`].
    pub fn theme(
        self,
        f: impl Fn(&P::State, window::Id) -> P::Theme,
    ) -> MultiWindow<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>> {
        MultiWindow {
            raw: with_theme(self.raw, f),
            settings: self.settings,
            window: self.window,
        }
    }

    /// Sets the style logic of the [`MultiWindow`].
    pub fn style(
        self,
        f: impl Fn(&P::State, &P::Theme) -> Appearance,
    ) -> MultiWindow<impl Program<State = P::State, Message = P::Message, Theme = P::Theme>> {
        MultiWindow {
            raw: with_style(self.raw, f),
            settings: self.settings,
            window: self.window,
        }
    }

    /// Sets the window settings of the [`MultiWindow`].
    pub fn window(self, window: window::Settings) -> Self {
        Self {
            raw: self.raw,
            settings: self.settings,
            window: Some(window),
        }
    }
}

/// The title logic of some [`MultiWindow`].
///
/// This trait is implemented both for `&static str` and
/// any closure `Fn(&State, window::Id) -> String`.
///
/// This trait allows the [`daemon`] builder to take any of them.
pub trait Title<State> {
    /// Produces the title of the [`MultiWindow`].
    fn title(&self, state: &State, window: window::Id) -> String;
}

impl<State> Title<State> for &'static str {
    fn title(&self, _state: &State, _window: window::Id) -> String {
        (*self).to_string()
    }
}

impl<T, State> Title<State> for T
where
    T: Fn(&State, window::Id) -> String,
{
    fn title(&self, state: &State, window: window::Id) -> String {
        self(state, window)
    }
}

/// The view logic of some [`MultiWindow`].
///
/// This trait allows the [`daemon`] builder to take any closure that
/// returns any `Into<Element<'_, Message>>`.
pub trait View<'a, State, Message, Theme, Renderer> {
    /// Produces the widget of the [`MultiWindow`].
    fn view(
        &self,
        state: &'a State,
        window: window::Id,
    ) -> impl Into<Element<'a, Message, Theme, Renderer>>;
}

impl<'a, T, State, Message, Theme, Renderer, Widget> View<'a, State, Message, Theme, Renderer> for T
where
    T: Fn(&'a State, window::Id) -> Widget,
    State: 'static,
    Widget: Into<Element<'a, Message, Theme, Renderer>>,
{
    fn view(
        &self,
        state: &'a State,
        window: window::Id,
    ) -> impl Into<Element<'a, Message, Theme, Renderer>> {
        self(state, window)
    }
}