improve delays created by vicon drawing locks, reset_cache segv fix, gang track toolt...
[goodguy/cinelerra.git] / cinelerra-5.1 / guicast / bcresources.inc
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef BCRESOURCES_INC
23 #define BCRESOURCES_INC
24
25
26 class BC_Resources;
27
28 #define TOTAL_ICONS 5
29 #define TOTAL_7SEGMENT 20
30
31 // Length of language and region buffer
32 // Assuming max length of both strings is 3
33 #define LEN_LANG 4
34 // Length of encoding
35 #define LEN_ENCOD 64
36
37 // Icon types for each list item
38 #define ICON_FOLDER      0      // Private bitmap
39 #define ICON_UNKNOWN     1      // Private bitmap
40 #define ICON_FILM        2      // Private bitmap
41 #define ICON_SOUND       3      // Private bitmap
42 #define ICON_LABEL       4      // Private bitmap
43 #define ICON_COLUMN      5      // Private bitmap
44
45 #endif