Mercurial > geeqie.yaz
annotate src/bar_info.h @ 1164:3692efcbd325
Fix compilation warnings.
author | zas_ |
---|---|
date | Thu, 20 Nov 2008 11:46:43 +0000 |
parents | 1646720364cf |
children | f6449c17306b |
rev | line source |
---|---|
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 BAR_INFO_H | |
15 #define BAR_INFO_H | |
16 | |
17 | |
138 | 18 GtkWidget *bar_info_new(FileData *fd, gint metadata_only, GtkWidget *bounding_widget); |
9 | 19 void bar_info_close(GtkWidget *bar); |
20 | |
138 | 21 void bar_info_set(GtkWidget *bar, FileData *fd); |
9 | 22 gint bar_info_event(GtkWidget *bar, GdkEvent *event); |
23 | |
24 void bar_info_set_selection_func(GtkWidget *bar, GList *(*list_func)(gpointer data), gpointer data); | |
25 void bar_info_selection(GtkWidget *bar, gint count); | |
26 | |
138 | 27 void bar_info_maint_renamed(GtkWidget *bar, FileData *fd); |
9 | 28 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
29 gint comment_write(FileData *fd, GList *keywords, const gchar *comment); |
9 | 30 |
188
0584cb78aa14
write comment and keywords to xmp, sidecars are used if exist
nadvornik
parents:
138
diff
changeset
|
31 gint comment_read(FileData *fd, GList **keywords, gchar **comment); |
9 | 32 |
33 GList *keyword_list_pull(GtkWidget *text_widget); | |
34 void keyword_list_push(GtkWidget *textview, GList *list); | |
35 | |
36 | |
37 #endif | |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
490
diff
changeset
|
38 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |