mirror of
https://github.com/qarmin/czkawka
synced 2024-11-12 01:10:45 +00:00
20 lines
634 B
Plaintext
20 lines
634 B
Plaintext
|
import {CurrentTab} from "common.slint";
|
||
|
|
||
|
// State to show
|
||
|
export global GuiState {
|
||
|
in-out property <length> app_width;
|
||
|
in-out property <length> app_height;
|
||
|
|
||
|
in-out property <string> info_text: "Nothing to report";
|
||
|
in-out property <bool> preview_visible;
|
||
|
in-out property <image> preview_image;
|
||
|
|
||
|
in-out property <float> maximum_threads: 40;
|
||
|
|
||
|
in-out property <bool> choosing_include_directories;
|
||
|
in-out property <bool> visible_tool_settings;
|
||
|
|
||
|
in-out property <bool> available_subsettings: active_tab == CurrentTab.SimilarImages;
|
||
|
in-out property <CurrentTab> active_tab: CurrentTab.EmptyFiles;
|
||
|
}
|