comparison src/skins/actions-playlist.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_PLAYLIST_H
21 #define AUDACIOUS_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
48 /* void action_playlist_add_cd(void); - this is no longer needed, as the respective menu entry is added from within the cdaudio plugin */
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 /* AUDACIOUS_ACTIONS_PLAYLIST_H */