mirror of
https://github.com/XITRIX/Moonlight-Switch.git
synced 2026-05-30 11:46:51 +00:00
23 lines
382 B
C++
23 lines
382 B
C++
//
|
|
// loading_overlay.hpp
|
|
// Moonlight
|
|
//
|
|
// Created by Даниил Виноградов on 02.06.2021.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <borealis.hpp>
|
|
|
|
class LoadingOverlay : brls::Box {
|
|
public:
|
|
LoadingOverlay(Box* holder);
|
|
|
|
void layout();
|
|
void setHidden(bool hide);
|
|
|
|
private:
|
|
Box* holder = nullptr;
|
|
BRLS_BIND(brls::ProgressSpinner, progress, "progress");
|
|
};
|