blob: 4713be0a51ca1ae15d6bcbd42da8eaf4c1b342d6 (
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
|
//This class represents a static theme-dependent image
#ifndef AOIMAGE_H
#define AOIMAGE_H
#include "aoapplication.h"
#include <QLabel>
#include <QDebug>
class AOImage : public QLabel
{
public:
AOImage(QWidget *parent, AOApplication *p_ao_app);
~AOImage();
QWidget *m_parent;
AOApplication *ao_app;
void set_image(QString p_image);
void set_image_from_path(QString p_path);
void set_size_and_pos(QString identifier);
};
#endif // AOIMAGE_H
|