capybar 0.3.0

Wayland native toolbar
Documentation
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
use std::{
    cell::{Ref, RefCell, RefMut},
    rc::Rc,
};

use anyhow::Result;
use serde::Deserialize;
use thiserror::Error;

use crate::{
    root::Environment,
    services::Service,
    util::Color,
    widgets::{Style, Widget, WidgetData, WidgetError, WidgetList, WidgetNew, WidgetStyled},
};

use super::{Container, ContainerSingle};

#[derive(Deserialize, Debug, Clone, Copy)]
#[serde(tag = "type", content = "padding")]
pub enum Alignment {
    CenteringHorizontal,
    CenteringVertical,
    GrowthCenteringHorizontalRight(usize),
    GrowthCenteringHorizontalLeft(usize),
    GrowthCenteringVerticalRight(usize),
    GrowthCenteringVerticalLeft(usize),
    GrowthHorizontalRight(usize),
    GrowthHorizontalLeft(usize),
    GrowthVerticalUp(usize),
    GrowthVerticalDown(usize),
}

impl Default for Alignment {
    fn default() -> Self {
        Alignment::GrowthHorizontalRight(10)
    }
}

impl Alignment {
    pub const fn default() -> Self {
        Alignment::GrowthHorizontalRight(10)
    }
}

/// Settings of a [Row] container
#[derive(Default, Deserialize, Debug, Clone, Copy)]
pub struct RowSettings {
    #[serde(default)]
    pub alignment: Alignment,

    #[serde(default, flatten)]
    pub default_data: WidgetData,
    #[serde(default, flatten)]
    pub style: Style,
}

impl RowSettings {
    pub const fn default() -> RowSettings {
        RowSettings {
            alignment: Alignment::default(),
            default_data: WidgetData::default(),
            style: Style::default(),
        }
    }
}

#[derive(Error, Debug)]
pub enum RowError {
    #[error("Row is not wide enough to display all of it's widgets")]
    WidthOverflow,

    #[error("anyhow error: {0}")]
    Other(#[from] anyhow::Error),
}

/// Container that stores widgets in a row.
pub struct Row {
    settings: RowSettings,
    data: RefCell<WidgetData>,

    widgets: RefCell<Vec<Box<dyn Widget>>>,
    env: Option<Rc<Environment>>,
    services: RefCell<Vec<Box<dyn Service>>>,

    is_ready: RefCell<bool>,
}

impl Widget for Row {
    fn name(&self) -> WidgetList {
        WidgetList::Row
    }

    fn as_styled(&self) -> Option<&dyn WidgetStyled> {
        Some(self)
    }

    fn data(&self) -> Ref<'_, WidgetData> {
        self.data.borrow()
    }

    fn data_mut(&self) -> RefMut<'_, WidgetData> {
        self.data.borrow_mut()
    }

    fn bind(&mut self, env: Rc<Environment>) -> Result<(), WidgetError> {
        self.env = Some(Rc::clone(&env));

        let mut widgets = self.widgets.borrow_mut();
        for widget in widgets.iter_mut() {
            widget.bind(Rc::clone(&env))?;
        }

        for service in self.services.borrow_mut().iter_mut() {
            if let Err(e) = service.bind(Rc::clone(&env)) {
                return Err(WidgetError::Custom(e.into()));
            }
        }

        Ok(())
    }

    fn env(&self) -> Option<Rc<Environment>> {
        self.env.clone()
    }

    fn init(&self) -> Result<(), WidgetError> {
        let mut data = self.data.borrow_mut();

        let border = match self.settings.style.border {
            Some(a) => a.0,
            None => 0,
        };

        let widgets = self.widgets.borrow();
        for widget in widgets.iter() {
            widget.init()?;
            let widget_data = widget.data();
            data.height = usize::max(
                data.height,
                widget_data.height
                    + widget_data.position.1
                    + border
                    + self.settings.style.margin.up
                    + self.settings.style.margin.down,
            );
        }
        Ok(())
    }

    fn prepare(&self) -> Result<(), WidgetError> {
        for widget in self.widgets.borrow_mut().iter() {
            widget.prepare()?;
        }

        self.align_widgets()?;
        self.apply_style()?;

        *self.is_ready.borrow_mut() = true;
        Ok(())
    }

    fn draw(&self) -> Result<(), WidgetError> {
        if self.env.is_none() {
            return Err(WidgetError::DrawWithNoEnv(WidgetList::Row));
        }

        if !*self.is_ready.borrow() {
            self.prepare()?;
        }
        *self.is_ready.borrow_mut() = false;

        self.draw_style()?;

        for widget in self.widgets.borrow_mut().iter() {
            widget.draw()?;
        }

        Ok(())
    }
}

