Mercurial > geeqie.yaz
annotate src/collect-table.h @ 1274:8fcdfacce91d
test TryExec,
xdg_data_home added to the list of directories
author | nadvornik |
---|---|
date | Sun, 01 Feb 2009 22:35:40 +0000 |
parents | 1646720364cf |
children | 8b89e3ff286b |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
475 | 4 * Copyright (C) 2008 The Geeqie Team |
9 | 5 * |
6 * Author: John Ellis | |
7 * | |
8 * This software is released under the GNU General Public License (GNU GPL). | |
9 * Please read the included file COPYING for more information. | |
10 * This software comes with no warranty of any kind, use at your own risk! | |
11 */ | |
12 | |
13 | |
14 #ifndef COLLECT_TABLE_H | |
15 #define COLLECT_TABLE_H | |
16 | |
17 #include "collect.h" | |
18 | |
19 void collection_table_select_all(CollectTable *ct); | |
20 void collection_table_unselect_all(CollectTable *ct); | |
21 | |
138 | 22 void collection_table_add_filelist(CollectTable *ct, GList *list); |
9 | 23 |
24 void collection_table_file_update(CollectTable *ct, CollectInfo *ci); | |
25 void collection_table_file_add(CollectTable *ct, CollectInfo *ci); | |
26 void collection_table_file_insert(CollectTable *ct, CollectInfo *ci); | |
27 void collection_table_file_remove(CollectTable *ct, CollectInfo *ci); | |
28 void collection_table_refresh(CollectTable *ct); | |
29 | |
30 CollectTable *collection_table_new(CollectionData *cd); | |
31 | |
32 void collection_table_set_labels(CollectTable *ct, GtkWidget *status, GtkWidget *extra); | |
33 | |
34 CollectInfo *collection_table_get_focus_info(CollectTable *ct); | |
35 GList *collection_table_selection_get_list(CollectTable *ct); | |
36 | |
37 #endif | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
475
diff
changeset
|
38 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |