]> git.sesse.net Git - vlc/blob - modules/gui/skins/win32/win32_dragdrop.h
a4ff3ebfc212e22f97be8f98ab2d454077f88302
[vlc] / modules / gui / skins / win32 / win32_dragdrop.h
1 /*****************************************************************************
2  * win32_dragdrop.h: Win32 implementation of the drag & drop
3  *****************************************************************************
4  * Copyright (C) 2003 VideoLAN
5  * $Id: win32_dragdrop.h,v 1.2 2003/04/12 21:43:27 asmax Exp $
6  *
7  * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
8  *          Emmanuel Puig    <karibu@via.ecp.fr>
9  *
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.
14  *
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.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111,
23  * USA.
24  *****************************************************************************/
25
26 #ifdef WIN32
27
28 #ifndef VLC_SKIN_WIN32_DRAGDROP
29 #define VLC_SKIN_WIN32_DRAGDROP
30
31 //--- WIN32 -----------------------------------------------------------------
32 #include <shellapi.h>
33 #include <ole2.h>
34
35 //---------------------------------------------------------------------------
36 class Win32DropObject : public IDropTarget
37 {
38     public:
39        Win32DropObject();
40        virtual ~Win32DropObject();
41
42     protected:
43         // IUnknown methods
44         STDMETHOD(QueryInterface)( REFIID riid, void FAR* FAR* ppvObj );
45         STDMETHOD_(ULONG, AddRef)();
46         STDMETHOD_(ULONG, Release)();
47
48         // IDropTarget methods
49         STDMETHOD(DragEnter)( LPDATAOBJECT pDataObj, DWORD grfKeyState,
50                               POINTL pt, DWORD *pdwEffect );
51         STDMETHOD(DragOver)( DWORD grfKeyState, POINTL pt, DWORD *pdwEffect );
52         STDMETHOD(DragLeave)();
53         STDMETHOD(Drop)( LPDATAOBJECT pDataObj, DWORD grfKeyState,
54                          POINTL pt, DWORD *pdwEffect );
55
56     private:
57         unsigned long References;
58
59         // Helper function
60         void HandleDrop( HDROP HDrop );
61 };
62 //---------------------------------------------------------------------------
63 #endif
64
65 #endif