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 BAR_INFO_H
|
|
14 #define BAR_INFO_H
|
|
15
|
|
16
|
138
|
17 GtkWidget *bar_info_new(FileData *fd, gint metadata_only, GtkWidget *bounding_widget);
|
9
|
18 void bar_info_close(GtkWidget *bar);
|
|
19
|
138
|
20 void bar_info_set(GtkWidget *bar, FileData *fd);
|
9
|
21 gint bar_info_event(GtkWidget *bar, GdkEvent *event);
|
|
22
|
|
23 void bar_info_set_selection_func(GtkWidget *bar, GList *(*list_func)(gpointer data), gpointer data);
|
|
24 void bar_info_selection(GtkWidget *bar, gint count);
|
|
25
|
|
26 void bar_info_size_request(GtkWidget *bar, gint width);
|
|
27
|
138
|
28 void bar_info_maint_renamed(GtkWidget *bar, FileData *fd);
|
9
|
29
|
138
|
30 gint comment_write(gchar *path, GList *keywords, const gchar *comment);
|
|
31 gint comment_cache_write(FileData *fd, GList *keywords, const gchar *comment);
|
9
|
32
|
138
|
33 gint comment_read(gchar *path, GList **keywords, gchar **comment);
|
|
34 gint comment_cache_read(FileData *fd, GList **keywords, gchar **comment);
|
9
|
35
|
|
36 GList *keyword_list_pull(GtkWidget *text_widget);
|
|
37 void keyword_list_push(GtkWidget *textview, GList *list);
|
|
38
|
|
39
|
|
40 #endif
|