4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version. The Blender
10 * Foundation also sells licenses for use in proprietary software under
11 * the Blender License. See http://www.blender.org/BL/ for information
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * The Original Code is Copyright (C) 2007 Blender Foundation.
24 * All rights reserved.
26 * The Original Code is: all of this file.
28 * Contributor(s): none yet.
30 * ***** END GPL LICENSE BLOCK *****
45 struct FileList * filelist_new();
46 void filelist_init_icons();
47 void filelist_free_icons();
48 struct FileList * filelist_copy(struct FileList* filelist);
49 int filelist_find(struct FileList* filelist, char *file);
50 void filelist_free(struct FileList* filelist);
51 void filelist_freelib(struct FileList* filelist);
52 void filelist_sort(struct FileList* filelist, short sort);
53 int filelist_numfiles(struct FileList* filelist);
54 const char * filelist_dir(struct FileList* filelist);
55 void filelist_setdir(struct FileList* filelist, const char *dir);
56 struct direntry * filelist_file(struct FileList* filelist, int index);
57 void filelist_hidedot(struct FileList* filelist, short hide);
58 void filelist_setfilter(struct FileList* filelist, unsigned int filter);
59 void filelist_filter(struct FileList* filelist);
60 void filelist_swapselect(struct FileList* filelist);
61 void filelist_imgsize(struct FileList* filelist, short w, short h);
62 void filelist_loadimage(struct FileList* filelist, int index);
63 void filelist_loadimage_timer(struct FileList* filelist);
64 struct ImBuf * filelist_getimage(struct FileList* filelist, int index);
65 struct ImBuf * filelist_geticon(struct FileList* filelist, int index);
66 short filelist_changed(struct FileList* filelist);
67 void filelist_readdir(struct FileList* filelist);
68 int filelist_maxnamelen(struct FileList* filelist);
70 int filelist_empty(struct FileList* filelist);
71 void filelist_parent(struct FileList* filelist);
72 void filelist_setfiletypes(struct FileList* filelist, short has_quicktime);
73 void filelist_settype(struct FileList* filelist, int type);
74 short filelist_gettype(struct FileList* filelist);