r877: Fix files that were missing from a make dist tarball.
[cinelerra_cv.git] / guicast / bcpixmapsw.h
blob477ffce65a1f48df8721e14836cfc950ace1ee7e
1 #ifndef BCPIXMAPSW_H
2 #define BCPIXMAPSW_H
4 #include "bcpixmapsw.h"
5 #include "vframe.inc"
6 #include "bcsubwindow.h"
9 class BC_PixmapSW : public BC_SubWindow
11 public:
12 BC_PixmapSW(int x, int y, BC_Pixmap *thepixmap);
13 virtual ~BC_PixmapSW();
15 int initialize();
16 virtual int handle_event() { return 0; };
17 virtual char* get_caption() { return ""; };
19 int reposition_widget(int x, int y);
21 private:
22 int draw();
23 BC_Pixmap *thepixmap;
27 #endif