~vanvugt/ubuntu/oneiric/geeqie/fix-788321

« back to all changes in this revision

Viewing changes to src/view_dir_list.h

  • Committer: Bazaar Package Importer
  • Author(s): Michal Čihař
  • Date: 2008-06-10 08:42:37 UTC
  • Revision ID: james.westby@ubuntu.com-20080610084237-foorlvywoxj92o04
Tags: upstream-1.0~alpha1
Import upstream version 1.0~alpha1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Geeqie
 
3
 * (C) 2004 John Ellis
 
4
 * Copyright (C) 2008 The Geeqie Team
 
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
 
 
17
ViewDir *vdlist_new(ViewDir *vd, const gchar *path);
 
18
 
 
19
void vdlist_select_row(ViewDir *vd, FileData *fd);
 
20
 
 
21
gint vdlist_set_path(ViewDir *vd, const gchar *path);
 
22
void vdlist_refresh(ViewDir *vd);
 
23
 
 
24
const gchar *vdlist_row_get_path(ViewDir *vd, gint row);
 
25
gint vdlist_find_row(ViewDir *vd, FileData *fd, GtkTreeIter *iter);
 
26
 
 
27
void vdlist_rename_by_row(ViewDir *vd, FileData *fd);
 
28
FileData *vdlist_row_by_path(ViewDir *vd, const gchar *path, gint *row);
 
29
 
 
30
gint vdlist_press_key_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
 
31
gint vdlist_press_cb(GtkWidget *widget, GdkEventButton *bevent, gpointer data);
 
32
 
 
33
void vdlist_destroy_cb(GtkWidget *widget, gpointer data);
 
34
 
 
35
#endif