Mercurial > geeqie.yaz
annotate src/view_file_icon.h @ 1638:ceafe3731568
Fix up compilation using make -jN: sometimes it fails due to order of headers inclusion.
author | zas_ |
---|---|
date | Thu, 11 Jun 2009 17:34:37 +0000 |
parents | 74a7f9ea32a1 |
children | 5276dabe836f |
rev | line source |
---|---|
9 | 1 /* |
196 | 2 * Geeqie |
9 | 3 * (C) 2004 John Ellis |
1284 | 4 * Copyright (C) 2008 - 2009 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 #ifndef VIEW_FILE_ICON_H | |
14 #define VIEW_FILE_ICON_H | |
15 | |
1453 | 16 gboolean vficon_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data); |
17 gboolean vficon_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data); | |
18 gboolean vficon_release_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data); | |
9 | 19 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
20 void vficon_dnd_init(ViewFile *vf); |
573
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
558
diff
changeset
|
21 |
2996f1bbc305
Drop ViewFileList, use ViewFile and ViewFileInfoList instead.
zas_
parents:
558
diff
changeset
|
22 void vficon_destroy_cb(GtkWidget *widget, gpointer data); |
783 | 23 ViewFile *vficon_new(ViewFile *vf, FileData *dir_fd); |
9 | 24 |
1453 | 25 gboolean vficon_set_fd(ViewFile *vf, FileData *dir_fd); |
26 gboolean vficon_refresh(ViewFile *vf); | |
9 | 27 |
1453 | 28 void vficon_sort_set(ViewFile *vf, SortType type, gboolean ascend); |
9 | 29 |
1453 | 30 void vficon_marks_set(ViewFile *vf, gboolean enable); |
852 | 31 |
634 | 32 GList *vficon_pop_menu_file_list(ViewFile *vf); |
637 | 33 void vficon_pop_menu_view_cb(GtkWidget *widget, gpointer data); |
34 void vficon_pop_menu_rename_cb(GtkWidget *widget, gpointer data); | |
35 void vficon_pop_menu_refresh_cb(GtkWidget *widget, gpointer data); | |
36 void vficon_popup_destroy_cb(GtkWidget *widget, gpointer data); | |
659
542bb47fef04
Merge vflist_pop_menu() and vficon_pop_menu() into vf_pop_menu().
zas_
parents:
637
diff
changeset
|
37 void vficon_pop_menu_show_names_cb(GtkWidget *widget, gpointer data); |
634 | 38 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
39 FileData *vficon_index_get_data(ViewFile *vf, gint row); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
40 gint vficon_index_by_fd(ViewFile *vf, FileData *in_fd); |
736 | 41 guint vficon_count(ViewFile *vf, gint64 *bytes); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
42 GList *vficon_get_list(ViewFile *vf); |
9 | 43 |
1453 | 44 gboolean vficon_index_is_selected(ViewFile *vf, gint row); |
736 | 45 guint vficon_selection_count(ViewFile *vf, gint64 *bytes); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
46 GList *vficon_selection_get_list(ViewFile *vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
47 GList *vficon_selection_get_list_by_index(ViewFile *vf); |
9 | 48 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
49 void vficon_select_all(ViewFile *vf); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
50 void vficon_select_none(ViewFile *vf); |
601 | 51 void vficon_select_invert(ViewFile *vf); |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
52 void vficon_select_by_fd(ViewFile *vf, FileData *fd); |
9 | 53 |
574
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
54 void vficon_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode); |
3da75054d4e1
Drop ViewFileIcon, use ViewFile and ViewFileInfoIcon instead.
zas_
parents:
573
diff
changeset
|
55 void vficon_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode); |
9 | 56 |
1606
74a7f9ea32a1
Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents:
1506
diff
changeset
|
57 |
74a7f9ea32a1
Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents:
1506
diff
changeset
|
58 void vficon_thumb_progress_count(GList *list, gint *count, gint *done); |
74a7f9ea32a1
Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents:
1506
diff
changeset
|
59 void vficon_set_thumb_fd(ViewFile *vf, FileData *fd); |
74a7f9ea32a1
Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents:
1506
diff
changeset
|
60 FileData *vficon_thumb_next_fd(ViewFile *vf); |
74a7f9ea32a1
Merge common thumb code from view_file_list and view_file_icon to view_file.
zas_
parents:
1506
diff
changeset
|
61 void vficon_thumb_reset_all(ViewFile *vf); |
1506
d352a44545a6
Force thumbnails refreshing when thumbnails dimensions are modified through Preferences.
zas_
parents:
1503
diff
changeset
|
62 |
9 | 63 #endif |
1055
1646720364cf
Adding a vim modeline to all files - patch by Klaus Ethgen
nadvornik
parents:
852
diff
changeset
|
64 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */ |