2026-04-06 18:40:34 +00:00
|
|
|
import { Theme } from "../theme.slint";
|
|
|
|
|
import { AppState } from "../globals.slint";
|
|
|
|
|
|
|
|
|
|
export component StatusBar inherits Rectangle {
|
|
|
|
|
height: 32px;
|
|
|
|
|
background: Theme.bg-secondary;
|
|
|
|
|
|
|
|
|
|
HorizontalLayout {
|
|
|
|
|
padding-left: 12px;
|
|
|
|
|
padding-right: 12px;
|
|
|
|
|
spacing: 16px;
|
|
|
|
|
|
|
|
|
|
// Status text
|
|
|
|
|
Text {
|
|
|
|
|
text: AppState.status-text;
|
|
|
|
|
color: Theme.fg-secondary;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
vertical-alignment: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Rectangle { horizontal-stretch: 1; }
|
|
|
|
|
|
|
|
|
|
// WPM
|
|
|
|
|
Text {
|
|
|
|
|
text: AppState.wpm > 0 ? "WPM: " + AppState.wpm : "";
|
|
|
|
|
color: Theme.accent-cyan;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
vertical-alignment: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Version
|
|
|
|
|
Text {
|
2026-04-07 14:23:12 +00:00
|
|
|
text: "v1.0.0";
|
2026-04-06 18:40:34 +00:00
|
|
|
color: Theme.fg-secondary;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
vertical-alignment: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|