1
0
Fork 0
mirror of synced 2024-05-21 04:43:50 +12:00
czkawka/krokiet/ui/common.slint

30 lines
469 B
Plaintext
Raw Normal View History

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
}