annotate audacious/playlist_manager.h @ 2202:d1804718c5cc trunk

[svn] - playlist manager, work done for data consistency; now it should react and update when it is active and playlists are created/modified/deleted outside the manager (i.e. with keyboard shortcuts)
author giacomo
date Fri, 22 Dec 2006 17:35:11 -0800
parents 39e9c8e2745d
children cc6a05baa156
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2201
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
1 /* BMP - Cross-platform multimedia player
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
2 * Copyright (C) 2003-2004 BMP development team.
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
3 *
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
4 * Based on XMMS:
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
5 * Copyright (C) 1998-2003 XMMS development team.
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
6 *
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
7 * This program is free software; you can redistribute it and/or modify
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
8 * it under the terms of the GNU General Public License as published by
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
9 * the Free Software Foundation; under version 2 of the License.
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
10 *
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
11 * This program is distributed in the hope that it will be useful,
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
14 * GNU General Public License for more details.
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
15 *
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
16 * You should have received a copy of the GNU General Public License
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
17 * along with this program; if not, write to the Free Software
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
19 */
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
20
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
21 #ifndef PLAYLISTMANAGER_H
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
22 #define PLAYLISTMANAGER_H
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
23
2202
d1804718c5cc [svn] - playlist manager, work done for data consistency; now it should react and update when it is active and playlists are created/modified/deleted outside the manager (i.e. with keyboard shortcuts)
giacomo
parents: 2201
diff changeset
24 void playlist_manager_update ( void );
2201
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
25 void playlist_manager_ui_show ( void );
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
26
39e9c8e2745d [svn] - added initial code for playlist manager, that allows to create, delete and switch playlists
giacomo
parents:
diff changeset
27 #endif