comparison src/audacious/actions-mainwin.h @ 2313:3149d4b1a9a9 trunk

[svn] - objective-make autodepend fixes - move all sourcecode into src/ and adjust Makefiles accordingly
author nenolod
date Fri, 12 Jan 2007 11:43:40 -0800
parents
children 72cb1cbb578b 49ce30748980
comparison
equal deleted inserted replaced
2312:e1a5a66fb9cc 2313:3149d4b1a9a9
1 /* Audacious - Cross-platform multimedia player
2 * Copyright (C) 2005-2007 Audacious development team.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; under version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 */
17
18 #ifndef ACTIONS_MAINWIN_H
19 #define ACTIONS_MAINWIN_H
20
21 #include <glib.h>
22 #include <gtk/gtk.h>
23
24 /* actions below are handled in mainwin.c */
25
26
27 /* toggle actions */
28 void action_anamode_peaks(GtkToggleAction*);
29 void action_autoscroll_songname(GtkToggleAction*);
30 void action_playback_noplaylistadvance(GtkToggleAction*);
31 void action_playback_repeat(GtkToggleAction*);
32 void action_playback_shuffle(GtkToggleAction*);
33 void action_stop_after_current_song(GtkToggleAction*);
34 void action_view_always_on_top(GtkToggleAction*);
35 void action_view_doublesize(GtkToggleAction*);
36 void action_view_easymove(GtkToggleAction*);
37 void action_view_on_all_workspaces(GtkToggleAction*);
38 void action_roll_up_equalizer(GtkToggleAction*);
39 void action_roll_up_player(GtkToggleAction*);
40 void action_roll_up_playlist_editor(GtkToggleAction*);
41 void action_show_equalizer(GtkToggleAction*);
42 void action_show_player(GtkToggleAction*);
43 void action_show_playlist_editor(GtkToggleAction*);
44
45 /* radio actions (one for each radio action group) */
46 void action_anafoff(GtkAction*,GtkRadioAction*);
47 void action_anamode(GtkAction*,GtkRadioAction*);
48 void action_anatype(GtkAction*,GtkRadioAction*);
49 void action_peafoff(GtkAction*,GtkRadioAction*);
50 void action_refrate(GtkAction*,GtkRadioAction*);
51 void action_scomode(GtkAction*,GtkRadioAction*);
52 void action_vismode(GtkAction*,GtkRadioAction*);
53 void action_vprmode(GtkAction*,GtkRadioAction*);
54 void action_wshmode(GtkAction*,GtkRadioAction*);
55 void action_viewtime(GtkAction*,GtkRadioAction*);
56
57 /* normal actions */
58 void action_about_audacious(void);
59 void action_ab_clear(void);
60 void action_ab_set(void);
61 void action_jump_to_file(void);
62 void action_jump_to_playlist_start(void);
63 void action_jump_to_time(void);
64 void action_play_file(void);
65 void action_play_location(void);
66 void action_playback_next(void);
67 void action_playback_pause(void);
68 void action_playback_play(void);
69 void action_playback_playcd(void);
70 void action_playback_previous(void);
71 void action_playback_stop(void);
72 void action_preferences(void);
73 void action_quit(void);
74 void action_current_track_info(void);
75
76
77 #endif