]> git.sesse.net Git - vlc/blob - modules/gui/skins2/vars/playtree.hpp
Merge branch 'master' into lpcm_encoder
[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 <vlc_playlist.h>
29 #include "../utils/var_tree.hpp"
30
31 /// Variable for VLC playlist (new tree format)
32 class Playtree: public VarTree
33 {
34 public:
35     Playtree( intf_thread_t *pIntf );
36     virtual ~Playtree();
37
38     /// Remove the selected elements from the list
39     virtual void delSelected();
40
41     /// Execute the action associated to this item
42     virtual void action( VarTree *pItem );
43
44     /// Function called to notify playlist changes
45     void onChange();
46
47     /// Function called to notify playlist item update
48     void onUpdateItem( int id );
49
50     /// Function called to notify about current playing item
51     void onUpdateCurrent( bool b_active );
52
53     /// Function called to notify playlist item append
54     void onAppend( playlist_add_t * );
55
56     /// Function called to notify playlist item delete
57     void onDelete( int );
58
59     /// Items waiting to be appended
60     int i_items_to_append;
61
62 private:
63     /// VLC playlist object
64     playlist_t *m_pPlaylist;
65
66     /// Build the list from the VLC playlist
67     void buildTree();
68
69     /// Update Node's children
70     void buildNode( playlist_item_t *p_node, VarTree &m_pNode );
71
72     /// keep track of item being played
73     playlist_item_t* m_currentItem;
74 };
75
76 #endif