Hyprland/src/hyprerror/HyprError.hpp

31 lines
846 B
C++
Raw Normal View History

#pragma once
#include "../defines.hpp"
#include "../render/Texture.hpp"
2023-01-20 20:48:07 +01:00
#include "../helpers/AnimatedVariable.hpp"
#include <cairo/cairo.h>
class CHyprError {
public:
2023-01-20 20:48:07 +01:00
CHyprError();
~CHyprError();
void queueCreate(std::string message, const CColor& color);
void draw();
void destroy();
private:
2023-01-20 20:48:07 +01:00
void createQueued();
std::string m_szQueued = "";
CColor m_cQueued;
bool m_bQueuedDestroy = false;
bool m_bIsCreated = false;
CTexture m_tTexture;
CAnimatedVariable m_fFadeOpacity;
wlr_box m_bDamageBox = {0, 0, 0, 0};
2023-02-28 20:18:13 +01:00
bool m_bMonitorChanged = false;
};
inline std::unique_ptr<CHyprError> g_pHyprError; // This is a full-screen error. Treat it with respect, and there can only be one at a time.