Mercurial > audlegacy
annotate audacious/playlist.h @ 2234:ba07fe36bfb4 trunk
[svn] - ensure that popup menus are always fully displayed
author | giacomo |
---|---|
date | Tue, 02 Jan 2007 17:28:38 -0800 |
parents | 959722e6e277 |
children |
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; | |
2140
299651a8f107
[svn] - made playlistwin_update_list depend on passed Playlist* instead of blindly using playlist_get_active(); this solves many locking issues with multiple playlists, but SHOULD be reviewed in every place playlistwin_update_list is used; added a playlist_new_from_selected() call too
giacomo
parents:
2139
diff
changeset
|
78 gboolean loading_playlist; |
2139
fcd1f54efdb9
[svn] - multiple playlist support requires separated locking; each Playlist holds its GMutex now; removed playlist_get function cause it doesn't fit with this scheme
giacomo
parents:
2129
diff
changeset
|
79 GMutex *mutex; /* this is required for multiple playlist */ |
2077
e074c9ba7072
[svn] - cleanup the declaration of PlaylistEntry, and add some initial structure for migrating to multiple playlists.
nenolod
parents:
1738
diff
changeset
|
80 } Playlist; |
0 | 81 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
82 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
|
83 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
|
84 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
|
85 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
|
86 } PlaylistAssociation; |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
87 |
0 | 88 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
|
89 const gchar * title, const gint len, |
1c701dfe5098
[svn] Cache the decoder used for each PlaylistEntry. This reduces the amount
nenolod
parents:
0
diff
changeset
|
90 InputPlugin * dec); |
0 | 91 void playlist_entry_free(PlaylistEntry * entry); |
92 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
93 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
|
94 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
|
95 |
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
96 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
|
97 PlaylistAssociation assoc, gint pos); |
0 | 98 |
2080
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_init(void); |
2120
1d67cf383e32
[svn] - dynamically allocate the playlist at startup and fix some lingering improper uses of playlist_get()
nenolod
parents:
2105
diff
changeset
|
100 void playlist_add_playlist(Playlist *); |
1d67cf383e32
[svn] - dynamically allocate the playlist at startup and fix some lingering improper uses of playlist_get()
nenolod
parents:
2105
diff
changeset
|
101 void playlist_remove_playlist(Playlist *); |
2127
63af5b9c5026
[svn] - add playlist_select_playlist() to select a literal playlist
nenolod
parents:
2123
diff
changeset
|
102 void playlist_select_playlist(Playlist *); |
2123
97e2cbd87df0
[svn] - add playlist_select_next(), playlist_select_prev()
nenolod
parents:
2120
diff
changeset
|
103 void playlist_select_next(void); |
97e2cbd87df0
[svn] - add playlist_select_next(), playlist_select_prev()
nenolod
parents:
2120
diff
changeset
|
104 void playlist_select_prev(void); |
2141
06a86fdd4fb7
[svn] added playlist_free and ensure that each created playlist is freed in mainwin_quit_cb; the list of playlists is freed there as well
giacomo
parents:
2140
diff
changeset
|
105 GList * playlist_get_playlists(void); |
2120
1d67cf383e32
[svn] - dynamically allocate the playlist at startup and fix some lingering improper uses of playlist_get()
nenolod
parents:
2105
diff
changeset
|
106 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
107 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
|
108 void playlist_delete(Playlist *playlist, gboolean crop); |
0 | 109 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
110 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
|
111 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
|
112 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
|
113 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
|
114 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
|
115 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
|
116 |
2083 | 117 void playlist_set_info(Playlist *playlist, const gchar * title, gint length, gint rate, |
0 | 118 gint freq, gint nch); |
2098
425963ded156
[svn] - provide the old ABI for plugins (intermediate layer).
nenolod
parents:
2085
diff
changeset
|
119 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
|
120 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
|
121 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
|
122 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
|
123 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
|
124 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
|
125 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
|
126 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
|
127 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
|
128 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
|
129 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
|
130 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
|
131 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
|
132 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
|
133 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
|
134 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
|
135 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
|
136 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
|
137 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
|
138 gint playlist_get_position_nolock(Playlist *playlist); |
2084 | 139 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
|
140 gint playlist_get_current_length(Playlist *playlist); |
0 | 141 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
142 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
|
143 gboolean playlist_load(Playlist *playlist, const gchar * filename); |
0 | 144 |
145 void playlist_start_get_info_thread(void); | |
146 void playlist_stop_get_info_thread(); | |
147 void playlist_start_get_info_scan(void); | |
148 | |
2080
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_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
|
150 void playlist_sort_selected(Playlist *playlist, PlaylistSortType type); |
0 | 151 |
2080
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_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
|
153 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
|
154 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
|
155 void playlist_remove_dead_files(Playlist *playlist); |
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 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
|
158 void playlist_fileinfo(Playlist *playlist, guint pos); |
0 | 159 |
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 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
|
161 void playlist_delete_filenames(Playlist *playlist, GList * filenames); |
0 | 162 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
163 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
|
164 |
99928e1275a1
[svn] This commit reduces the amount of times we probe a source down to ONE
nenolod
parents:
355
diff
changeset
|
165 /* 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
|
166 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
|
167 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
168 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
|
169 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
|
170 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
|
171 gint playlist_get_songtime(Playlist *playlist, guint pos); |
0 | 172 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
173 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
|
174 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
|
175 int playlist_get_num_selected(Playlist *playlist); |
0 | 176 |
2080
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_get_total_time(Playlist *playlist, gulong * total_time, gulong * selection_time, |
0 | 178 gboolean * total_more, |
179 gboolean * selection_more); | |
180 | |
2129
0d845907c0b9
[svn] added a regex-based search option in playlist that allows to select playlist entries using multiple match criteria
giacomo
parents:
2127
diff
changeset
|
181 gint playlist_select_search(Playlist *playlist, TitleInput *tuple, gint action); |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
182 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
|
183 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
|
184 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
|
185 gboolean playlist_select_invert(Playlist *playlist, guint pos); |
0 | 186 |
2085 | 187 gboolean playlist_read_info_selection(Playlist *playlist); |
188 void playlist_read_info(Playlist *playlist, guint pos); | |
0 | 189 |
190 void playlist_set_shuffle(gboolean shuffle); | |
191 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
192 void playlist_clear_selected(Playlist *playlist); |
0 | 193 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
194 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
|
195 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
|
196 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
|
197 Playlist *playlist_new(void); |
2142
959722e6e277
[svn] - clear and free a playlist passed to playlist_remove_playlist
giacomo
parents:
2141
diff
changeset
|
198 void playlist_free(Playlist *playlist); |
2139
fcd1f54efdb9
[svn] - multiple playlist support requires separated locking; each Playlist holds its GMutex now; removed playlist_get function cause it doesn't fit with this scheme
giacomo
parents:
2129
diff
changeset
|
199 Playlist *playlist_new_from_selected(void); |
0 | 200 |
201 PlaylistFormat playlist_format_get_from_name(const gchar * filename); | |
202 gboolean is_playlist_name(const gchar * filename); | |
203 | |
2139
fcd1f54efdb9
[svn] - multiple playlist support requires separated locking; each Playlist holds its GMutex now; removed playlist_get function cause it doesn't fit with this scheme
giacomo
parents:
2129
diff
changeset
|
204 #define PLAYLIST_LOCK(m) g_mutex_lock(m) |
fcd1f54efdb9
[svn] - multiple playlist support requires separated locking; each Playlist holds its GMutex now; removed playlist_get function cause it doesn't fit with this scheme
giacomo
parents:
2129
diff
changeset
|
205 #define PLAYLIST_UNLOCK(m) g_mutex_unlock(m) |
0 | 206 |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
207 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
|
208 |
2083 | 209 extern void playlist_load_ins_file(Playlist *playlist, const gchar * filename, |
1554 | 210 const gchar * playlist_name, gint pos, |
211 const gchar * title, gint len); | |
212 | |
2083 | 213 extern void playlist_load_ins_file_tuple(Playlist *playlist, const gchar * filename_p, |
1584 | 214 const gchar * playlist_name, gint pos, |
215 TitleInput *tuple); | |
216 | |
2080
df6cf9cb531e
[svn] - this commit breaks the API. I'm not done here, but hopefully the new API is
nenolod
parents:
2078
diff
changeset
|
217 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
|
218 |
1738 | 219 G_END_DECLS |
1584 | 220 |
0 | 221 #endif |