2023-06-24 13:38:10 -04:00
|
|
|
#ifndef MXBACKGROUNDCOLOR_H
|
|
|
|
#define MXACKGROUNDCOLOR_H
|
|
|
|
#include "mxstring.h"
|
|
|
|
#include "mxcore.h"
|
|
|
|
class MxBackgroundColor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
__declspec(dllexport) MxBackgroundColor(const char *, const char *);
|
2023-06-26 06:24:11 -04:00
|
|
|
MxBackgroundColor() {}
|
|
|
|
virtual MxString *GetColorString();
|
|
|
|
virtual void SetColorString(const char *colorString);
|
2023-06-25 10:03:14 -04:00
|
|
|
virtual ~MxBackgroundColor();
|
2023-06-26 06:24:11 -04:00
|
|
|
|
2023-06-24 13:38:10 -04:00
|
|
|
protected:
|
|
|
|
MxString m_name;
|
|
|
|
MxString m_colorString;
|
2023-06-27 11:35:58 -04:00
|
|
|
float h;
|
|
|
|
float s;
|
|
|
|
float v;
|
2023-06-24 13:38:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXBACKGROUNDCOLOR_H
|