qt: playlist: use item title if available
[vlc.git] / modules / gui / skins2 / commands / cmd_playtree.hpp
blobd4961f081af768c25399f095a656d9c26a1bcb8c
1 /*****************************************************************************
2 * cmd_playtree.hpp
3 *****************************************************************************
4 * Copyright (C) 2005 the VideoLAN team
6 * Authors: Antoine Cellerier <dionoea@videolan.org>
7 * Clément Stenac <zorglub@videolan.org>
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.
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.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef CMD_PLAYTREE_HPP
25 #define CMD_PLAYTREE_HPP
27 #include "cmd_generic.hpp"
28 #include "../utils/var_tree.hpp"
30 // TODO : implement branch specific stuff
32 /// Command to delete the selected items from a tree
33 class CmdPlaytreeDel: public CmdGeneric
35 public:
36 CmdPlaytreeDel( intf_thread_t *pIntf, VarTree &rTree )
37 : CmdGeneric( pIntf ), m_rTree( rTree ) { }
38 virtual ~CmdPlaytreeDel() { }
39 virtual void execute();
40 virtual std::string getType() const { return "playtree del"; }
42 private:
43 /// Tree
44 VarTree &m_rTree;
47 /// Command to reset the playtree
48 DEFINE_COMMAND( PlaytreeReset, "playtree reset" )
50 /// Command to sort the playtree
51 DEFINE_COMMAND( PlaytreeSort, "playtree sort" )
53 #endif