blob: 08c286e18368443dcb69f319737ba3c4a4757128 (
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
|
#ifndef AOSCENE_H
#define AOSCENE_H
#include <QLabel>
#include <QDebug>
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;
AOApplication *ao_app;
};
#endif // AOSCENE_H
|