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
/* tab_button.rs
 *
 * Copyright 2021 Visvesh Subramanian <visveshs.blogspot.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

use super::Card;
use gtk::glib;

mod imp {
    use super::Card;
    use adw::subclass::prelude::*;
    use gtk::{glib, prelude::*, CompositeTemplate};

    #[derive(Debug, CompositeTemplate, Default)]
    #[template(resource = "/dev/Cogitri/Health/ui/tab_button.ui")]
    pub struct TabButton {
        #[template_child]
        pub tab_name: TemplateChild<gtk::Label>,
        #[template_child]
        pub icon: TemplateChild<gtk::Image>,
    }

    #[glib::object_subclass]
    impl ObjectSubclass for TabButton {
        const NAME: &'static str = "HealthTabButton";
        type ParentType = Card;
        type Type = super::TabButton;

        fn class_init(klass: &mut Self::Class) {
            Card::static_type();
            klass.set_layout_manager_type::<gtk::BinLayout>();
            Self::bind_template(klass);
        }

        fn instance_init(obj: &glib::subclass::InitializingObject<Self>) {
            obj.init_template();
        }
    }

    impl ObjectImpl for TabButton {
        fn properties() -> &'static [glib::ParamSpec] {
            use once_cell::sync::Lazy;
            static PROPERTIES: Lazy<Vec<glib::ParamSpec>> = Lazy::new(|| {
                vec![
                    glib::ParamSpecString::builder("tab-name")
                        .write_only()
                        .build(),
                    glib::ParamSpecString::builder("icon-name")
                        .write_only()
                        .build(),
                ]
            });
            PROPERTIES.as_ref()
        }

        fn set_property(&self, _id: usize, value: &glib::Value, pspec: &glib::ParamSpec) {
            match pspec.name() {
                "tab-name" => self.tab_name.set_label(value.get::<&str>().unwrap_or("")),
                "icon-name" => self
                    .icon
                    .set_icon_name(Some(value.get::<&str>().unwrap_or(""))),
                _ => unimplemented!(),
            }
        }
    }
    impl WidgetImpl for TabButton {}
    impl BinImpl for TabButton {}
}

glib::wrapper! {
    /// [TabButton] is a toplevel container that is implemented by all other views of Health.
    pub struct TabButton(ObjectSubclass<imp::TabButton>)
        @extends gtk::Widget, adw::Bin, Card,
        @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}

impl TabButton {
    pub fn new() -> Self {
        glib::Object::new()
    }
}

#[cfg(test)]
mod test {
    use super::TabButton;
    use crate::utils::init_gtk;

    #[gtk::test]
    fn new() {
        init_gtk();
        TabButton::new();
    }
}