1
0
Fork 0
mirror of synced 2024-06-29 19:40:35 +12:00
czkawka/czkawka_slint_gui/ui/common.slint
Rafał Mikrut b8c5ffa713 Model
2023-10-28 20:08:14 +02:00

23 lines
369 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_row: bool,
val: [string]
}