/*****************************************************************************
* playtree.hpp
*****************************************************************************
- * Copyright (C) 2005 VideoLAN
- * $Id: playlist.hpp 8659 2004-09-07 21:16:49Z gbazin $
+ * Copyright (C) 2005 the VideoLAN team
+ * $Id$
*
* Authors: Antoine Cellerier <dionoea@videolan.org>
+ * Clément Stenac <zorglub@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef PLAYTREE_HPP
/// Function called to notify playlist changes
void onChange();
+ /// Function called to notify playlist item update
+ void onUpdateItem( int id );
+
+ /// Function called to notify playlist item append
+ void onAppend( playlist_add_t * );
+
+ /// Function called to notify playlist item delete
+ void onDelete( int );
+
+ /// Items waiting to be appended
+ int i_items_to_append;
+
private:
/// VLC playlist object
playlist_t *m_pPlaylist;
- /// Iconv handle
- vlc_iconv_t iconvHandle;
/// Build the list from the VLC playlist
void buildTree();