Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / guicast / bcpixmapsw.h
blobd02084e861a3b52418327e58e37f004dc0e6f757
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
29 // Local Variables:
30 // mode: C++
31 // c-file-style: "linux"
32 // End: