annotate audacious/actions-playlist.h @ 2270:50dea14e2fa3 trunk

[svn] Serbian language upadated
author kustodian
date Thu, 04 Jan 2007 14:55:34 -0800
parents 8c9e27a834fd
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2264
32e570c6d808 [svn] - small copyright corrections
giacomo
parents: 2259
diff changeset
1 /* Audacious - Cross-platform multimedia player
32e570c6d808 [svn] - small copyright corrections
giacomo
parents: 2259
diff changeset
2 * Copyright (C) 2005-2007 Audacious development team.
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
3 *
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
4 * This program is free software; you can redistribute it and/or modify
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
6 * the Free Software Foundation; under version 2 of the License.
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
7 *
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
8 * This program is distributed in the hope that it will be useful,
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
11 * GNU General Public License for more details.
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
12 *
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
13 * You should have received a copy of the GNU General Public License
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
14 * along with this program; if not, write to the Free Software
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
16 */
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
17
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
18 #ifndef ACTIONS_PLAYLIST_H
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
19 #define ACTIONS_PLAYLIST_H
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
20
2267
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
21 void action_playlist_load_list(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
22 void action_playlist_save_list(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
23 void action_playlist_save_default_list(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
24 void action_playlist_refresh_list(void);
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
25 void action_open_list_manager(void);
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
26
2259
3668594b4fc8 [svn] - moved action_playlist_* implementation from ui_main.c to ui_playlist.c (more appropriate)
giacomo
parents: 2249
diff changeset
27 void action_playlist_prev(void);
3668594b4fc8 [svn] - moved action_playlist_* implementation from ui_main.c to ui_playlist.c (more appropriate)
giacomo
parents: 2249
diff changeset
28 void action_playlist_new(void);
3668594b4fc8 [svn] - moved action_playlist_* implementation from ui_main.c to ui_playlist.c (more appropriate)
giacomo
parents: 2249
diff changeset
29 void action_playlist_next(void);
3668594b4fc8 [svn] - moved action_playlist_* implementation from ui_main.c to ui_playlist.c (more appropriate)
giacomo
parents: 2249
diff changeset
30 void action_playlist_delete(void);
3668594b4fc8 [svn] - moved action_playlist_* implementation from ui_main.c to ui_playlist.c (more appropriate)
giacomo
parents: 2249
diff changeset
31
2267
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
32 void action_playlist_search_and_select(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
33 void action_playlist_invert_selection(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
34 void action_playlist_select_all(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
35 void action_playlist_select_none(void);
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
36
2267
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
37 void action_playlist_clear_queue(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
38 void action_playlist_remove_unavailable(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
39 void action_playlist_remove_dupes_by_title(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
40 void action_playlist_remove_dupes_by_filename(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
41 void action_playlist_remove_dupes_by_full_path(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
42 void action_playlist_remove_all(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
43 void action_playlist_remove_selected(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
44 void action_playlist_remove_unselected(void);
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
45
2267
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
46 void action_playlist_add_cd(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
47 void action_playlist_add_url(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
48 void action_playlist_add_files(void);
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
49
2267
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
50 void action_playlist_randomize_list(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
51 void action_playlist_reverse_list(void);
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
52
2267
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
53 void action_playlist_sort_by_title(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
54 void action_playlist_sort_by_artist(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
55 void action_playlist_sort_by_filename(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
56 void action_playlist_sort_by_full_path(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
57 void action_playlist_sort_by_date(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
58 void action_playlist_sort_by_track_number(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
59 void action_playlist_sort_by_playlist_entry(void);
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
60
2267
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
61 void action_playlist_sort_selected_by_title(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
62 void action_playlist_sort_selected_by_artist(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
63 void action_playlist_sort_selected_by_filename(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
64 void action_playlist_sort_selected_by_full_path(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
65 void action_playlist_sort_selected_by_date(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
66 void action_playlist_sort_selected_by_track_number(void);
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
67 void action_playlist_sort_selected_by_playlist_entry(void);
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
68
2267
8c9e27a834fd [svn] - namespace for playlist menus (part 3, hopefully the last); separated concepts and actions for current_track_info and playlist_track_info, the second still needs some work
giacomo
parents: 2264
diff changeset
69 void action_playlist_track_info(void);
2249
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
70 void action_queue_toggle(void);
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
71
7e0642c07bcc [svn] - add missing actions-playlist.h (sorry)
nenolod
parents:
diff changeset
72 #endif