Make the time widget work

- Show real time, not dummy text
- Update time every minute
- Use slint's Timer
This commit is contained in:
Candifloss 2025-11-20 12:28:26 +05:30
parent 95790db098
commit c878c7f678
3 changed files with 59 additions and 8 deletions

View File

@ -7,10 +7,12 @@ authors = ["candifloss <candifloss.cc>"]
readme = "README.md"
[dependencies]
chrono = "0.4.42"
dirs = "6.0.0"
i-slint-backend-winit = { version = "1.14.1", features = ["x11"] }
serde = { version = "1.0.228", features = ["derive"] }
slint = { version = "1.14.1", features = ["backend-winit"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "time"] }
toml = "0.9.8"
[build-dependencies]

View File

@ -1,20 +1,66 @@
use crate::TopBar;
use slint::ComponentHandle;
use chrono::{Local, Timelike};
use slint::{ComponentHandle, SharedString, Timer, TimerMode};
use std::process::{Child, Command};
use std::time::Duration;
// Run a command
fn run_cmd(cmd: &str) -> Option<Child> {
Command::new(cmd).spawn().ok()
}
/// Connect widget callbacks for the top bar.
fn format_time() -> String {
Local::now().format("%I:%M %p").to_string()
}
fn time_until_next_minute() -> Duration {
let now = Local::now();
let secs = now.second();
let nanos = now.nanosecond();
Duration::from_secs(60 - u64::from(secs)) - Duration::from_nanos(u64::from(nanos))
}
fn start_clock_updater(ui: &TopBar) {
let weak = ui.as_weak();
// One-shot timer for the first update
let initial_timer = Box::leak(Box::new(Timer::default()));
// Repeating timer (every 60 seconds)
let repeating_timer = Box::leak(Box::new(Timer::default()));
// 1. Initial immediate update
if let Some(ui) = weak.upgrade() {
ui.set_time_text(SharedString::from(format_time()));
}
// 2. Schedule first update exactly at next minute boundary
initial_timer.start(TimerMode::SingleShot, time_until_next_minute(), move || {
// Update at the boundary
if let Some(ui) = weak.upgrade() {
ui.set_time_text(SharedString::from(format_time()));
}
// 3. Start repeating 60-sec timer
let weak_clone = weak.clone();
repeating_timer.start(TimerMode::Repeated, Duration::from_secs(60), move || {
if let Some(ui) = weak_clone.upgrade() {
ui.set_time_text(SharedString::from(format_time()));
}
});
});
}
pub fn install_callbacks(ui: &TopBar) {
let weak = ui.as_weak();
// Click handler
ui.on_show_clock(move || {
if weak.upgrade().is_none() {
return;
if weak.upgrade().is_some() {
run_cmd("xclock");
}
run_cmd("xclock");
});
// Start the time-updating timer
start_clock_updater(ui);
}

View File

@ -2,11 +2,14 @@ import { TimeWidget } from "time-widget.slint";
export component TopBar inherits Window {
// Common properties
in property<int> bar_width;
in property<int> bar_height;
in property<int> def_font_size;
in property<string> def_font_fam;
// Time widget
in-out property <string> time_text;
callback show_clock();
title: "chocobar";
@ -51,10 +54,10 @@ export component TopBar inherits Window {
width: parent.width/3;
HorizontalLayout {
alignment: end; // RIght-align
alignment: end; // Right-align
TimeWidget {
time_text: "11:43 AM"; // Fix this: Replace with time value
time_text: root.time_text; // Get from root
show_clock => root.show_clock(); // Forward the widget's callback to the root's to access from Rust
}
}