
If you don't want to see this commit on blames, use the hidden whitespace option on GitHub, or use `-w` in git-blame.
26 lines
420 B
C++
26 lines
420 B
C++
#ifndef AOSCENE_H
|
|
#define AOSCENE_H
|
|
|
|
#include <QDebug>
|
|
#include <QLabel>
|
|
#include <QMovie>
|
|
|
|
class Courtroom;
|
|
class AOApplication;
|
|
|
|
class AOScene : public QLabel {
|
|
Q_OBJECT
|
|
public:
|
|
explicit AOScene(QWidget *parent, AOApplication *p_ao_app);
|
|
|
|
void set_image(QString p_image);
|
|
void set_legacy_desk(QString p_image);
|
|
|
|
private:
|
|
QWidget *m_parent;
|
|
QMovie *m_movie;
|
|
AOApplication *ao_app;
|
|
};
|
|
|
|
#endif // AOSCENE_H
|