source: Sophya/trunk/Poubelle/PI/pipixmapmac.h@ 222

Last change on this file since 222 was 222, checked in by ansari, 26 years ago

Creation module DPC/PI Reza 09/04/99

File size: 627 bytes
Line 
1#ifndef PIPIXMAPMAC_H_SEEN
2#define PIPIXMAPMAC_H_SEEN
3
4#include "pipixmapgen.h"
5
6class PIPixmapMac : public PIPixmapGen {
7
8public:
9 PIPixmapMac(PIContainerGen *par, char *nom,
10 int sx=10, int sy=10, int px=0, int py=0);
11 virtual ~PIPixmapMac();
12
13 virtual void SetPixmap(unsigned char *pix, int sx, int sy, bool refr=true);
14 virtual void Draw(PIGraphic* g);
15 virtual void Draw(PIGraphic* g, int x0, int y0, int dx, int dy);
16 virtual void Refresh();
17 virtual void DrawOff();
18 virtual void Resize();
19protected:
20 GWorldPtr mGWorld;
21};
22
23typedef PIPixmapMac PIPixmap;
24
25
26#endif
Note: See TracBrowser for help on using the repository browser.