mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 22:25:42 +00:00
33 lines
950 B
C++
33 lines
950 B
C++
#pragma once
|
|
#include "common/progress_callback.h"
|
|
#include "host_interface.h"
|
|
|
|
class HostInterfaceProgressCallback final : public BaseProgressCallback
|
|
{
|
|
public:
|
|
HostInterfaceProgressCallback();
|
|
|
|
void PushState() override;
|
|
void PopState() override;
|
|
|
|
void SetCancellable(bool cancellable) override;
|
|
void SetTitle(const char* title) override;
|
|
void SetStatusText(const char* text) override;
|
|
void SetProgressRange(u32 range) override;
|
|
void SetProgressValue(u32 value) override;
|
|
|
|
void DisplayError(const char* message) override;
|
|
void DisplayWarning(const char* message) override;
|
|
void DisplayInformation(const char* message) override;
|
|
void DisplayDebugMessage(const char* message) override;
|
|
|
|
void ModalError(const char* message) override;
|
|
bool ModalConfirmation(const char* message) override;
|
|
void ModalInformation(const char* message) override;
|
|
|
|
private:
|
|
void Redraw(bool force);
|
|
|
|
int m_last_progress_percent = -1;
|
|
};
|