1
0
Fork 0
mirror of synced 2024-07-01 20:41:16 +12:00
czkawka/czkawka_slint_gui/ui/common.slint

23 lines
369 B
Plaintext
Raw Normal View History

2023-10-21 21:01:22 +13:00
export enum CurrentTab {
EmptyFolders,
EmptyFiles,
SimilarImages,
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-10-21 21:01:22 +13:00
}