1
0
Fork 0
mirror of synced 2024-05-10 15:32:52 +12:00
czkawka/krokiet/ui/common.slint
2023-12-03 12:06:42 +01:00

30 lines
469 B
Plaintext

export enum CurrentTab {
EmptyFolders,
EmptyFiles,
SimilarImages,
Settings
}
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]
}
export enum BottomPanelVisibility {
NotVisible,
TextErrors,
Directories
}