Mercurial > geeqie
annotate src/view_dir_list.h @ 475:48c8e49b571c
updated copyright in source files
| author | nadvornik |
|---|---|
| date | Mon, 21 Apr 2008 21:46:38 +0000 |
| parents | ddabc4873a3f |
| children | d6a7fb4b8e7c |
| 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 #ifndef VIEW_DIR_LIST_H | |
| 14 #define VIEW_DIR_LIST_H | |
| 15 | |
| 16 | |
|
384
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
383
diff
changeset
|
17 ViewDir *vdlist_new(ViewDir *vd, const gchar *path); |
| 9 | 18 |
| 396 | 19 void vdlist_select_row(ViewDir *vd, FileData *fd); |
| 20 | |
|
384
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
383
diff
changeset
|
21 gint vdlist_set_path(ViewDir *vd, const gchar *path); |
|
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
383
diff
changeset
|
22 void vdlist_refresh(ViewDir *vd); |
| 9 | 23 |
|
384
392dd6541d51
Merge parts of view_dir_list/tree constructors/destructors to
zas_
parents:
383
diff
changeset
|
24 const gchar *vdlist_row_get_path(ViewDir *vd, gint row); |
|
383
499d7ba62261
Move some dnd common code from view_dir_list.c and view_dir_tree.c
zas_
parents:
380
diff
changeset
|
25 gint vdlist_find_row(ViewDir *vd, FileData *fd, GtkTreeIter *iter); |
| 9 | 26 |
|
388
5186f8e38cb8
Make directory view popup menu common and move it to view_dir.{c,h}.
zas_
parents:
384
diff
changeset
|
27 void vdlist_rename_by_row(ViewDir *vd, FileData *fd); |
|
5186f8e38cb8
Make directory view popup menu common and move it to view_dir.{c,h}.
zas_
parents:
384
diff
changeset
|
28 FileData *vdlist_row_by_path(ViewDir *vd, const gchar *path, gint *row); |
|
5186f8e38cb8
Make directory view popup menu common and move it to view_dir.{c,h}.
zas_
parents:
384
diff
changeset
|
29 |
|
401
0a2e1b130a25
Add some wrappers in view_dir.c and simplify even more.
zas_
parents:
396
diff
changeset
|
30 gint vdlist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data); |
|
0a2e1b130a25
Add some wrappers in view_dir.c and simplify even more.
zas_
parents:
396
diff
changeset
|
31 gint vdlist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data); |
|
0a2e1b130a25
Add some wrappers in view_dir.c and simplify even more.
zas_
parents:
396
diff
changeset
|
32 |
|
0a2e1b130a25
Add some wrappers in view_dir.c and simplify even more.
zas_
parents:
396
diff
changeset
|
33 void vdlist_destroy_cb(GtkWidget *widget, gpointer data); |
| 9 | 34 |
| 35 #endif |
