aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/epixmap.h
blob: e03c76bf197f50c497134640802b324a940dcb03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __epixmap_h
#define __epixmap_h

#include "ewidget.h"
class gPixmap;

class ePixmap: public eWidget
{
	ePoint position;
public:
	ePixmap(eWidget *parent);
	~ePixmap();
	
	void redrawWidget(gPainter *paint, const eRect &area);
	void eraseBackground(gPainter *target, const eRect &area);
};

#endif