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

use color::{Color, hsl, hsla, rgb, rgba};
use ui::Ui;

/// Font size used throughout Conrod.
pub type FontSize = u32;

/// Widgets that may display some label.
pub trait Labelable<'a>: Sized {

    /// Set the label for the widget.
    fn label(self, text: &'a str) -> Self;

    /// Set the color of the widget's label.
    fn label_color(self, color: Color) -> Self;

    /// Set the color of the widget's label from rgba values.
    fn label_rgba(self, r: f32, g: f32, b: f32, a: f32) -> Self {
        self.label_color(rgba(r, g, b, a))
    }

    /// Set the color of the widget's label from rgb values.
    fn label_rgb(self, r: f32, g: f32, b: f32) -> Self {
        self.label_color(rgb(r, g, b))
    }

    /// Set the color of the widget's label from hsla values.
    fn label_hsla(self, h: f32, s: f32, l: f32, a: f32) -> Self {
        self.label_color(hsla(h, s, l, a))
    }

    /// Set the color of the widget's label from hsl values.
    fn label_hsl(self, h: f32, s: f32, l: f32) -> Self {
        self.label_color(hsl(h, s, l))
    }

    /// Set the font size for the widget's label.
    fn label_font_size(self, size: FontSize) -> Self;

    /// Set a "small" font size for the widget's label.
    fn small_font(self, ui: &Ui) -> Self {
        self.label_font_size(ui.theme.font_size_small)
    }

    /// Set a "medium" font size for the widget's label.
    fn medium_font(self, ui: &Ui) -> Self {
        self.label_font_size(ui.theme.font_size_medium)
    }

    /// Set a "large" font size for the widget's label.
    fn large_font(self, ui: &Ui) -> Self {
        self.label_font_size(ui.theme.font_size_large)
    }

}