AppleWin/source/frontends/qapple/graphicscache.h
Andrea Odetti c1b7d96dd1 Add (slow) support for HiRes graphics.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2017-10-14 19:18:44 +01:00

34 lines
470 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;
}
private:
QPixmap myCharset40;
QPixmap myCharset80;
QPixmap myHiResMono;
};
#endif // GRAPHICSCACHE_H