impl Row {
    pub fn widgets_mut(&mut self) -> &mut Vec<Box<dyn Widget>> {
        self.widgets.get_mut()
    }

    pub fn len(&self) -> usize {
        self.widgets.borrow().len()
    }

    pub fn is_empty(&self) -> bool {
        self.widgets.borrow().is_empty()
    }

    pub fn pop(&mut self) {
        self.widgets.get_mut().pop();
    }

    pub fn add_widget(&mut self, widget: Box<dyn Widget>) {
        self.widgets.get_mut().push(widget);
    }

    fn get_max_height(widgets: &mut Vec<Box<dyn Widget>>) -> usize {
        if widgets.is_empty() {
            return 0;
        }

        let mut res = 0;
        for widget in widgets.iter_mut().map(|a| a.data()) {
            res = usize::max(res, widget.height + widget.position.1);
        }
        res
    }

    fn align_widgets_centered_horizontal(&self) -> Result<(), RowError> {
        let mut data = self.data.borrow_mut();

        let border = match self.settings.style.border {
            Some((i, _)) => i,
            None => 0,
        };

        let mut widgets = self.widgets.borrow_mut();

        if widgets.len() == 1 {
            {
                let mut widget = widgets[0].data_mut();

                widget.position.0 = data.position.0
                    + (data.width - border * 2 - widget.width) / 2
                    + self.style().margin.left;
                widget.position.1 = data.position.1 + border + self.style().margin.up;
                if let Some(styled) = widgets[0].as_styled() {
                    widget.position.1 += styled.style().margin.up;
                }
            }

            data.height = Row::get_max_height(&mut widgets) + border;
            return Ok(());
        }

        let mut total_width = 0;
        for widget in widgets.iter_mut() {
            total_width += widget.data_mut().width;
        }

        if total_width > data.width - 2 * border {
            return Err(RowError::WidthOverflow);
        }

        let dist = (data.width - 2 * border - total_width) / (widgets.len() - 1);
        let mut x = data.position.0 + border;

        for widget in widgets.iter_mut() {
            let mut widget = widget.data_mut();

            widget.position.0 = x;
            widget.position.1 = data.position.1;

            x += widget.width + dist;
        }

        data.height = Row::get_max_height(&mut widgets) + border;

        Ok(())
    }

    fn align_widgets_growth_ch(&self, padding: usize) -> Result<()> {
        {
            let mut widgets = self.widgets.borrow_mut();
            let mut data = self.data.borrow_mut();

            data.width = 0;

            for widget in widgets.iter_mut().map(|a| a.data_mut()) {
                data.width += widget.width + padding;
            }

            data.width -= padding;
        }

        self.align_widgets_centered_horizontal()?;

        Ok(())
    }

    fn align_widgets_growth_hr(&self, padding: usize) -> Result<()> {
        let mut widgets = self.widgets.borrow_mut();
        let mut data = self.data.borrow_mut();

        let border = match self.settings.style.border {
            Some((i, _)) => i,
            None => 0,
        };

        let mut offset = border + data.position.0 + self.settings.style.margin.left;
        data.height = 0;
        for mut widget in widgets.iter_mut().map(|a| a.data_mut()) {
            widget.position.1 = data.position.1 + self.settings.style.margin.up + border;
            widget.position.0 = offset;
            offset += widget.width + padding;
            data.height = usize::max(data.height, widget.height);
        }

        data.width = offset - padding + border;
        data.height += self.settings.style.margin.up + self.settings.style.margin.down + 2 * border;

        Ok(())
    }

