blob: d09d22c54eb0ba67df9b7a87c733d27f78d8ac25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef KJBACKGROUND_H
#define KJBACKGROUND_H
#include "kjwidget.h"
//#include "kjloader.h"
class KJLoader;
#include <tqpainter.h>
class KJBackground : public KJWidget
{
public:
KJBackground(KJLoader *);
virtual void paint(TQPainter *, const TQRect &rect);
virtual bool mousePress(const TQPoint &) {return false;}
virtual void mouseRelease(const TQPoint &, bool) {}
private:
TQPixmap mBackground;
};
#endif
|