AppleWin/source/frontends/qt/emulator.h

39 lines
720 B
C
Raw Normal View History

#ifndef EMULATOR_H
#define EMULATOR_H
#include <QFrame>
class QMdiSubWindow;
namespace Ui {
class Emulator;
}
class Emulator : public QFrame
{
Q_OBJECT
public:
explicit Emulator(QWidget *parent = nullptr);
~Emulator();
void redrawScreen(); // regenerate image and repaint
void refreshScreen(const bool force);
bool saveScreen(const QString & filename) const;
void loadVideoSettings();
void unloadVideoSettings();
void displayLogo();
void setZoom(QMdiSubWindow * window, const int x);
void set43AspectRatio(QMdiSubWindow * window);
private:
void setVideoSize(QMdiSubWindow * window, const QSize & size);
private:
Ui::Emulator *ui;
};
#endif // EMULATOR_H