annotate src/xs_genui.c @ 612:32fc27395220

About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 02 Sep 2007 00:03:05 +0000
parents d9290bd40037
children 63f58960dd54
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 #ifdef HAVE_CONFIG_H
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 # include <config.h>
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 #endif
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 #include <gtk/gtk.h>
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 #include "xs_genui.h"
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 #include "xs_interface.h"
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 #include "xs_glade.h"
334
19c89f9ca2cc Misc commit.
Matti Hamalainen <ccr@tnsp.org>
parents: 282
diff changeset
10
553
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 500
diff changeset
11
612
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
12
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
13 gboolean
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
14 xs_confirmwin_delete (GtkWidget *widget,
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
15 GdkEvent *event,
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
16 gpointer user_data)
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
17 {
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
18
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
19 return FALSE;
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
20 }
32fc27395220 About window wasn't handling delete_event properly, fixed; Cleaned up event handling a bit.
Matti Hamalainen <ccr@tnsp.org>
parents: 578
diff changeset
21