mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
38 lines
1008 B
C++
38 lines
1008 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "FileUtils.h"
|
|
#include <LibCore/ElapsedTimer.h>
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace FileManager {
|
|
|
|
class FileOperationProgressWidget : public GUI::Widget {
|
|
C_OBJECT(FileOperationProgressWidget);
|
|
|
|
public:
|
|
virtual ~FileOperationProgressWidget() override;
|
|
|
|
private:
|
|
FileOperationProgressWidget(FileOperation, NonnullRefPtr<Core::File> helper_pipe);
|
|
|
|
void did_finish();
|
|
void did_error(StringView const& message);
|
|
void did_progress(off_t bytes_done, off_t total_byte_count, size_t files_done, size_t total_file_count, off_t current_file_done, off_t current_file_size, StringView const& current_filename);
|
|
|
|
void close_pipe();
|
|
|
|
String estimate_time(off_t bytes_done, off_t total_byte_count);
|
|
Core::ElapsedTimer m_elapsed_timer;
|
|
|
|
FileOperation m_operation;
|
|
RefPtr<Core::Notifier> m_notifier;
|
|
RefPtr<Core::File> m_helper_pipe;
|
|
};
|
|
}
|