comparison src/collect-table.h @ 9:d907d608745f

Sync to GQview 1.5.9 release. ######## DO NOT BASE ENHANCEMENTS OR TRANSLATION UPDATES ON CODE IN THIS CVS! This CVS is never up to date with current development and is provided solely for reference purposes, please use the latest official release package when making any changes or translation updates. ########
author gqview
date Sat, 26 Feb 2005 00:13:35 +0000
parents
children 71e1ebee420e
comparison
equal deleted inserted replaced
8:e0d0593d519e 9:d907d608745f
1 /*
2 * GQview
3 * (C) 2004 John Ellis
4 *
5 * Author: John Ellis
6 *
7 * This software is released under the GNU General Public License (GNU GPL).
8 * Please read the included file COPYING for more information.
9 * This software comes with no warranty of any kind, use at your own risk!
10 */
11
12
13 #ifndef COLLECT_TABLE_H
14 #define COLLECT_TABLE_H
15
16 #include "collect.h"
17
18 void collection_table_select_all(CollectTable *ct);
19 void collection_table_unselect_all(CollectTable *ct);
20
21 void collection_table_add_path_list(CollectTable *ct, GList *list);
22
23 void collection_table_file_update(CollectTable *ct, CollectInfo *ci);
24 void collection_table_file_add(CollectTable *ct, CollectInfo *ci);
25 void collection_table_file_insert(CollectTable *ct, CollectInfo *ci);
26 void collection_table_file_remove(CollectTable *ct, CollectInfo *ci);
27 void collection_table_refresh(CollectTable *ct);
28
29 CollectTable *collection_table_new(CollectionData *cd);
30
31 void collection_table_set_labels(CollectTable *ct, GtkWidget *status, GtkWidget *extra);
32
33 CollectInfo *collection_table_get_focus_info(CollectTable *ct);
34 GList *collection_table_selection_get_list(CollectTable *ct);
35
36 #endif
37