1
0
Fork 0
mirror of synced 2024-06-01 18:19:46 +12:00
czkawka/krokiet/ui/callabler.slint

32 lines
801 B
Plaintext
Raw Normal View History

2024-02-11 08:36:14 +13:00
import { SelectMode } from "common.slint";
export global Callabler {
// Bottom panel operations
2024-02-04 06:47:00 +13:00
callback remove_item_directories(bool);
callback added_manual_directories(bool, string);
// Right click or middle click opener
callback item_opened(string);
callback delete_selected_items();
2024-02-11 08:36:14 +13:00
callback select_items(SelectMode);
// Preview
callback load_image_preview(string);
// Settings
callback changed_settings_preset();
callback save_current_preset();
callback load_current_preset();
callback reset_current_preset();
// Translations
pure callback translate(string, [{key: string, value: string}]) -> string;
// Only Slint
callback open_select_popup();
callback open_config_folder();
callback open_cache_folder();
}