mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
469bca9d3a
Progress dialogs are nice! :^) Showing a proper file-deletion animation would be nice, but that is outside the scope of my abilities.
26 lines
551 B
C++
26 lines
551 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2021, Sam Atkins <atkinssj@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <LibCore/Forward.h>
|
|
#include <LibGUI/Forward.h>
|
|
|
|
namespace FileManager {
|
|
|
|
enum class FileOperation {
|
|
Copy = 0,
|
|
Move,
|
|
Delete,
|
|
};
|
|
|
|
void delete_paths(Vector<String> const&, bool should_confirm, GUI::Window*);
|
|
|
|
void run_file_operation(FileOperation, Vector<String> const& sources, String const& destination, GUI::Window*);
|
|
}
|