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
|
|
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_PLAYLIST_H
|
|
19 #define ACTIONS_PLAYLIST_H
|
|
20
|
|
21 void action_playlist_load_list(void);
|
|
22 void action_playlist_save_list(void);
|
|
23 void action_playlist_save_default_list(void);
|
|
24 void action_playlist_refresh_list(void);
|
|
25 void action_open_list_manager(void);
|
|
26
|
|
27 void action_playlist_prev(void);
|
|
28 void action_playlist_new(void);
|
|
29 void action_playlist_next(void);
|
|
30 void action_playlist_delete(void);
|
|
31
|
|
32 void action_playlist_search_and_select(void);
|
|
33 void action_playlist_invert_selection(void);
|
|
34 void action_playlist_select_all(void);
|
|
35 void action_playlist_select_none(void);
|
|
36
|
|
37 void action_playlist_clear_queue(void);
|
|
38 void action_playlist_remove_unavailable(void);
|
|
39 void action_playlist_remove_dupes_by_title(void);
|
|
40 void action_playlist_remove_dupes_by_filename(void);
|
|
41 void action_playlist_remove_dupes_by_full_path(void);
|
|
42 void action_playlist_remove_all(void);
|
|
43 void action_playlist_remove_selected(void);
|
|
44 void action_playlist_remove_unselected(void);
|
|
45
|
|
46 void action_playlist_add_cd(void);
|
|
47 void action_playlist_add_url(void);
|
|
48 void action_playlist_add_files(void);
|
|
49
|
|
50 void action_playlist_randomize_list(void);
|
|
51 void action_playlist_reverse_list(void);
|
|
52
|
|
53 void action_playlist_sort_by_title(void);
|
|
54 void action_playlist_sort_by_artist(void);
|
|
55 void action_playlist_sort_by_filename(void);
|
|
56 void action_playlist_sort_by_full_path(void);
|
|
57 void action_playlist_sort_by_date(void);
|
|
58 void action_playlist_sort_by_track_number(void);
|
|
59 void action_playlist_sort_by_playlist_entry(void);
|
|
60
|
|
61 void action_playlist_sort_selected_by_title(void);
|
|
62 void action_playlist_sort_selected_by_artist(void);
|
|
63 void action_playlist_sort_selected_by_filename(void);
|
|
64 void action_playlist_sort_selected_by_full_path(void);
|
|
65 void action_playlist_sort_selected_by_date(void);
|
|
66 void action_playlist_sort_selected_by_track_number(void);
|
|
67 void action_playlist_sort_selected_by_playlist_entry(void);
|
|
68
|
|
69 void action_playlist_track_info(void);
|
|
70 void action_queue_toggle(void);
|
|
71
|
|
72 #endif
|