
CR likely stands for "CentsRaidensnake." Like the Case Cafe mega-merge before it, this was not a clean merge, and it had to be split up into two parts: the actual changes, and the attempt it made to reformat the entire code via clang-format. This branch had a complicated set of changes that would be difficult to describe in this commit message. It would be better described in a proper changelog.
28 lines
442 B
C++
28 lines
442 B
C++
#ifndef AOSCENE_H
|
|
#define AOSCENE_H
|
|
|
|
#include <QLabel>
|
|
#include <QDebug>
|
|
#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
|