/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021-2022, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace FileManager { enum class FileOperation { Copy = 0, Move, Delete, }; void delete_paths(Vector const&, bool should_confirm, GUI::Window*); ErrorOr run_file_operation(FileOperation, Vector const& sources, ByteString const& destination, GUI::Window*); ErrorOr handle_drop(GUI::DropEvent const& event, ByteString const& destination, GUI::Window* window); }