aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/hyprerror/HyprError.hpp
blob: aaa8bd125caa05b62ada89fd5b8b2fcc6b1e274f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once

#include "../defines.hpp"
#include "../render/Texture.hpp"
#include "../helpers/AnimatedVariable.hpp"

#include <cairo/cairo.h>

class CHyprError {
  public:
    CHyprError();
    ~CHyprError();

    void queueCreate(std::string message, const CColor& color);
    void draw();
    void destroy();

  private:
    void                     createQueued();
    std::string              m_szQueued = "";
    CColor                   m_cQueued;
    bool                     m_bQueuedDestroy = false;
    bool                     m_bIsCreated     = false;
    CTexture                 m_tTexture;
    CAnimatedVariable<float> m_fFadeOpacity;
    CBox                     m_bDamageBox = {0, 0, 0, 0};

    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.