1
0
Fork 0
mirror of synced 2024-06-27 02:21:05 +12:00
czkawka/czkawka_slint_gui/ui/left_side_panel.slint
Rafał Mikrut 0c3dd22b0e Missing
2023-10-21 10:01:22 +02:00

44 lines
1.2 KiB
Plaintext

import { Button, VerticalBox , HorizontalBox, TabWidget, ListView, StandardListView, StandardTableView, CheckBox} from "std-widgets.slint";
import {CurrentTab} from "common.slint";
component TabItem {
in property <bool> scanning;
in-out property <CurrentTab> active-tab;
in property <string> text;
in property <CurrentTab> curr_tab;
Button {
enabled: !scanning;
text: root.text;
clicked => { root.active-tab = root.curr-tab; }
}
}
export component LeftSidePanel {
in-out property <CurrentTab> active-tab;
in-out property <bool> scanning;
VerticalLayout {
width: 120px;
spacing: 3px;
TabItem {
scanning: scanning;
text: "Empty Folders";
active-tab <=> root.active-tab;
curr_tab: CurrentTab.EmptyFolders;
}
TabItem {
scanning: scanning;
text: "Empty Files";
active-tab <=> root.active-tab;
curr_tab: CurrentTab.EmptyFiles;
}
TabItem {
scanning: scanning;
text: "Similar Images";
active-tab <=> root.active-tab;
curr_tab: CurrentTab.SimilarImages;
}
}
}