blob: 8c96445175ebdd22a96525cd31c86b158839a1a8 (
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
|
#ifndef AOSCENE_H
#define AOSCENE_H
#include <QLabel>
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
|