Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Weikert <elubie@gmx.net>2011-03-14 22:56:13 +0300
committerAndrea Weikert <elubie@gmx.net>2011-03-14 22:56:13 +0300
commit41c27cd6efa70f9a7a8135a0dcbf483c766db18c (patch)
treef646f073692d2a632689ad1118a0ed69cc995754 /source/blender/editors/space_file/filelist.h
parentd789484dc707ca46ab84af0fe1c14eb9e4ce5933 (diff)
== filebrowser ==
Cleanup of selection code. Also fixed bug where selection outside the tiles was clamped and file in last column was selected.
Diffstat (limited to 'source/blender/editors/space_file/filelist.h')
-rw-r--r--source/blender/editors/space_file/filelist.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/space_file/filelist.h b/source/blender/editors/space_file/filelist.h
index 9af63ee1c1f..399a8ff7943 100644
--- a/source/blender/editors/space_file/filelist.h
+++ b/source/blender/editors/space_file/filelist.h
@@ -50,6 +50,8 @@ struct Scene;
struct Main;
struct rcti;
struct ReportList;
+struct FileSelection;
+
struct FileList * filelist_new(short type);
void filelist_init_icons(void);
@@ -61,6 +63,7 @@ int filelist_numfiles(struct FileList* filelist);
const char * filelist_dir(struct FileList* filelist);
void filelist_setdir(struct FileList* filelist, const char *dir);
struct direntry * filelist_file(struct FileList* filelist, int index);
+void filelist_select(struct FileList* filelist, FileSelection* sel, short select, unsigned int flag);
void filelist_hidedot(struct FileList* filelist, short hide);
void filelist_setfilter(struct FileList* filelist, unsigned int filter);
void filelist_setfilter_types(struct FileList* filelist, const char *filter_glob);