about summary refs log tree commit diff
path: root/src/ui/mod.rs
blob: c8201c160c667452a2432ee281e7e76c577d47c9 (plain)
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
use super::notd;
use adw::{
    prelude::*, AboutWindow, ActionRow, Application, HeaderBar, PreferencesGroup, PreferencesPage,
    PreferencesWindow, Toast, ToastOverlay,
};
use gtk::{
    gdk::Display,
    gio::{ActionEntry, Menu, MenuItem},
    prelude::*,
    Align, ApplicationWindow, Box, Entry, EntryBuffer, Label, MenuButton, Orientation,
};

pub fn build_ui(app: &Application) {
    let number_label = Label::builder()
        .label(format!(
            "<span size=\"600%\">{}</span>",
            notd::number_of_the_day().to_string()
        ))
        .use_markup(true)
        .build();

    let toast_overlay = ToastOverlay::new();

    let current_date = notd::current_datetime();

    let date_toast = Toast::builder()
        .title(format!(
            // TODO: Follow System Time Formatting
            "Today's Date: {}/{}/{}",
            current_date.day_of_month(),
            current_date.month(),
            current_date.year()
        ))
        .build();

    date_toast.set_timeout(2);

    let name_buffer = EntryBuffer::new(Some("Name"));

    let name_entry = Entry::with_buffer(&name_buffer);

    let subtitle_label = Label::builder()
        .label("<span font_weight=\"bold\">Today's Daily Number is...</span>")
        .use_markup(true)
        .build();

    let gtk_box = Box::builder()
        .margin_top(12)
        .margin_bottom(12)
        .margin_start(12)
        .margin_end(12)
        .valign(Align::Center)
        .halign(Align::Center)
        .spacing(12)
        .orientation(Orientation::Vertical)
        .build();

    gtk_box.append(&name_entry);
    gtk_box.append(&subtitle_label);
    gtk_box.append(&number_label);

    toast_overlay.set_child(Some(&gtk_box));

    name_entry.connect_changed(move |_| {
        let name = name_buffer.text();
        let pnum = notd::personal_number_of_the_day(&name);
        number_label.set_label(&format!("<span size=\"600%\">{}</span>", pnum));
        if name.trim() == "" {
            subtitle_label
                .set_label("<span font_weight=\"bold\">Today's Daily Number is...</span>");
        } else {
            subtitle_label.set_label("<span font_weight=\"bold\">Your Daily Number is...</span>")
        }
    });

    let titlebar = HeaderBar::builder().build();

    titlebar.set_opacity(1.0);

    let preferences_menu = MenuItem::new(Some("Preferences"), Some("win.preferences"));
    let about_menu = MenuItem::new(Some("About"), Some("win.about"));

    let menu = Menu::new();

    // TODO Work on Preferences
    // menu.append_item(&preferences_menu);
    menu.append_item(&about_menu);

    let menu_button = MenuButton::builder()
        .icon_name("open-menu-symbolic")
        .primary(true)
        .tooltip_text("Menu")
        .menu_model(&menu)
        .build();

    titlebar.pack_end(&menu_button);

    let action_about = ActionEntry::builder("about")
        .activate(|window: &ApplicationWindow, _, _| {
            show_about(&window);
        })
        .build();

    let action_preferences = ActionEntry::builder("preferences")
        .activate(|window: &ApplicationWindow, _, _| {
            show_preferences(&window);
        })
        .build();

    let window = ApplicationWindow::builder()
        .application(app)
        .title("Number of the Day")
        .child(&toast_overlay)
        .titlebar(&titlebar)
        .width_request(300)
        .height_request(400)
        .build();

    window.add_action_entries([action_about, action_preferences]);

    window.connect_show(move |_| {
        toast_overlay.add_toast(date_toast.clone());
    });

    window.present();
}

fn show_about(window: &ApplicationWindow) {
    let about = AboutWindow::builder()
        .transient_for(window)
        .application_name("Number of the Day")
        .developer_name("Venomade")
        .version("0.0.1")
        .developers(vec!["Venomade"])
        .copyright("© 2024 Venomade")
        .license_type(gtk::License::Gpl30)
        .comments("Shows a number of the day, general or personal")
        .website("https://git.sr.ht/~venomade/numberoftheday")
        .build();

    about.present();
}

fn show_preferences(window: &ApplicationWindow) {
    let preferences_group = PreferencesGroup::builder().title("Preferences").build();

    let action_row = ActionRow::builder().title("Action Row").build();

    let preferences_page = PreferencesPage::builder()
        .description("Bungus Bungus")
        .title("Bungus")
        .build();

    let preferences = PreferencesWindow::builder()
        .transient_for(window)
        .display(&Display::default().expect("Could not get display"))
        .content(&preferences_page)
        .build();

    preferences.set_visible_page(&preferences_page);

    preferences.present();
}

pub fn load_css() {
    let provider = gtk::CssProvider::new();
    provider.load_from_string(include_str!("ui.css"));

    gtk::style_context_add_provider_for_display(
        &Display::default().expect("Could not get display"),
        &provider,
        gtk::STYLE_PROVIDER_PRIORITY_APPLICATION,
    );
}