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

« back to all changes in this revision

Viewing changes to src/main_cb.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: main_cb.h,v 1.6 2003/07/15 09:07:57 rmanfredi Exp $
3
 
 *
4
 
 * Copyright (c) 2001-2003, Raphael Manfredi, 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
 
#ifndef _main_cb_h_
27
 
#define _main_cb_h_
28
 
 
29
 
#include "gui.h"
30
 
 
31
 
/***
32
 
 *** General main window actions
33
 
 ***/
34
 
void on_button_quit_clicked(GtkButton *button, gpointer user_data);
35
 
gboolean on_main_window_delete_event(
36
 
    GtkWidget *widget, GdkEvent *event, gpointer user_data);
37
 
 
38
 
/***
39
 
 *** Menu bar
40
 
 ***/
41
 
void on_menu_about_activate(GtkMenuItem * menuitem, gpointer user_data);
42
 
 
43
 
 
44
 
/***
45
 
 *** About dialog
46
 
 ***/
47
 
void on_button_about_close_clicked(GtkButton *button, gpointer user_data);
48
 
gboolean on_dlg_about_delete_event(
49
 
    GtkWidget *widget, GdkEvent *event, gpointer user_data);
50
 
 
51
 
 
52
 
/***
53
 
 *** Quit dialog
54
 
 ***/
55
 
void on_button_really_quit_clicked(GtkButton *button,gpointer user_data);
56
 
void on_button_abort_quit_clicked(GtkButton *button, gpointer user_data);
57
 
gboolean on_dlg_quit_delete_event(
58
 
    GtkWidget *widget, GdkEvent *event, gpointer user_data);
59
 
 
60
 
#ifdef USE_GTK2
61
 
void on_main_gui_treeview_menu_cursor_changed(GtkTreeView *, gpointer);
62
 
void on_main_gui_treeview_menu_row_collapsed(
63
 
        GtkTreeView *, GtkTreeIter *, GtkTreePath *, gpointer);
64
 
void on_main_gui_treeview_menu_row_expanded(
65
 
        GtkTreeView *, GtkTreeIter *, GtkTreePath *, gpointer);
66
 
#endif
67
 
 
68
 
 
69
 
#endif /* _main_cb_h_ */