You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
416 B
22 lines
416 B
#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
|