~ubuntu-branches/ubuntu/karmic/gtk-gnutella/karmic

« back to all changes in this revision

Viewing changes to src/ui/gtk/fileinfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Anand Kumria
  • Date: 2005-08-04 11:32:05 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050804113205-q746i4lgo3rtlegn
Tags: 0.95.4-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: fileinfo.h,v 1.3 2005/06/25 01:37:44 daichik Exp $
 
3
 *
 
4
 * Copyright (c) 2003, Richard Eckart
 
5
 *
 
6
 *----------------------------------------------------------------------
 
7
 * This file is part of gtk-gnutella.
 
8
 *
 
9
 *  gtk-gnutella is free software; you can redistribute it and/or modify
 
10
 *  it under the terms of the GNU General Public License as published by
 
11
 *  the Free Software Foundation; either version 2 of the License, or
 
12
 *  (at your option) any later version.
 
13
 *
 
14
 *  gtk-gnutella is distributed in the hope that it will be useful,
 
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *  GNU General Public License for more details.
 
18
 *
 
19
 *  You should have received a copy of the GNU General Public License
 
20
 *  along with gtk-gnutella; if not, write to the Free Software
 
21
 *  Foundation, Inc.:
 
22
 *      59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
23
 *----------------------------------------------------------------------
 
24
 */
 
25
 
 
26
/**
 
27
 * @ingroup gtk
 
28
 * @file
 
29
 *
 
30
 * Displaying of file information in the GUI.
 
31
 *
 
32
 * @author Richard Eckart
 
33
 * @date 2003
 
34
 */
 
35
 
 
36
#ifndef _gtk_fileinfo_h_
 
37
#define _gtk_fileinfo_h_
 
38
 
 
39
#include "gui.h"
 
40
 
 
41
void fi_gui_init(void);
 
42
void fi_gui_update_display(time_t now);
 
43
void fi_gui_shutdown(void);
 
44
 
 
45
#ifndef USE_GTK2
 
46
void on_clist_fileinfo_resize_column(GtkCList *, gint, gint, gpointer);
 
47
gboolean on_clist_fileinfo_button_press_event(
 
48
    GtkWidget *, GdkEventButton *event, gpointer user_data);
 
49
 
 
50
void on_clist_fileinfo_select_row(
 
51
    GtkCList *, gint, gint, GdkEvent *, gpointer user_data);
 
52
 
 
53
void on_clist_fileinfo_unselect_row(
 
54
    GtkCList *, gint, gint, GdkEvent *, gpointer user_data);
 
55
#endif /* USE_GTK2 */
 
56
 
 
57
void on_button_fi_purge_clicked(
 
58
        GtkButton *button, gpointer user_data);
 
59
 
 
60
void on_entry_fi_regex_activate(
 
61
    GtkEditable *editable, gpointer user_data);
 
62
 
 
63
#endif /* _gtk_fileinfo_h_ */
 
64