Mercurial > audlegacy
annotate src/audacious/actions-playlist.h @ 3865:97b6075a7590
re-added VOLUME and BALANCE text
author | mf0102 <0102@gmx.at> |
---|---|
date | Sun, 28 Oct 2007 21:18:40 +0100 |
parents | 7a4fcf84a34f |
children | 2eee464379dc |
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:
2313
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:
2313
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_PLAYLIST_H | |
21 #define ACTIONS_PLAYLIST_H | |
22 | |
23 void action_playlist_load_list(void); | |
24 void action_playlist_save_list(void); | |
25 void action_playlist_save_default_list(void); | |
26 void action_playlist_refresh_list(void); | |
27 void action_open_list_manager(void); | |
28 | |
29 void action_playlist_prev(void); | |
30 void action_playlist_new(void); | |
31 void action_playlist_next(void); | |
32 void action_playlist_delete(void); | |
33 | |
34 void action_playlist_search_and_select(void); | |
35 void action_playlist_invert_selection(void); | |
36 void action_playlist_select_all(void); | |
37 void action_playlist_select_none(void); | |
38 | |
39 void action_playlist_clear_queue(void); | |
40 void action_playlist_remove_unavailable(void); | |
41 void action_playlist_remove_dupes_by_title(void); | |
42 void action_playlist_remove_dupes_by_filename(void); | |
43 void action_playlist_remove_dupes_by_full_path(void); | |
44 void action_playlist_remove_all(void); | |
45 void action_playlist_remove_selected(void); | |
46 void action_playlist_remove_unselected(void); | |
47 | |
3351
7a4fcf84a34f
Removed the hardcoded Add/Play CD menu entry
Calin Crisan ccrisan@gmail.com
parents:
3123
diff
changeset
|
48 /* void action_playlist_add_cd(void); - this is no longer needed, as the respective menu entry is added from within the cdaudio plugin */ |
2313 | 49 void action_playlist_add_url(void); |
50 void action_playlist_add_files(void); | |
51 | |
52 void action_playlist_randomize_list(void); | |
53 void action_playlist_reverse_list(void); | |
54 | |
55 void action_playlist_sort_by_title(void); | |
56 void action_playlist_sort_by_artist(void); | |
57 void action_playlist_sort_by_filename(void); | |
58 void action_playlist_sort_by_full_path(void); | |
59 void action_playlist_sort_by_date(void); | |
60 void action_playlist_sort_by_track_number(void); | |
61 void action_playlist_sort_by_playlist_entry(void); | |
62 | |
63 void action_playlist_sort_selected_by_title(void); | |
64 void action_playlist_sort_selected_by_artist(void); | |
65 void action_playlist_sort_selected_by_filename(void); | |
66 void action_playlist_sort_selected_by_full_path(void); | |
67 void action_playlist_sort_selected_by_date(void); | |
68 void action_playlist_sort_selected_by_track_number(void); | |
69 void action_playlist_sort_selected_by_playlist_entry(void); | |
70 | |
71 void action_playlist_track_info(void); | |
72 void action_queue_toggle(void); | |
73 | |
74 #endif |