win32_dragdrop.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * win32_dragdrop.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: win32_dragdrop.cpp 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@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, USA.
  23.  *****************************************************************************/
  24. #ifdef WIN32_SKINS
  25. #include <windows.h>
  26. #include "win32_dragdrop.hpp"
  27. #include "../commands/cmd_add_item.hpp"
  28. Win32DragDrop::Win32DragDrop( intf_thread_t *pIntf, bool playOnDrop ):
  29.     SkinObject( pIntf ), IDropTarget(), m_references( 1 ),
  30.     m_playOnDrop( playOnDrop )
  31. {
  32. }
  33. STDMETHODIMP Win32DragDrop::QueryInterface( REFIID iid, void FAR* FAR* ppv )
  34. {
  35.     // Tell other objects about our capabilities
  36.     if( iid == IID_IUnknown || iid == IID_IDropTarget )
  37.     {
  38.         *ppv = this;
  39.         AddRef();
  40.         return S_OK;
  41.     }
  42.     *ppv = NULL;
  43.     return ResultFromScode( E_NOINTERFACE );
  44. }
  45. STDMETHODIMP_(ULONG) Win32DragDrop::AddRef()
  46. {
  47.     return ++m_references;
  48. }
  49. STDMETHODIMP_(ULONG) Win32DragDrop::Release()
  50. {
  51.     if( --m_references == 0 )
  52.     {
  53.         delete this;
  54.         return 0;
  55.     }
  56.     return m_references;
  57. }
  58. STDMETHODIMP Win32DragDrop::DragEnter( LPDATAOBJECT pDataObj,
  59.     DWORD grfKeyState, POINTL pt, DWORD *pdwEffect )
  60. {
  61.     FORMATETC fmtetc;
  62.     fmtetc.cfFormat = CF_HDROP;
  63.     fmtetc.ptd      = NULL;
  64.     fmtetc.dwAspect = DVASPECT_CONTENT;
  65.     fmtetc.lindex   = -1;
  66.     fmtetc.tymed    = TYMED_HGLOBAL;
  67.     // Check that the drag source provides CF_HDROP,
  68.     // which is the only format we accept
  69.     if( pDataObj->QueryGetData( &fmtetc ) == S_OK )
  70.     {
  71.         *pdwEffect = DROPEFFECT_COPY;
  72.     }
  73.     else
  74.     {
  75.         *pdwEffect = DROPEFFECT_NONE;
  76.     }
  77.     return S_OK;
  78. }
  79. STDMETHODIMP Win32DragDrop::DragOver( DWORD grfKeyState, POINTL pt,
  80.                                       DWORD *pdwEffect )
  81. {
  82.     // For visual feedback
  83.     return S_OK;
  84. }
  85. STDMETHODIMP Win32DragDrop::DragLeave()
  86. {
  87.     // Remove visual feedback
  88.     return S_OK;
  89. }
  90. STDMETHODIMP Win32DragDrop::Drop( LPDATAOBJECT pDataObj, DWORD grfKeyState,
  91.     POINTL pt, DWORD *pdwEffect )
  92. {
  93.     // User has dropped on us -- get the CF_HDROP data from drag source
  94.     FORMATETC fmtetc;
  95.     fmtetc.cfFormat = CF_HDROP;
  96.     fmtetc.ptd      = NULL;
  97.     fmtetc.dwAspect = DVASPECT_CONTENT;
  98.     fmtetc.lindex   = -1;
  99.     fmtetc.tymed    = TYMED_HGLOBAL;
  100.     STGMEDIUM medium;
  101.     HRESULT hr = pDataObj->GetData( &fmtetc, &medium );
  102.     if( !FAILED(hr) )
  103.     {
  104.         // Grab a pointer to the data
  105.         HGLOBAL HFiles = medium.hGlobal;
  106.         HDROP HDrop = (HDROP)GlobalLock( HFiles );
  107.         // Notify VLC of the drop
  108.         HandleDrop( HDrop );
  109.         // Release the pointer to the memory
  110.         GlobalUnlock( HFiles );
  111. //        ReleaseStgMedium( &medium );
  112.     }
  113.     else
  114.     {
  115.         *pdwEffect = DROPEFFECT_NONE;
  116.         return hr;
  117.     }
  118.     return S_OK;
  119. }
  120. void Win32DragDrop::HandleDrop( HDROP HDrop )
  121. {
  122.     // Get the number of dropped files
  123.     int nbFiles = DragQueryFile( HDrop, 0xFFFFFFFF, NULL, 0 );
  124.     // For each dropped file
  125.     for( int i = 0; i < nbFiles; i++ )
  126.     {
  127.         // Get the name of the file
  128.         int nameLength = DragQueryFile( HDrop, i, NULL, 0 ) + 1;
  129.         char *psz_fileName = new char[nameLength];
  130.         DragQueryFile( HDrop, i, psz_fileName, nameLength );
  131.         // Add the file
  132.         CmdAddItem cmd( getIntf(), psz_fileName, m_playOnDrop );
  133.         cmd.execute();
  134.         delete[] psz_fileName;
  135.     }
  136.     DragFinish( HDrop );
  137. }
  138. #endif