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
|