    fn align_widgets_growth_hl(&self, padding: usize) -> Result<()> {
        let mut widgets = self.widgets.borrow_mut();
        let mut data = self.data.borrow_mut();

        let border = match self.settings.style.border {
            Some((i, _)) => i,
            None => 0,
        };

        let mut offset = data.position.0 - border - self.settings.style.margin.right;
        data.height = 0;
        for mut widget in widgets.iter_mut().map(|a| a.data_mut()) {
            widget.position.1 = data.position.1;
            widget.position.0 = offset - widget.width;
            offset -= widget.width + padding;
            data.height = usize::max(data.height, widget.height);
        }
        data.height += self.settings.style.margin.up + self.settings.style.margin.down + 2 * border;

        data.width = data.position.0 + padding - offset - border;

        data.position.0 -= data.width;

        Ok(())
    }

    fn align_widgets(&self) -> Result<()> {
        if self.widgets.borrow_mut().is_empty() {
            self.data.borrow_mut().height =
                self.settings.style.border.unwrap_or((5, Color::NONE)).0 * 3;
            return Ok(());
        }

        match self.settings.alignment {
            Alignment::CenteringHorizontal => self.align_widgets_centered_horizontal()?,
            Alignment::CenteringVertical => todo!(),
            Alignment::GrowthCenteringHorizontalRight(padding) => {
                self.align_widgets_growth_ch(padding)?
            }
            Alignment::GrowthCenteringHorizontalLeft(_) => todo!(),
            Alignment::GrowthCenteringVerticalRight(_) => todo!(),
            Alignment::GrowthCenteringVerticalLeft(_) => todo!(),
            Alignment::GrowthHorizontalRight(padding) => self.align_widgets_growth_hr(padding)?,
            Alignment::GrowthHorizontalLeft(padding) => self.align_widgets_growth_hl(padding)?,
            Alignment::GrowthVerticalUp(_) => todo!(),
            Alignment::GrowthVerticalDown(_) => todo!(),
        };

        Ok(())
    }
}

impl WidgetNew for Row {
    type Settings = RowSettings;
    fn new(env: Option<Rc<Environment>>, settings: Self::Settings) -> Result<Self, WidgetError>
    where
        Self: Sized,
    {
        Ok(Self {
            data: RefCell::new(settings.default_data),
            settings,
            env,
            widgets: RefCell::new(Vec::new()),
            services: RefCell::new(Vec::new()),
            is_ready: RefCell::new(false),
        })
    }
}

impl WidgetStyled for Row {
    fn style(&self) -> &Style {
        &self.settings.style
    }
}

impl Container for Row {
    fn create_service<W, F>(&mut self, f: F, settings: W::Settings) -> Result<()>
    where
        W: crate::services::ServiceNew + crate::services::Service + 'static,
        F: FnOnce(Option<Rc<Environment>>, W::Settings) -> Result<W, crate::services::ServiceError>,
    {
        self.services
            .borrow_mut()
            .push(Box::new(f(self.env.clone(), settings)?));
        Ok(())
    }

    fn run(&self) -> Result<()> {
        for service in self.services.borrow_mut().iter() {
            service.run()?;
        }

        Ok(())
    }
}

impl ContainerSingle for Row {
    fn create_widget<W, F>(&mut self, f: F, settings: W::Settings) -> Result<(), WidgetError>
    where
        W: WidgetNew + Widget + 'static,
        F: FnOnce(Option<Rc<Environment>>, W::Settings) -> Result<W, WidgetError>,
    {
        self.add_widget(Box::new(f(self.env.clone(), settings)?));

        Ok(())
    }
}