gregkh / usbview

usb viewer for Linux

This URL has Read+Write access

usbview / callbacks.c
100644 68 lines (50 sloc) 1.648 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*************************************************************************
** callbacks.c for USBView - a USB device viewer
** Copyright (c) 1999, 2000 by Greg Kroah-Hartman, <greg@kroah.com>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
**
** (See the included file COPYING)
*************************************************************************/
 
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
 
#include <gtk/gtk.h>
 
#include "usbtree.h"
 
 
void on_buttonClose_clicked (GtkButton *button, gpointer user_data)
{
gtk_exit(0);
}
 
 
gboolean on_window1_delete_event (GtkWidget *widget, GdkEvent *event, gpointer user_data)
{
gtk_main_quit();
 
return FALSE;
}
 
 
void on_buttonRefresh_clicked (GtkButton *button, gpointer user_data)
{
LoadUSBTree(1);
}
 
 
void on_buttonConfigure_clicked (GtkButton *button, gpointer user_data)
{
configure_dialog ();
}
 
 
void on_buttonAbout_clicked (GtkButton *button, gpointer user_data)
{
about_dialog ();
}
 
 
gint on_timer_timeout (gpointer user_data)
{
LoadUSBTree(0);
return 1;
}