annotate src/xs_genui.c @ 42:0f00ebab063d

Fixes
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 19 Jun 2003 23:50:01 +0000
parents 1788f4ce6a44
children 3fca0b13a80a
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"
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
12 void
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
13 fileinfo_sub_tune_clicked (GtkButton *button,
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
14 gpointer user_data)
16
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 {
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 }
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
20 void
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
21 fileinfo_ok_clicked (GtkButton *button,
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
22 gpointer user_data)
16
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23 {
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 }
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
28 void
42
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
29 xs_ctrl_song_prev (GtkButton *button,
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
30 gpointer user_data)
16
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
31 {
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33 }
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
36 void
42
Matti Hamalainen <ccr@tnsp.org>
parents: 40
diff changeset
37 xs_ctrl_song_next (GtkButton *button,
40
1788f4ce6a44 Numerous changes towards 0.8
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
38 gpointer user_data)
16
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39 {
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
41 }
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43