qt: playlist: use item title if available
[vlc.git] / modules / gui / skins2 / commands / cmd_add_item.hpp
blob6465dd26d02339bdbe32a7b6537060ce9fb99699
1 /*****************************************************************************
2 * cmd_add_item.hpp
3 *****************************************************************************
4 * Copyright (C) 2003 the VideoLAN team
6 * Authors: Cyril Deguet <asmax@via.ecp.fr>
7 * Olivier Teulière <ipkiss@via.ecp.fr>
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_ADD_ITEM_HPP
25 #define CMD_ADD_ITEM_HPP
27 #include "cmd_generic.hpp"
28 #include <string>
31 /// "Add item" command
32 class CmdAddItem: public CmdGeneric
34 public:
35 CmdAddItem( intf_thread_t *pIntf, const std::string &rName, bool playNow )
36 : CmdGeneric( pIntf ), m_name( rName ), m_playNow( playNow ) { }
37 virtual ~CmdAddItem() { }
38 virtual void execute();
39 virtual std::string getType() const { return "add item"; }
41 private:
42 /// Name of the item to enqueue
43 std::string m_name;
44 /// Should we play the item immediately?
45 bool m_playNow;
48 #endif