AppleWin/source/frontends/qapple/graphicscache.h
Andrea Odetti d699dc98b8 And add Low Resolution color graphics as well.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2017-10-14 19:18:44 +01:00

40 lines
572 B
C++

#ifndef GRAPHICSCACHE_H
#define GRAPHICSCACHE_H
#include <QPixmap>
class GraphicsCache
{
public:
GraphicsCache();
const QPixmap & text40Col() const
{
return myCharset40;
}
const QPixmap & text80Col() const
{
return myCharset80;
}
const QPixmap & hires() const
{
return myHiResMono;
}
const QPixmap & lores() const
{
return myLoResColor;
}
private:
QPixmap myCharset40;
QPixmap myCharset80;
QPixmap myHiResMono;
QPixmap myLoResColor;
};
#endif // GRAPHICSCACHE_H