1
0
Fork 0
mirror of synced 2024-05-17 19:03:08 +12:00
This commit is contained in:
Rafał Mikrut 2023-10-21 10:01:22 +02:00
parent 19f0be721f
commit 0c3dd22b0e
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,5 @@
export enum CurrentTab {
EmptyFolders,
EmptyFiles,
SimilarImages,
}

View file

@ -0,0 +1,44 @@
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;
}
}
}