mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-28 21:04:47 +00:00

Instead of having all style duplicated and re-using a base, we just hack into the funciton that queries the dark/light theme based on the style suffix known at compile time. This removes one of the problem that happens when trying to work on the widget style with the extension, as it relies on include path hacks
154 lines
4.8 KiB
Text
154 lines
4.8 KiB
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
|
|
import { MaterialPalette, MaterialFontSettings } from "styling.slint";
|
|
import { TabBarBase } from "../common/tabwidget-base.slint";
|
|
|
|
export component TabWidgetImpl inherits Rectangle {
|
|
in property <length> tabbar-preferred-height;
|
|
in property <length> tabbar-preferred-width;
|
|
in property <length> content-min-height;
|
|
in property <length> content-min-width;
|
|
in property <int> current-index;
|
|
in property <int> current-focused;
|
|
out property <length> content-x: 0;
|
|
out property <length> content-y: root.tabbar-preferred-height;
|
|
out property <length> content-height: root.height - root.tabbar-preferred-height;
|
|
out property <length> content-width: root.width;
|
|
out property <length> tabbar-x: 0;
|
|
out property <length> tabbar-y: 0;
|
|
out property <length> tabbar-height: root.tabbar-preferred-height;
|
|
out property <length> tabbar-width: root.width;
|
|
|
|
preferred-width: root.content-min-width;
|
|
min-width: max(root.content-min-width, root.tabbar-preferred-width);
|
|
preferred-height: root.content-min-height + root.tabbar-preferred-height;
|
|
min-height: root.content-min-height + root.tabbar-preferred-height;
|
|
}
|
|
|
|
export component TabImpl inherits Rectangle {
|
|
// The currently focused tab
|
|
in property <int> current-focused;
|
|
// The index of this tab
|
|
in property <int> tab-index;
|
|
// The total number of tabs
|
|
in property <int> num-tabs;
|
|
in property <string> title <=> i-text.text;
|
|
in property <bool> enabled: true;
|
|
// The currently selected tab
|
|
in-out property <int> current;
|
|
|
|
private property <bool> has-focus: root.current-focused == root.tab-index;
|
|
private property <bool> active: root.tab-index == root.current;
|
|
|
|
height: 48px;
|
|
accessible-role: tab;
|
|
accessible-label: root.title;
|
|
|
|
i-container := Rectangle {
|
|
background: MaterialPalette.alternate-background;
|
|
}
|
|
|
|
i-state-layer := Rectangle {
|
|
opacity: !i-touch-area.pressed ? !i-touch-area.has-hover ? 0 : 0.08 : 0.12;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: i-container.border-radius;
|
|
background: MaterialPalette.accent-background;
|
|
|
|
animate opacity {
|
|
duration: 250ms;
|
|
easing: ease;
|
|
}
|
|
}
|
|
|
|
i-layout := HorizontalLayout {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
|
|
i-text := Text {
|
|
vertical-alignment: center;
|
|
color: !root.active ? MaterialPalette.control-foreground : MaterialPalette.accent-background;
|
|
// FIXME after Roboto font can be loaded
|
|
//font-family: MaterialFontSettings.title-small.font;
|
|
font-size: MaterialFontSettings.title-small.font-size;
|
|
font-weight: MaterialFontSettings.title-small.font-weight;
|
|
|
|
animate color {
|
|
duration: 250ms;
|
|
easing: ease;
|
|
}
|
|
}
|
|
}
|
|
|
|
i-indicator := Rectangle {
|
|
opacity: !root.active ? 0 : 1;
|
|
width: 100%;
|
|
height: 3px;
|
|
y: parent.height - self.height;
|
|
background: MaterialPalette.accent-background;
|
|
|
|
animate opacity {
|
|
duration: 250ms;
|
|
easing: ease;
|
|
}
|
|
}
|
|
|
|
i-touch-area := TouchArea {
|
|
enabled <=> root.enabled;
|
|
|
|
clicked => {
|
|
root.current = root.tab-index;
|
|
}
|
|
}
|
|
}
|
|
|
|
export component TabBarImpl inherits TabBarBase {
|
|
// injected properties:
|
|
// The currently focused tab
|
|
in-out property <int> current-focused: i-focus-scope.has-focus ? i-focus-scope.focused-tab : -1;
|
|
|
|
accessible-role: tab-list;
|
|
accessible-delegate-focus: root.current-focused >= 0 ? root.current-focused : root.current;
|
|
|
|
HorizontalLayout {
|
|
alignment: start;
|
|
|
|
@children
|
|
}
|
|
|
|
i-focus-scope := FocusScope {
|
|
property <int> focused-tab: 0;
|
|
|
|
x: 0;
|
|
// Do not react on clicks
|
|
width: 0;
|
|
|
|
key-pressed(event) => {
|
|
if (event.text == "\n") {
|
|
root.current = root.current-focused;
|
|
return accept;
|
|
}
|
|
if (event.text == Key.LeftArrow) {
|
|
self.focused-tab = Math.max(self.focused-tab - 1, 0);
|
|
return accept;
|
|
}
|
|
if (event.text == Key.RightArrow) {
|
|
self.focused-tab = Math.min(self.focused-tab + 1, root.num-tabs - 1);
|
|
return accept;
|
|
}
|
|
return reject;
|
|
}
|
|
|
|
key-released(event) => {
|
|
if (event.text == " ") {
|
|
root.current = root.current-focused;
|
|
return accept;
|
|
}
|
|
return reject;
|
|
}
|
|
}
|
|
}
|
|
|
|
export component TabWidget inherits TabWidget { }
|