1
0
Fork 0
mirror of synced 2024-10-02 10:06:31 +13:00
czkawka/czkawka_slint_gui/ui/common.slint

23 lines
366 B
Text
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,
selected: bool,
data: [string]
2023-10-21 21:01:22 +13:00
}