1
0
Fork 0
mirror of synced 2024-06-14 16:35:23 +12:00
czkawka/czkawka_slint_gui/ui/common.slint
Rafał Mikrut 230ac9d6c7 Ab
2023-10-28 18:20:46 +02:00

23 lines
366 B
Plaintext

export enum CurrentTab {
EmptyFolders,
EmptyFiles,
SimilarImages,
}
export enum TypeOfOpenedItem {
CurrentItem,
ParentItem,
}
export struct ProgressToSend {
current_progress: int,
all_progress: int,
step_name: string,
}
export struct MainListModel {
checked: bool,
header_row: bool,
selected: bool,
data: [string]
}