Hyprland/src/config/ConfigDataValues.hpp

50 lines
1.1 KiB
C++
Raw Normal View History

2022-11-26 18:56:43 +01:00
#pragma once
#include "../defines.hpp"
#include <vector>
2022-11-26 18:56:43 +01:00
enum eConfigValueDataTypes {
CVD_TYPE_INVALID = -1,
2022-11-26 18:56:43 +01:00
CVD_TYPE_GRADIENT = 0
};
interface ICustomConfigValueData {
public:
2022-11-26 18:56:43 +01:00
virtual ~ICustomConfigValueData() = 0;
virtual eConfigValueDataTypes getDataType() = 0;
};
class CGradientValueData : public ICustomConfigValueData {
public:
2022-11-26 18:56:43 +01:00
CGradientValueData(CColor col) {
m_vColors.push_back(col);
2022-11-26 18:56:43 +01:00
};
virtual ~CGradientValueData(){};
2022-11-26 18:56:43 +01:00
virtual eConfigValueDataTypes getDataType() {
return CVD_TYPE_GRADIENT;
}
void reset(CColor col) {
m_vColors.clear();
m_vColors.emplace_back(col);
2022-11-26 18:56:43 +01:00
m_fAngle = 0;
}
/* Vector containing the colors */
std::vector<CColor> m_vColors;
/* Float corresponding to the angle (rad) */
float m_fAngle = 0;
2022-11-26 18:56:43 +01:00
bool operator==(const CGradientValueData& other) {
if (other.m_vColors.size() != m_vColors.size() || m_fAngle != other.m_fAngle)
2022-11-26 18:56:43 +01:00
return false;
for (size_t i = 0; i < m_vColors.size(); ++i)
if (m_vColors[i] != other.m_vColors[i])
return false;
2022-11-26 18:56:43 +01:00
return true;
}
};