blob: 095f0f6e36f880a24d18f7180d5e1e7f08d77e35 (
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
27
28
29
30
31
32
33
34
35
36
|
#ifndef _BACKGROUND_H
#define _BACKGROUND_H
#include <qstring.h>
class QPixmap;
class QImage;
class Background
{
public:
Background();
~Background();
bool tile;
bool load(const QString &file, short width, short height);
void sizeChanged(int newW, int newH);
void scaleModeChanged();
QPixmap *getBackground() {return backgroundPixmap;}
QPixmap *getShadowBackground() {return backgroundShadowPixmap;}
private:
void sourceToBackground();
int tileMode; // scale background = 0, tile = 1
QImage *backgroundImage;
QImage *sourceImage;
QPixmap *backgroundPixmap;
QPixmap *backgroundShadowPixmap;
QString filename;
short w;
short h;
};
#endif
|