]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_playtree.hpp
* Fix directory.c on WinCE (which has neither DT_DIR nor S_ISDIR)
[vlc] / modules / gui / skins2 / commands / cmd_playtree.hpp
1 /*****************************************************************************
2  * cmd_playtree.hpp
3  *****************************************************************************
4  * Copyright (C) 2005 VideoLAN
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea@videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef CMD_PLAYTREE_HPP
25 #define CMD_PLAYTREE_HPP
26
27 #include "cmd_generic.hpp"
28 #include "../utils/var_tree.hpp"
29
30 // TODO : implement branch specific stuff
31
32 /// Command to delete the selected items from a tree
33 class CmdPlaytreeDel: public CmdGeneric
34 {
35     public:
36         CmdPlaytreeDel( intf_thread_t *pIntf, VarTree &rTree ):
37             CmdGeneric( pIntf ), m_rTree( rTree ) {}
38         virtual ~CmdPlaytreeDel() {}
39
40         /// This method does the real job of the command
41         virtual void execute();
42
43         /// Return the type of the command
44         virtual string getType() const { return "playtree del"; }
45
46     private:
47         /// Tree
48         VarTree &m_rTree;
49 };
50
51 /// Command to sort the playtree
52 DEFINE_COMMAND( PlaytreeSort, "playtree sort" )
53
54 #endif