]> git.sesse.net Git - vlc/blob - modules/gui/skins2/vars/playtree.hpp
Use pl_Locked and pl_Unlocked
[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
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 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 playlist item append
50         void onAppend( playlist_add_t * );
51
52         /// Function called to notify playlist item delete
53         void onDelete( int );
54
55         /// Items waiting to be appended
56         int i_items_to_append;
57
58     private:
59         /// VLC playlist object
60         playlist_t *m_pPlaylist;
61
62         /// Build the list from the VLC playlist
63         void buildTree();
64
65         /// Update Node's children
66         void buildNode( playlist_item_t *p_node, VarTree &m_pNode );
67 };
68
69 #endif