00001 #ifndef BCBAR_H 00002 #define BCBAR_H 00003 00004 00005 #include "bcsubwindow.h" 00006 #include "vframe.inc" 00007 00008 class BC_Bar : public BC_SubWindow 00009 { 00010 public: 00011 BC_Bar(int x, int y, int w, VFrame *data = 0); 00012 virtual ~BC_Bar(); 00013 00014 int initialize(); 00015 void set_image(VFrame *data); 00016 void draw(); 00017 int reposition_window(int x, int y, int w); 00018 int resize_event(int w, int h); 00019 00020 BC_Pixmap *image; 00021 VFrame *data; 00022 }; 00023 00024 00025 #endif
1.4.4