Mercurial > audlegacy
annotate src/audacious/actions-mainwin.h @ 3583:d3ba8bcf9fd6 trunk
Cosmetics.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Wed, 19 Sep 2007 17:47:18 +0300 |
parents | 7a4fcf84a34f |
children | 24ae9b303a9d |
rev | line source |
---|---|
2313 | 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 | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3023
diff
changeset
|
6 * the Free Software Foundation; under version 3 of the License. |
2313 | 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 | |
3121
3b6d316f8b09
GPL3 relicensing.
William Pitcock <nenolod@atheme-project.org>
parents:
3023
diff
changeset
|
14 * along with this program. If not, see <http://www.gnu.org/licenses>. |
3123
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
15 * |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
16 * The Audacious team does not consider modular code linking to |
f1c756f39e6c
Invoke "Plugins are not derived work" clause provided by GPL3.
William Pitcock <nenolod@atheme-project.org>
parents:
3121
diff
changeset
|
17 * Audacious or using our public API to be a derived work. |
2313 | 18 */ |
19 | |
20 #ifndef ACTIONS_MAINWIN_H | |
21 #define 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_doublesize(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); | |
3023
49ce30748980
added lastfm GUI stub
Cristi Magherusan <majeru@atheme-project.org>
parents:
2313
diff
changeset
|
76 void action_lastfm(void); |
2313 | 77 #endif |