mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-08-14 06:39:45 +00:00
13 lines
287 B
C++
13 lines
287 B
C++
#pragma once
|
|
|
|
namespace ui::widgets::busy_overlay
|
|
{
|
|
|
|
void show(const char* title, const char* detail = nullptr);
|
|
void update(const char* title, const char* detail = nullptr);
|
|
void set_progress(int progress_percent);
|
|
void hide();
|
|
bool visible();
|
|
|
|
} // namespace ui::widgets::busy_overlay
|