Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / guicast / bcpopup.h
bloba9e210df2adafec987c146ca5749f8ebcb224a19
1 #ifndef BCPOPUP_H
2 #define BCPOPUP_H
4 #include "arraylist.h"
5 #include "bcpixmap.inc"
6 #include "bcwindowbase.h"
8 class BC_Popup : public BC_WindowBase
10 public:
11 BC_Popup(BC_WindowBase *parent_window,
12 int x,
13 int y,
14 int w,
15 int h,
16 int bg_color,
17 int hide = 0,
18 BC_Pixmap *bg_pixmap = 0);
19 virtual ~BC_Popup();
21 int initialize() { return 0; };
22 private:
25 class BC_FullScreen : public BC_WindowBase
27 public:
28 BC_FullScreen(BC_WindowBase *parent_window,
29 int w,
30 int h,
31 int bg_color,
32 int vm_scale,
33 int hide = 0,
34 BC_Pixmap *bg_pixmap = 0);
35 virtual ~BC_FullScreen();
38 #endif