comparison src/skins/actions-mainwin.h @ 2602:7cd898f08f31

work in progress - add ui_manager and ui_main_evlisteners
author Tomasz Mon <desowin@gmail.com>
date Wed, 21 May 2008 12:37:40 +0200
parents
children
comparison
equal deleted inserted replaced
2601:f9ccfae6a5f6 2602:7cd898f08f31
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 3 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, see <http://www.gnu.org/licenses>.
15 *
16 * The Audacious team does not consider modular code linking to
17 * Audacious or using our public API to be a derived work.
18 */
19
20 #ifndef AUDACIOUS_ACTIONS_MAINWIN_H
21 #define AUDACIOUS_ACTIONS_MAINWIN_H
22
23 #include <glib.h>
24 #include <gtk/gtk.h>
25
26 /* actions below are handled in mainwin.c */
27
28
29 /* toggle actions */
30 void action_anamode_peaks(GtkToggleAction*);
31 void action_autoscroll_songname(GtkToggleAction*);
32 void action_playback_noplaylistadvance(GtkToggleAction*);
33 void action_playback_repeat(GtkToggleAction*);
34 void action_playback_shuffle(GtkToggleAction*);
35 void action_stop_after_current_song(GtkToggleAction*);
36 void action_view_always_on_top(GtkToggleAction*);
37 void action_view_scaled(GtkToggleAction*);
38 void action_view_easymove(GtkToggleAction*);
39 void action_view_on_all_workspaces(GtkToggleAction*);
40 void action_roll_up_equalizer(GtkToggleAction*);
41 void action_roll_up_player(GtkToggleAction*);
42 void action_roll_up_playlist_editor(GtkToggleAction*);
43 void action_show_equalizer(GtkToggleAction*);
44 void action_show_player(GtkToggleAction*);
45 void action_show_playlist_editor(GtkToggleAction*);
46
47 /* radio actions (one for each radio action group) */
48 void action_anafoff(GtkAction*,GtkRadioAction*);
49 void action_anamode(GtkAction*,GtkRadioAction*);
50 void action_anatype(GtkAction*,GtkRadioAction*);
51 void action_peafoff(GtkAction*,GtkRadioAction*);
52 void action_refrate(GtkAction*,GtkRadioAction*);
53 void action_scomode(GtkAction*,GtkRadioAction*);
54 void action_vismode(GtkAction*,GtkRadioAction*);
55 void action_vprmode(GtkAction*,GtkRadioAction*);
56 void action_wshmode(GtkAction*,GtkRadioAction*);
57 void action_viewtime(GtkAction*,GtkRadioAction*);
58
59 /* normal actions */
60 void action_about_audacious(void);
61 void action_ab_clear(void);
62 void action_ab_set(void);
63 void action_jump_to_file(void);
64 void action_jump_to_playlist_start(void);
65 void action_jump_to_time(void);
66 void action_play_file(void);
67 void action_play_location(void);
68 void action_playback_next(void);
69 void action_playback_pause(void);
70 void action_playback_play(void);
71 void action_playback_previous(void);
72 void action_playback_stop(void);
73 void action_preferences(void);
74 void action_quit(void);
75 void action_current_track_info(void);
76 #endif /* AUDACIOUS_ACTIONS_MAINWIN_H */