Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / guicast / bcbar.h
blob10a8d303da7cbc70c2d234854be60759e6e9266e
1 #ifndef BCBAR_H
2 #define BCBAR_H
5 #include "bcsubwindow.h"
6 #include "vframe.inc"
8 class BC_Bar : public BC_SubWindow
10 public:
11 BC_Bar(int x, int y, int w, VFrame *data = 0);
12 virtual ~BC_Bar();
14 int initialize();
15 void set_image(VFrame *data);
16 void draw();
17 int reposition_window(int x, int y, int w);
18 int resize_event(int w, int h);
20 BC_Pixmap *image;
21 VFrame *data;
25 #endif