Mercurial > audlegacy
annotate audacious/playlist.h @ 2112:81c744358bab trunk
[svn] - improved logic for extension assist
author | nenolod |
---|---|
date | Tue, 12 Dec 2006 19:51:25 -0800 |
parents | f18a5b617c34 |
children | 1d67cf383e32 |
rev | line source |
---|---|
1230
a5d5f404b933
[svn] - attach a TitleInput tuple to the PlaylistEntry class.
nenolod
parents:
984
diff
changeset
|
1 /* Audacious - Cross-platform multimedia player |
2077
e074c9ba7072
[svn] - cleanup the declaration of PlaylistEntry, and add some initial structure for migrating to multiple playlists.
nenolod
parents:
1738
diff
changeset
|
2 * Copyright (C) 2005-2007 William Pitcock, Tony Vroon, George Averill, |
1230
a5d5f404b933
[svn] - attach a TitleInput tuple to the PlaylistEntry class.
nenolod
parents:
984
diff
changeset
|
3 * Giacomo Lozito, Derek Pomery and Yoshiki Yazawa. |
a5d5f404b933
[svn] - attach a TitleInput tuple to the PlaylistEntry class.
nenolod
parents:
984
diff
changeset
|
4 * |
a5d5f404b933
[svn] - attach a TitleInput tuple to the PlaylistEntry class.
nenolod
parents:
984
diff
changeset
|
5 * XMMS - Cross-platform multimedia player |
0 | 6 * Copyright (C) 1998-2003 Peter Alm, Mikael Alm, Olle Hallnas, |
7 * Thomas Nilsson and 4Front Technologies | |
8 * Copyright (C) 1999-2003 Haavard Kvaalen | |
9 * | |
10 * This program is free software; you can redistribute it and/or modify | |
11 * it under the terms of the GNU General Public License as published by | |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
2098
diff
changeset
|
12 * the Free Software Foundation; under version 2 of the License. |
0 | 13 * |
14 * This program is distributed in the hope that it will be useful, | |
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 * GNU General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program; if not, write to the Free Software | |
1459 | 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 22 */ |
23 #ifndef PLAYLIST_H | |
24 #define PLAYLIST_H | |
25 | |
26 #include <glib.h> | |
1736
fed902161f2a
[svn] - use audacious/titlestring.h instead of libaudacious/titlestring.h
nenolod
parents:
1584
diff
changeset
|
27 #include "audacious/titlestring.h" |
355
1c701dfe5098
[svn] Cache the decoder used for each PlaylistEntry. This reduces the amount
nenolod
parents:
0
diff
changeset
|
28 #include "input.h" |
0 | 29 |
1738 | 30 G_BEGIN_DECLS |
31 | |
0 | 32 typedef enum { |
33 PLAYLIST_SORT_PATH, | |
34 PLAYLIST_SORT_FILENAME, | |
35 PLAYLIST_SORT_TITLE, | |
1251 | 36 PLAYLIST_SORT_ARTIST, |
1415 | 37 PLAYLIST_SORT_DATE, |
1430
740c08db08d9
[svn] via Christian Birchinger <joker -at- netswarm.net>:
nenolod
parents:
1415
diff
changeset
|
38 PLAYLIST_SORT_TRACK, |
740c08db08d9
[svn] via Christian Birchinger <joker -at- netswarm.net>:
nenolod
parents:
1415
diff
changeset
|
39 PLAYLIST_SORT_PLAYLIST |
0 | 40 } PlaylistSortType; |
41 | |
42 typedef enum { | |
852
bcff46a2558d
[svn] added multiple 'remove duplicates' (by title, by filename, by path+filename)
giacomo
parents:
840
diff
changeset
|
43 PLAYLIST_DUPS_PATH, |
bcff46a2558d
[svn] added multiple 'remove duplicates' (by title, by filename, by path+filename)
giacomo
parents:
840
diff
changeset
|
44 PLAYLIST_DUPS_FILENAME, |
bcff46a2558d
[svn] added multiple 'remove duplicates' (by title, by filename, by path+filename)
giacomo
parents:
840
diff
changeset
|
45 PLAYLIST_DUPS_TITLE |
bcff46a2558d
[svn] added multiple 'remove duplicates' (by title, by filename, by path+filename)
giacomo
parents:
840
diff
changeset
|
46 } PlaylistDupsType; |
bcff46a2558d
[svn] added multiple 'remove duplicates' (by title, by filename, by path+filename)
giacomo
parents:
840
diff
changeset
|
47 |
bcff46a2558d
[svn] added multiple 'remove duplicates' (by title, by filename, by path+filename)
giacomo
parents:
840
diff
changeset
|
48 typedef enum { |
0 | 49 PLAYLIST_FORMAT_UNKNOWN = -1, |
50 PLAYLIST_FORMAT_M3U, | |
51 PLAYLIST_FORMAT_PLS, | |
52 PLAYLIST_FORMAT_COUNT | |
53 } PlaylistFormat; | |
54 | |
55 #define PLAYLIST_ENTRY(x) ((PlaylistEntry*)(x)) | |
2077
e074c9ba7072
[svn] - cleanup the declaration of PlaylistEntry, and add some initial structure for migrating to multiple playlists.
nenolod
parents:
1738
diff
changeset
|
56 typedef struct _PlaylistEntry { |
0 | 57 gchar *filename; |
58 gchar *title; | |
59 gint length; | |
60 gboolean selected; | |
355
1c701dfe5098
[svn] Cache the decoder used for each PlaylistEntry. This reduces the amount
nenolod
parents:
0
diff
changeset
|
61 InputPlugin *decoder; |
1230
a5d5f404b933
[svn] - attach a TitleInput tuple to the PlaylistEntry class.
nenolod
parents:
984
diff
changeset
|
62 TitleInput *tuple; /* cached entry tuple, if available */ |
2077
e074c9ba7072
[svn] - cleanup the declaration of PlaylistEntry, and add some initial structure for migrating to multiple playlists.
nenolod
parents:
1738
diff
changeset
|
63 } PlaylistEntry; |
0 | 64 |
2077
e074c9ba7072
[svn] - cleanup the declaration of PlaylistEntry, and add some initial structure for migrating to multiple playlists.
nenolod
parents:
1738
diff
changeset
|
65 #define PLAYLIST(x) ((Playlist *)(x)) |
e074c9ba7072
[svn] - cleanup the declaration of PlaylistEntry, and add some initial structure for migrating to multiple playlists.
nenolod
parents:
1738
diff
changeset
|
66 typedef struct _Playlist { |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
67 gchar *title; |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
68 gchar *filename; |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
69 gint length; |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
70 GList *entries; |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
71 GList *queue; |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
72 GList *shuffle; |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
73 PlaylistEntry *position; /* bleah */ |
2085 | 74 gulong pl_total_time; |
75 gulong pl_selection_time; | |
76 gboolean pl_total_more; | |
77 gboolean pl_selection_more; | |
2077
e074c9ba7072
[svn] - cleanup the declaration of PlaylistEntry, and add some initial structure for migrating to multiple playlists.
nenolod
parents:
1738
diff
changeset
|
78 } Playlist; |
0 | 79 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
80 typedef enum { |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
81 PLAYLIST_ASSOC_LINEAR, |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
82 PLAYLIST_ASSOC_QUEUE, |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
83 PLAYLIST_ASSOC_SHUFFLE |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
84 } PlaylistAssociation; |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
85 |
0 | 86 PlaylistEntry *playlist_entry_new(const gchar * filename, |
355
1c701dfe5098
[svn] Cache the decoder used for each PlaylistEntry. This reduces the amount
nenolod
parents:
0
diff
changeset
|
87 const gchar * title, const gint len, |
1c701dfe5098
[svn] Cache the decoder used for each PlaylistEntry. This reduces the amount
nenolod
parents:
0
diff
changeset
|
88 InputPlugin * dec); |
0 | 89 void playlist_entry_free(PlaylistEntry * entry); |
90 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
91 void playlist_entry_associate(Playlist * playlist, PlaylistEntry * entry, |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
92 PlaylistAssociation assoc); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
93 |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
94 void playlist_entry_associate_pos(Playlist * playlist, PlaylistEntry * entry, |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
95 PlaylistAssociation assoc, gint pos); |
0 | 96 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
97 void playlist_init(void); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
98 void playlist_clear(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
99 void playlist_delete(Playlist *playlist, gboolean crop); |
0 | 100 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
101 gboolean playlist_add(Playlist *playlist, const gchar * filename); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
102 gboolean playlist_ins(Playlist *playlist, const gchar * filename, gint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
103 guint playlist_add_dir(Playlist *playlist, const gchar * dir); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
104 guint playlist_ins_dir(Playlist *playlist, const gchar * dir, gint pos, gboolean background); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
105 guint playlist_add_url(Playlist *playlist, const gchar * url); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
106 guint playlist_ins_url(Playlist *playlist, const gchar * string, gint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
107 |
2083 | 108 void playlist_set_info(Playlist *playlist, const gchar * title, gint length, gint rate, |
0 | 109 gint freq, gint nch); |
2098
425963ded156
[svn] - provide the old ABI for plugins (intermediate layer).
nenolod
parents:
2085
diff
changeset
|
110 void playlist_set_info_old_abi(const gchar * title, gint length, gint rate, |
425963ded156
[svn] - provide the old ABI for plugins (intermediate layer).
nenolod
parents:
2085
diff
changeset
|
111 gint freq, gint nch); |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
112 void playlist_check_pos_current(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
113 void playlist_next(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
114 void playlist_prev(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
115 void playlist_queue(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
116 void playlist_queue_position(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
117 void playlist_queue_remove(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
118 gint playlist_queue_get_length(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
119 gboolean playlist_is_position_queued(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
120 void playlist_clear_queue(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
121 gint playlist_get_queue_position(Playlist *playlist, PlaylistEntry * entry); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
122 gint playlist_get_queue_position_number(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
123 gint playlist_get_queue_qposition_number(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
124 void playlist_eof_reached(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
125 void playlist_set_position(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
126 gint playlist_get_length(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
127 gint playlist_get_length_nolock(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
128 gint playlist_get_position(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
129 gint playlist_get_position_nolock(Playlist *playlist); |
2084 | 130 gchar *playlist_get_info_text(Playlist *playlist); |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
131 gint playlist_get_current_length(Playlist *playlist); |
0 | 132 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
133 gboolean playlist_save(Playlist *playlist, const gchar * filename); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
134 gboolean playlist_load(Playlist *playlist, const gchar * filename); |
0 | 135 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
136 /* returns the current selected *linear* playlist */ |
0 | 137 GList *playlist_get(void); |
138 | |
139 void playlist_start_get_info_thread(void); | |
140 void playlist_stop_get_info_thread(); | |
141 void playlist_start_get_info_scan(void); | |
142 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
143 void playlist_sort(Playlist *playlist, PlaylistSortType type); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
144 void playlist_sort_selected(Playlist *playlist, PlaylistSortType type); |
0 | 145 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
146 void playlist_reverse(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
147 void playlist_random(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
148 void playlist_remove_duplicates(Playlist *playlist, PlaylistDupsType); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
149 void playlist_remove_dead_files(Playlist *playlist); |
0 | 150 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
151 void playlist_fileinfo_current(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
152 void playlist_fileinfo(Playlist *playlist, guint pos); |
0 | 153 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
154 void playlist_delete_index(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
155 void playlist_delete_filenames(Playlist *playlist, GList * filenames); |
0 | 156 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
157 PlaylistEntry *playlist_get_entry_to_play(Playlist *playlist); |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
355
diff
changeset
|
158 |
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
355
diff
changeset
|
159 /* XXX this is for reverse compatibility --nenolod */ |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
160 const gchar *playlist_get_filename_to_play(Playlist *playlist); |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
355
diff
changeset
|
161 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
162 gchar *playlist_get_filename(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
163 gchar *playlist_get_songtitle(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
164 TitleInput *playlist_get_tuple(Playlist *playlist, guint pos); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
165 gint playlist_get_songtime(Playlist *playlist, guint pos); |
0 | 166 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
167 GList *playlist_get_selected(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
168 GList *playlist_get_selected_list(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
169 int playlist_get_num_selected(Playlist *playlist); |
0 | 170 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
171 void playlist_get_total_time(Playlist *playlist, gulong * total_time, gulong * selection_time, |
0 | 172 gboolean * total_more, |
173 gboolean * selection_more); | |
174 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
175 void playlist_select_all(Playlist *playlist, gboolean set); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
176 void playlist_select_range(Playlist *playlist, gint min, gint max, gboolean sel); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
177 void playlist_select_invert_all(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
178 gboolean playlist_select_invert(Playlist *playlist, guint pos); |
0 | 179 |
2085 | 180 gboolean playlist_read_info_selection(Playlist *playlist); |
181 void playlist_read_info(Playlist *playlist, guint pos); | |
0 | 182 |
183 void playlist_set_shuffle(gboolean shuffle); | |
184 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
185 void playlist_clear_selected(Playlist *playlist); |
0 | 186 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
187 GList *get_playlist_nth(Playlist *playlist, guint); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
188 gboolean playlist_set_current_name(Playlist *playlist, const gchar * filename); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
189 const gchar *playlist_get_current_name(Playlist *playlist); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
190 Playlist *playlist_new(void); |
0 | 191 |
192 PlaylistFormat playlist_format_get_from_name(const gchar * filename); | |
193 gboolean is_playlist_name(const gchar * filename); | |
194 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
195 #define PLAYLIST_LOCK() G_LOCK(playlists) |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
196 #define PLAYLIST_UNLOCK() G_UNLOCK(playlists) |
0 | 197 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
198 G_LOCK_EXTERN(playlists); |
356
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
355
diff
changeset
|
199 |
2083 | 200 extern void playlist_load_ins_file(Playlist *playlist, const gchar * filename, |
1554 | 201 const gchar * playlist_name, gint pos, |
202 const gchar * title, gint len); | |
203 | |
2083 | 204 extern void playlist_load_ins_file_tuple(Playlist *playlist, const gchar * filename_p, |
1584 | 205 const gchar * playlist_name, gint pos, |
206 TitleInput *tuple); | |
207 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
208 Playlist *playlist_get_active(void); |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
209 |
1738 | 210 G_END_DECLS |
1584 | 211 |
0 | 212 #endif |