]> git.sesse.net Git - vlc/blob - modules/gui/skins2/commands/cmd_playtree.cpp
5504e3496fc74cab6bdb55496e3d67e583fadb02
[vlc] / modules / gui / skins2 / commands / cmd_playtree.cpp
1 /*****************************************************************************
2  * cmd_playtree.cpp
3  *****************************************************************************
4  * Copyright (C) 2005 VideoLAN
5  * $Id: cmd_playlist.cpp 10101 2005-03-02 16:47:31Z robux4 $
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 #include "cmd_playtree.hpp"
25 #include "../src/vlcproc.hpp"
26 #include "../utils/var_bool.hpp"
27
28 void CmdPlaytreeDel::execute()
29 {
30     m_rTree.delSelected();
31 }
32
33 void CmdPlaytreeSort::execute()
34 {
35     // TODO
36 }
37
38 void CmdPlaytreeNext::execute()
39 {
40     // TODO
41 }
42
43 void CmdPlaytreePrevious::execute()
44 {
45     // TODO
46 }
47
48 void CmdPlaytreeRandom::execute()
49 {
50     // TODO
51 }
52
53 void CmdPlaytreeLoop::execute()
54 {
55     // TODO
56 }
57
58 void CmdPlaytreeRepeat::execute()
59 {
60     // TODO
61 }
62
63 void CmdPlaytreeLoad::execute()
64 {
65     // TODO
66 }
67
68 void CmdPlaytreeSave::execute()
69 {
70     // TODO
71 }