1
0
Fork 0
mirror of synced 2024-07-06 23:10:48 +12:00
czkawka/krokiet/ui/common.slint

30 lines
469 B
Plaintext
Raw Normal View History

2023-10-21 21:01:22 +13:00
export enum CurrentTab {
EmptyFolders,
EmptyFiles,
SimilarImages,
2023-11-22 10:13:45 +13:00
Settings
2023-10-22 23:18:41 +13:00
}
export enum TypeOfOpenedItem {
CurrentItem,
ParentItem,
2023-10-23 09:12:59 +13:00
}
export struct ProgressToSend {
current_progress: int,
all_progress: int,
step_name: string,
2023-10-29 05:20:46 +13:00
}
export struct MainListModel {
checked: bool,
header_row: bool,
2023-10-29 07:08:14 +13:00
selected_row: bool,
val: [string]
2023-11-02 05:47:45 +13:00
}
export enum BottomPanelVisibility {
NotVisible,
TextErrors,
Directories
2023-10-21 21:01:22 +13:00
}