Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git] / guicast / bcfilebox.inc
blob9afb6a10581d63786a9d95441e0bff8bc9eb0cba
1 #ifndef BCFILEBOX_INC
2 #define BCFILEBOX_INC
4 class BC_FileBox;
7 // Display modes
8 #define FILEBOX_LIST    0
9 #define FILEBOX_ICONS   1
12 #define FILEBOX_COLUMNS 4
13 //#define DIRBOX_COLUMNS 2
15 // Column definitions
16 #define FILEBOX_NAME 0
17 #define FILEBOX_SIZE 1
18 #define FILEBOX_DATE 2
19 #define FILEBOX_EXTENSION 3
21 #define FILEBOX_NAME_TEXT _("File")
22 #define FILEBOX_SIZE_TEXT _("Size")
23 #define FILEBOX_DATE_TEXT _("Date")
24 #define FILEBOX_EXTENSION_TEXT _("Ext.")
26 #define FILEBOX_HISTORY_SIZE 16
28 #endif