00001 #ifndef BCPIXMAPSW_H 00002 #define BCPIXMAPSW_H 00003 00004 #include "bcpixmapsw.h" 00005 #include "vframe.inc" 00006 #include "bcsubwindow.h" 00007 00008 00009 class BC_PixmapSW : public BC_SubWindow 00010 { 00011 public: 00012 BC_PixmapSW(int x, int y, BC_Pixmap *thepixmap); 00013 virtual ~BC_PixmapSW(); 00014 00015 int initialize(); 00016 virtual int handle_event() { return 0; }; 00017 virtual char* get_caption() { return ""; }; 00018 00019 int reposition_widget(int x, int y); 00020 00021 private: 00022 int draw(); 00023 BC_Pixmap *thepixmap; 00024 }; 00025 00026 00027 #endif
1.4.4