mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 21:22:46 +00:00 
			
		
		
		
	 469bca9d3a
			
		
	
	
		469bca9d3a
		
	
	
	
	
		
			
			Progress dialogs are nice! :^) Showing a proper file-deletion animation would be nice, but that is outside the scope of my abilities.
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			25 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*);
 | |
| }
 |