AppleWin/source/frontends/ncurses/colors.h
Andrea Odetti 6066a52592 applen: add namespace and remove tabs.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-02-25 16:25:09 +00:00

23 lines
386 B
C++

#pragma once
namespace na2
{
class GraphicsColors
{
public:
GraphicsColors(const int firstColor, const int firstPair, const int numberOfGreys);
int getPair(int color) const;
int getGrey(double foreground, double background) const;
private:
int myFirstGRPair;
int myFirstHGRPair;
const int myNumberOfGRColors;
const int myNumberOfGreys;
};
}