aboutsummaryrefslogtreecommitdiff
path: root/include/aoscene.h
blob: 7c1ef6fdd01ba22a2a3909cf58882138cf0b8138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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