notcurses/include/ncpp/Palette.hh

69 lines
1.4 KiB
C++
Raw Normal View History

#ifndef __NCPP_PALETTE_HH
#define __NCPP_PALETTE_HH
2020-01-07 22:51:34 +00:00
#include "Root.hh"
#include "_helpers.hh"
namespace ncpp
{
class NotCurses;
class NCPP_API_EXPORT Palette : public Root
2020-01-07 22:51:34 +00:00
{
public:
Palette (NotCurses *ncinst = nullptr)
: Root (ncinst)
2020-01-07 22:51:34 +00:00
{
palette = ncpalette_new (get_notcurses ());
2020-01-07 22:51:34 +00:00
if (palette == nullptr)
throw init_error ("Notcurses failed to create a new palette");
2020-01-07 22:51:34 +00:00
}
~Palette ()
2020-01-07 22:51:34 +00:00
{
ncpalette_free (palette);
2020-01-07 22:51:34 +00:00
}
operator ncpalette* () noexcept
2020-01-07 22:51:34 +00:00
{
return palette;
}
operator ncpalette const* () const noexcept
2020-01-07 22:51:34 +00:00
{
return palette;
}
bool set (int idx, int r, int g, int b) const NOEXCEPT_MAYBE
2020-01-07 22:51:34 +00:00
{
return error_guard (ncpalette_set_rgb8 (palette, idx, r, g, b), -1);
2020-01-07 22:51:34 +00:00
}
bool set (int idx, unsigned rgb) const NOEXCEPT_MAYBE
2020-01-07 22:51:34 +00:00
{
return error_guard (ncpalette_set (palette, idx, rgb), -1);
2020-01-07 22:51:34 +00:00
}
bool get (int idx, unsigned *r, unsigned *g, unsigned *b) const
{
if (r == nullptr)
throw invalid_argument ("'r' must be a valid pointer");
2020-01-07 22:51:34 +00:00
if (g == nullptr)
throw invalid_argument ("'g' must be a valid pointer");
2020-01-07 22:51:34 +00:00
if (b == nullptr)
throw invalid_argument ("'b' must be a valid pointer");
2020-01-07 22:51:34 +00:00
return get (idx, *r, *g, *b);
}
bool get (int idx, unsigned &r, unsigned &g, unsigned &b) const NOEXCEPT_MAYBE
2020-01-07 22:51:34 +00:00
{
return error_guard (ncpalette_get_rgb8 (palette, idx, &r, &g, &b), -1);
2020-01-07 22:51:34 +00:00
}
private:
ncpalette *palette;
2020-01-07 22:51:34 +00:00
};
}
#endif