
Indentation fixed to 2 spaces per tab. Braces set to Stroustrup style. Lines reflow at 80 characters. One-line method bodies are on the same line as the signature. Space always after `//`. No indentation on preprocessor macros. Includes are sorted lexicographically. If you don't want to see this commit on blames, use the hidden whitespace option on GitHub, or use `-w` in git-blame.
27 lines
442 B
C++
27 lines
442 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;
|
|
QString last_image;
|
|
};
|
|
|
|
#endif // AOSCENE_H
|