AppleWin/source/frontends/qapple/qapple.h
Andrea Odetti c9fb116464 Various improvements over the QLabel based approach.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2017-10-14 19:18:44 +01:00

30 lines
445 B
C++

#ifndef QAPPLE_H
#define QAPPLE_H
#include "ui_qapple.h"
class Emulator;
class QApple : public QMainWindow, private Ui::QApple
{
Q_OBJECT
public:
explicit QApple(QWidget *parent = 0);
protected:
virtual void timerEvent(QTimerEvent *event);
private slots:
void on_actionStart_triggered();
void on_actionPause_triggered();
private:
Emulator * myEmulator;
int myMSGap;
int myTimerID;
};
#endif // QAPPLE_H