-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathcallbacks.c
60 lines (46 loc) · 1.27 KB
/
callbacks.c
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
// SPDX-License-Identifier: GPL-2.0-only
/*
* callbacks.c for USBView - a USB device viewer
* Copyright (c) 1999, 2000 by Greg Kroah-Hartman, <[email protected]>
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <gtk/gtk.h>
#include "usbtree.h"
#include "usbview_logo.xpm" /* logo */
void on_buttonClose_clicked (GtkButton *button, gpointer user_data)
{
gtk_main_quit();
}
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_buttonAbout_clicked (GtkButton *button, gpointer user_data)
{
GdkPixbuf *logo;
gchar *authors[] = { "Greg Kroah-Hartman <[email protected]>", NULL };
logo = gdk_pixbuf_new_from_xpm_data ((const char **)usbview_logo_xpm);
gtk_show_about_dialog (GTK_WINDOW (windowMain),
"logo", logo,
"program-name", "usbview",
"version", VERSION,
"comments", "Display information on USB devices",
"website-label", "http://www.kroah.com/linux-usb/",
"website", "http://www.kroah.com/linux-usb/",
"copyright", "Copyright © 1999-2012, 2021-2022",
"authors", authors,
NULL);
g_object_unref (logo);
}
gint on_timer_timeout (gpointer user_data)
{
LoadUSBTree(0);
return 1;
}