9
|
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
|