aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/epixmap.cpp
blob: 797c675991f60ad4fc26d7169d11300cd2bd5bbf (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
37
38
39
40
41
42
43
44
45
46
47
48
#include <lib/gui/epixmap.h>
#include <lib/gdi/epng.h>
#include <lib/gui/ewidgetdesktop.h>

ePixmap::ePixmap(eWidget *parent): eWidget(parent)
{
}

void ePixmap::setPixmap(gPixmap *pixmap)
{
	m_pixmap = pixmap;
	event(evtChangedPixmap);
}

void ePixmap::setPixmapFromFile(const char *filename)
{
	loadPNG(m_pixmap, filename);
	
		// TODO
	getDesktop()->makeCompatiblePixmap(*m_pixmap);
	event(evtChangedPixmap);
}

int ePixmap::event(int event, void *data, void *data2)
{
	switch (event)
	{
	case evtPaint:
	{
		ePtr<eWindowStyle> style;
		
		getStyle(style);
		
		eWidget::event(event, data, data2);
		
		gPainter &painter = *(gPainter*)data2;
		if (m_pixmap)
			painter.blit(m_pixmap, ePoint(0, 0));
		
		return 0;
	}
	case evtChangedPixmap:
		invalidate();
		return 0;
	default:
		return eWidget::event(event, data, data2);
	}
}