blob: 220db1ffc527b6eaede74848446ab6def4841337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef __lib_gui_epximap_h
#define __lib_gui_epixmap_h
#include <lib/gui/ewidget.h>
class ePixmap: public eWidget
{
public:
ePixmap(eWidget *parent);
void setPixmap(gPixmap *pixmap);
void setPixmapFromFile(const char *filename);
protected:
ePtr<gPixmap> m_pixmap;
int event(int event, void *data=0, void *data2=0);
private:
enum eLabelEvent
{
evtChangedPixmap = evtUserWidget,
};
};
#endif
|