Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / guicast / bcdelete.h
blob3ec124df5d8c9cda3ebec1379312841794e05254
1 #ifndef BCDELETE_H
2 #define BCDELETE_H
6 #include "bcdialog.h"
7 #include "bcfilebox.inc"
9 class BC_DeleteFile : public BC_Window
11 public:
12 BC_DeleteFile(BC_FileBox *filebox, int x, int y);
13 ~BC_DeleteFile();
14 void create_objects();
15 BC_FileBox *filebox;
16 ArrayList<BC_ListBoxItem*> *data;
19 class BC_DeleteList : public BC_ListBox
21 public:
22 BC_DeleteList(BC_FileBox *filebox,
23 int x,
24 int y,
25 int w,
26 int h,
27 ArrayList<BC_ListBoxItem*> *data);
28 BC_FileBox *filebox;
31 class BC_DeleteThread : public BC_DialogThread
33 public:
34 BC_DeleteThread(BC_FileBox *filebox);
35 void handle_done_event(int result);
36 BC_Window* new_gui();
38 BC_FileBox *filebox;
48 #endif