add formatting trailer for emacs
[cinelerra_cv/ct.git] / guicast / bcbar.h
blob581b5ebedbb21451654b6a8333ee6b27ac3da550
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
27 // Local Variables:
28 // mode: C++
29 // c-file-style: "linux"
30 // End: