~ubuntu-branches/ubuntu/wily/alsaplayer/wily

« back to all changes in this revision

Viewing changes to interface/gtk2/callbacks.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Hubert Chathi
  • Date: 2007-10-10 15:33:10 UTC
  • mto: (9.2.5 sid)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20071010153310-h3holq75eu2cigb0
Tags: upstream-0.99.80~rc4
ImportĀ upstreamĀ versionĀ 0.99.80~rc4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifdef HAVE_CONFIG_H
2
 
#  include <config.h>
3
 
#endif
4
 
 
5
 
#include <gtk/gtk.h>
6
 
 
7
 
#include "callbacks.h"
8
 
#include "interface.h"
9
 
#include "support.h"
10
 
 
11
 
 
12
 
void
13
 
on_open_file1_activate                 (GtkMenuItem     *menuitem,
14
 
                                        gpointer         user_data)
15
 
{
16
 
 
17
 
}
18
 
 
19
 
 
20
 
void
21
 
on_open_url1_activate                  (GtkMenuItem     *menuitem,
22
 
                                        gpointer         user_data)
23
 
{
24
 
 
25
 
}
26
 
 
27
 
 
28
 
void
29
 
on_quit2_activate                      (GtkMenuItem     *menuitem,
30
 
                                        gpointer         user_data)
31
 
{
32
 
 
33
 
}
34
 
 
35
 
 
36
 
void
37
 
on_preferences1_activate               (GtkMenuItem     *menuitem,
38
 
                                        gpointer         user_data)
39
 
{
40
 
 
41
 
}
42
 
 
43
 
 
44
 
void
45
 
on_scopes1_activate                    (GtkMenuItem     *menuitem,
46
 
                                        gpointer         user_data)
47
 
{
48
 
 
49
 
}
50
 
 
51
 
 
52
 
void
53
 
on_effects1_activate                   (GtkMenuItem     *menuitem,
54
 
                                        gpointer         user_data)
55
 
{
56
 
 
57
 
}
58
 
 
59
 
 
60
 
void
61
 
on_about2_activate                     (GtkMenuItem     *menuitem,
62
 
                                        gpointer         user_data)
63
 
{
64
 
 
65
 
}
66
 
 
67
 
 
68
 
void
69
 
on_new1_activate                       (GtkMenuItem     *menuitem,
70
 
                                        gpointer         user_data)
71
 
{
72
 
 
73
 
}
74
 
 
75
 
 
76
 
void
77
 
on_open1_activate                      (GtkMenuItem     *menuitem,
78
 
                                        gpointer         user_data)
79
 
{
80
 
 
81
 
}
82
 
 
83
 
 
84
 
void
85
 
on_save1_activate                      (GtkMenuItem     *menuitem,
86
 
                                        gpointer         user_data)
87
 
{
88
 
 
89
 
}
90
 
 
91
 
 
92
 
void
93
 
on_save_as1_activate                   (GtkMenuItem     *menuitem,
94
 
                                        gpointer         user_data)
95
 
{
96
 
 
97
 
}
98
 
 
99
 
 
100
 
void
101
 
on_quit1_activate                      (GtkMenuItem     *menuitem,
102
 
                                        gpointer         user_data)
103
 
{
104
 
 
105
 
}
106
 
 
107
 
 
108
 
void
109
 
on_cut1_activate                       (GtkMenuItem     *menuitem,
110
 
                                        gpointer         user_data)
111
 
{
112
 
 
113
 
}
114
 
 
115
 
 
116
 
void
117
 
on_copy1_activate                      (GtkMenuItem     *menuitem,
118
 
                                        gpointer         user_data)
119
 
{
120
 
 
121
 
}
122
 
 
123
 
 
124
 
void
125
 
on_paste1_activate                     (GtkMenuItem     *menuitem,
126
 
                                        gpointer         user_data)
127
 
{
128
 
 
129
 
}
130
 
 
131
 
 
132
 
void
133
 
on_delete1_activate                    (GtkMenuItem     *menuitem,
134
 
                                        gpointer         user_data)
135
 
{
136
 
 
137
 
}
138
 
 
139
 
 
140
 
void
141
 
on_about1_activate                     (GtkMenuItem     *menuitem,
142
 
                                        gpointer         user_data)
143
 
{
144
 
 
145
 
}
146