skins2: add OS/2 support
[vlc.git] / modules / gui / skins2 / os2 / os2_dragdrop.hpp
blob3e70d03895fbf9600b9a718ba47a6b397af25787
1 /*****************************************************************************
2 * os2_dragdrop.hpp
3 *****************************************************************************
4 * Copyright (C) 2003, 2013 the VideoLAN team
6 * Authors: Cyril Deguet <asmax@via.ecp.fr>
7 * Olivier Teulière <ipkiss@via.ecp.fr>
8 * KO Myung-Hun <komh@chollian.net>
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.
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.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef OS2_DRAGDROP_HPP
26 #define OS2_DRAGDROP_HPP
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include "../src/skin_common.hpp"
33 #include "../src/generic_window.hpp"
36 class OS2DragDrop: public SkinObject
38 public:
39 OS2DragDrop( intf_thread_t *pIntf, bool playOnDrop, GenericWindow* pWin );
40 virtual ~OS2DragDrop() { }
42 private:
43 /// Indicates whether the file(s) must be played immediately
44 bool m_playOnDrop;
45 ///
46 GenericWindow* m_pWin;
50 #endif