Remove commented out code.
[geeqie.git] / src / collect-table.h
1 /*
2  * Geeqie
3  * (C) 2004 John Ellis
4  * Copyright (C) 2008 - 2012 The Geeqie Team
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
22 void collection_table_add_filelist(CollectTable *ct, GList *list);
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
38 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */