]> git.sesse.net Git - vlc/blob - modules/gui/skins2/vars/playtree.hpp
skins2: add support for tracking current playing item correctly
[vlc] / modules / gui / skins2 / vars / playtree.hpp
1 /*****************************************************************************
2  * playtree.hpp
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea@videolan.org>
8  *          ClĂ©ment Stenac <zorglub@videolan.org>
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
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License along
21  * with this program; if not, write to the Free Software Foundation, Inc.,
22  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifndef PLAYTREE_HPP
26 #define PLAYTREE_HPP
27
28 #include "../utils/var_tree.hpp"
29
30 /// Variable for VLC playlist (new tree format)
31 class Playtree: public VarTree
32 {
33 public:
34     Playtree( intf_thread_t *pIntf );
35     virtual ~Playtree();
36
37     /// Remove the selected elements from the list
38     virtual void delSelected();
39
40     /// Execute the action associated to this item
41     virtual void action( VarTree *pItem );
42
43     /// Function called to notify playlist changes
44     void onChange();
45
46     /// Function called to notify playlist item update
47     void onUpdateItem( int id );
48
49     /// Function called to notify about current playing item
50     void onUpdateCurrent( );
51
52     /// Function called to notify playlist item append
53     void onAppend( playlist_add_t * );
54
55     /// Function called to notify playlist item delete
56     void onDelete( int );
57
58     /// Items waiting to be appended
59     int i_items_to_append;
60
61 private:
62     /// VLC playlist object
63     playlist_t *m_pPlaylist;
64
65     /// Build the list from the VLC playlist
66     void buildTree();
67
68     /// Update Node's children
69     void buildNode( playlist_item_t *p_node, VarTree &m_pNode );
70
71     /// keep track of item being played
72     Iterator m_playingIt;
73 };
74
75 #endif