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
//! A widget showing a boolean samplic parameter.

use gtk::{BoxExt, LabelExt, StyleContextExt, WidgetExt};
use ommui_data::samplic::{
    BooleanParameterDescription, ProfileParameterDescription,
};
use relm::{Relm, Update, Widget};
use std::marker::PhantomData;
use XTr;

/// The parameter passed to the model on creation.
#[derive(Debug)]
pub struct Param<TR: XTr> {
    /// The parameter value.
    pub value: bool,
    /// The description.
    pub description: BooleanParameterDescription,
    /// The profile description.
    pub profile: ProfileParameterDescription,
    /// The translation.
    pub translation: TR,
}

/// Message for updating the widget.
#[derive(Msg, Debug)]
pub enum Msg {
    /// Incoming message
    Incoming(Incoming),
    /// Outgoing message
    Outgoing(Outgoing),
}

/// An incoming message.
#[derive(Debug)]
pub struct Incoming {
    /// The message.
    pub msg: IncomingMsg,
}

/// A message which can be sent to a W instance.
#[derive(Debug)]
pub enum IncomingMsg {
    /// Toggle the value.
    Toggle,
}

impl From<IncomingMsg> for Msg {
    fn from(msg: IncomingMsg) -> Msg {
        Msg::Incoming(Incoming { msg })
    }
}

/// An outgoing message.
#[derive(Debug)]
pub struct Outgoing {
    /// The message.
    pub msg: OutgoingMsg,
}

/// A message which can be emitted by a W instance.
#[derive(Debug, Clone)]
pub enum OutgoingMsg {
    /// The value changed.
    ValueChanged(bool),
}

impl From<OutgoingMsg> for Msg {
    fn from(msg: OutgoingMsg) -> Msg {
        Msg::Outgoing(Outgoing { msg })
    }
}

impl<TR: XTr> Update for W<TR> {
    type Model = Param<TR>;
    type ModelParam = Param<TR>;
    type Msg = Msg;

    fn model(_relm: &Relm<Self>, details: Param<TR>) -> Self::Model {
        details
    }

    fn update(&mut self, event: Msg) {
        use self::Msg::*;
        match event {
            Incoming(e) => self.update_incoming(e.msg),
            Outgoing(_) => {}
        }
    }
}

impl<TR: XTr> W<TR> {
    fn update_incoming(&mut self, e: IncomingMsg) {
        use self::IncomingMsg::*;
        match e {
            Toggle => {
                self.value = !self.value;
                self.update_value_caption();
                self.relm.stream().emit(Msg::from(
                    OutgoingMsg::ValueChanged(self.value),
                ));
            }
        }
    }

    fn update_value_caption(&mut self) {
        let value_caption = if self.value {
            &self.value_caption_true
        } else {
            &self.value_caption_false
        };
        self.label.set_text(value_caption);
    }
}

impl<TR: XTr> Widget for W<TR> {
    type Root = gtk::Box;

    fn root(&self) -> Self::Root {
        self.hbox.clone()
    }

    fn view(relm: &Relm<Self>, model: Self::Model) -> Self {
        let Param {
            translation,
            value,
            description,
            ..
        } = model;

        let hbox = gtk::Box::new(gtk::Orientation::Horizontal, 3);

        let value_caption_true =
            translation.xtr(&description.value_caption_true);
        let value_caption_false =
            translation.xtr(&description.value_caption_false);

        let caption = translation.xtr(&description.caption);
        let caption = gtk::Label::new(Some(caption.as_str()));
        caption.get_style_context().add_class("caption");
        hbox.pack_start(&caption, false, false, 5);

        let label = {
            let value_caption = if value {
                &value_caption_true
            } else {
                &value_caption_false
            };
            gtk::Label::new(Some(value_caption.as_str()))
        };
        label.get_style_context().add_class("value");
        hbox.pack_end(&label, false, false, 5);

        Self {
            relm: relm.clone(),
            hbox,
            label,
            value,
            value_caption_true,
            value_caption_false,
            phantom: PhantomData,
        }
    }
}

/// The widget.
pub struct W<TR: XTr> {
    relm: Relm<W<TR>>,
    hbox: gtk::Box,
    label: gtk::Label,
    value: bool,
    value_caption_true: String,
    value_caption_false: String,
    phantom: PhantomData<TR>,
}