lldragdropwin32.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:10k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file lldragdrop32.cpp
  3.  * @brief Handler for Windows specific drag and drop (OS to client) code
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #if LL_WINDOWS
  33. #if LL_OS_DRAGDROP_ENABLED
  34. #include "linden_common.h"
  35. #include "llwindowwin32.h"
  36. #include "llkeyboardwin32.h"
  37. #include "llwindowcallbacks.h"
  38. #include "lldragdropwin32.h"
  39. class LLDragDropWin32Target: 
  40. public IDropTarget
  41. {
  42. public:
  43. ////////////////////////////////////////////////////////////////////////////////
  44. //
  45. LLDragDropWin32Target( HWND  hWnd ) :
  46. mRefCount( 1 ),
  47. mAppWindowHandle( hWnd ),
  48. mAllowDrop(false),
  49. mIsSlurl(false)
  50. {
  51. };
  52. virtual ~LLDragDropWin32Target()
  53. {
  54. };
  55. ////////////////////////////////////////////////////////////////////////////////
  56. //
  57. ULONG __stdcall AddRef( void )
  58. {
  59. return InterlockedIncrement( &mRefCount );
  60. };
  61. ////////////////////////////////////////////////////////////////////////////////
  62. //
  63. ULONG __stdcall Release( void )
  64. {
  65. LONG count = InterlockedDecrement( &mRefCount );
  66. if ( count == 0 )
  67. {
  68. delete this;
  69. return 0;
  70. }
  71. else
  72. {
  73. return count;
  74. };
  75. };
  76. ////////////////////////////////////////////////////////////////////////////////
  77. //
  78. HRESULT __stdcall QueryInterface( REFIID iid, void** ppvObject )
  79. {
  80. if ( iid == IID_IUnknown || iid == IID_IDropTarget )
  81. {
  82. AddRef();
  83. *ppvObject = this;
  84. return S_OK;
  85. }
  86. else
  87. {
  88. *ppvObject = 0;
  89. return E_NOINTERFACE;
  90. };
  91. };
  92. ////////////////////////////////////////////////////////////////////////////////
  93. //
  94. HRESULT __stdcall DragEnter( IDataObject* pDataObject, DWORD grfKeyState, POINTL pt, DWORD* pdwEffect )
  95. {
  96. FORMATETC fmtetc = { CF_TEXT, 0, DVASPECT_CONTENT, -1, TYMED_HGLOBAL };
  97. // support CF_TEXT using a HGLOBAL?
  98. if ( S_OK == pDataObject->QueryGetData( &fmtetc ) )
  99. {
  100. mAllowDrop = true;
  101. mDropUrl = std::string();
  102. mIsSlurl = false;
  103. STGMEDIUM stgmed;
  104. if( S_OK == pDataObject->GetData( &fmtetc, &stgmed ) )
  105. {
  106. PVOID data = GlobalLock( stgmed.hGlobal );
  107. mDropUrl = std::string( (char*)data );
  108. // XXX MAJOR MAJOR HACK!
  109. LLWindowWin32 *window_imp = (LLWindowWin32 *)GetWindowLong(mAppWindowHandle, GWL_USERDATA);
  110. if (NULL != window_imp)
  111. {
  112. LLCoordGL gl_coord( 0, 0 );
  113. POINT pt2;
  114. pt2.x = pt.x;
  115. pt2.y = pt.y;
  116. ScreenToClient( mAppWindowHandle, &pt2 );
  117. LLCoordWindow cursor_coord_window( pt2.x, pt2.y );
  118. window_imp->convertCoords(cursor_coord_window, &gl_coord);
  119. MASK mask = gKeyboard->currentMask(TRUE);
  120. LLWindowCallbacks::DragNDropResult result = window_imp->completeDragNDropRequest( gl_coord, mask, 
  121. LLWindowCallbacks::DNDA_START_TRACKING, mDropUrl );
  122. switch (result)
  123. {
  124. case LLWindowCallbacks::DND_COPY:
  125. *pdwEffect = DROPEFFECT_COPY;
  126. break;
  127. case LLWindowCallbacks::DND_LINK:
  128. *pdwEffect = DROPEFFECT_LINK;
  129. break;
  130. case LLWindowCallbacks::DND_MOVE:
  131. *pdwEffect = DROPEFFECT_MOVE;
  132. break;
  133. case LLWindowCallbacks::DND_NONE:
  134. default:
  135. *pdwEffect = DROPEFFECT_NONE;
  136. break;
  137. }
  138. };
  139. GlobalUnlock( stgmed.hGlobal );
  140. ReleaseStgMedium( &stgmed );
  141. };
  142. SetFocus( mAppWindowHandle );
  143. }
  144. else
  145. {
  146. mAllowDrop = false;
  147. *pdwEffect = DROPEFFECT_NONE;
  148. };
  149. return S_OK;
  150. };
  151. ////////////////////////////////////////////////////////////////////////////////
  152. //
  153. HRESULT __stdcall DragOver( DWORD grfKeyState, POINTL pt, DWORD* pdwEffect )
  154. {
  155. if ( mAllowDrop )
  156. {
  157. // XXX MAJOR MAJOR HACK!
  158. LLWindowWin32 *window_imp = (LLWindowWin32 *)GetWindowLong(mAppWindowHandle, GWL_USERDATA);
  159. if (NULL != window_imp)
  160. {
  161. LLCoordGL gl_coord( 0, 0 );
  162. POINT pt2;
  163. pt2.x = pt.x;
  164. pt2.y = pt.y;
  165. ScreenToClient( mAppWindowHandle, &pt2 );
  166. LLCoordWindow cursor_coord_window( pt2.x, pt2.y );
  167. window_imp->convertCoords(cursor_coord_window, &gl_coord);
  168. MASK mask = gKeyboard->currentMask(TRUE);
  169. LLWindowCallbacks::DragNDropResult result = window_imp->completeDragNDropRequest( gl_coord, mask, 
  170. LLWindowCallbacks::DNDA_TRACK, mDropUrl );
  171. switch (result)
  172. {
  173. case LLWindowCallbacks::DND_COPY:
  174. *pdwEffect = DROPEFFECT_COPY;
  175. break;
  176. case LLWindowCallbacks::DND_LINK:
  177. *pdwEffect = DROPEFFECT_LINK;
  178. break;
  179. case LLWindowCallbacks::DND_MOVE:
  180. *pdwEffect = DROPEFFECT_MOVE;
  181. break;
  182. case LLWindowCallbacks::DND_NONE:
  183. default:
  184. *pdwEffect = DROPEFFECT_NONE;
  185. break;
  186. }
  187. };
  188. }
  189. else
  190. {
  191. *pdwEffect = DROPEFFECT_NONE;
  192. };
  193. return S_OK;
  194. };
  195. ////////////////////////////////////////////////////////////////////////////////
  196. //
  197. HRESULT __stdcall DragLeave( void )
  198. {
  199. // XXX MAJOR MAJOR HACK!
  200. LLWindowWin32 *window_imp = (LLWindowWin32 *)GetWindowLong(mAppWindowHandle, GWL_USERDATA);
  201. if (NULL != window_imp)
  202. {
  203. LLCoordGL gl_coord( 0, 0 );
  204. MASK mask = gKeyboard->currentMask(TRUE);
  205. window_imp->completeDragNDropRequest( gl_coord, mask, LLWindowCallbacks::DNDA_STOP_TRACKING, mDropUrl );
  206. };
  207. return S_OK;
  208. };
  209. ////////////////////////////////////////////////////////////////////////////////
  210. //
  211. HRESULT __stdcall Drop( IDataObject* pDataObject, DWORD grfKeyState, POINTL pt, DWORD* pdwEffect )
  212. {
  213. if ( mAllowDrop )
  214. {
  215. // window impl stored in Window data (neat!)
  216. LLWindowWin32 *window_imp = (LLWindowWin32 *)GetWindowLong( mAppWindowHandle, GWL_USERDATA );
  217. if ( NULL != window_imp )
  218. {
  219. LLCoordGL gl_coord( 0, 0 );
  220. POINT pt_client;
  221. pt_client.x = pt.x;
  222. pt_client.y = pt.y;
  223. ScreenToClient( mAppWindowHandle, &pt_client );
  224. LLCoordWindow cursor_coord_window( pt_client.x, pt_client.y );
  225. window_imp->convertCoords(cursor_coord_window, &gl_coord);
  226. llinfos << "### (Drop) URL is: " << mDropUrl << llendl;
  227. llinfos << "###        raw coords are: " << pt.x << " x " << pt.y << llendl;
  228. llinfos << "###     client coords are: " << pt_client.x << " x " << pt_client.y << llendl;
  229. llinfos << "###         GL coords are: " << gl_coord.mX << " x " << gl_coord.mY << llendl;
  230. llinfos << llendl;
  231. // no keyboard modifier option yet but we could one day
  232. MASK mask = gKeyboard->currentMask( TRUE );
  233. // actually do the drop
  234. LLWindowCallbacks::DragNDropResult result = window_imp->completeDragNDropRequest( gl_coord, mask, 
  235. LLWindowCallbacks::DNDA_DROPPED, mDropUrl );
  236. switch (result)
  237. {
  238. case LLWindowCallbacks::DND_COPY:
  239. *pdwEffect = DROPEFFECT_COPY;
  240. break;
  241. case LLWindowCallbacks::DND_LINK:
  242. *pdwEffect = DROPEFFECT_LINK;
  243. break;
  244. case LLWindowCallbacks::DND_MOVE:
  245. *pdwEffect = DROPEFFECT_MOVE;
  246. break;
  247. case LLWindowCallbacks::DND_NONE:
  248. default:
  249. *pdwEffect = DROPEFFECT_NONE;
  250. break;
  251. }
  252. };
  253. }
  254. else
  255. {
  256. *pdwEffect = DROPEFFECT_NONE;
  257. };
  258. return S_OK;
  259. };
  260. ////////////////////////////////////////////////////////////////////////////////
  261. //
  262. private:
  263. LONG mRefCount;
  264. HWND mAppWindowHandle;
  265. bool mAllowDrop;
  266. std::string mDropUrl;
  267. bool mIsSlurl;
  268. friend class LLWindowWin32;
  269. };
  270. ////////////////////////////////////////////////////////////////////////////////
  271. //
  272. LLDragDropWin32::LLDragDropWin32() :
  273. mDropTarget( NULL ),
  274. mDropWindowHandle( NULL )
  275. {
  276. }
  277. ////////////////////////////////////////////////////////////////////////////////
  278. //
  279. LLDragDropWin32::~LLDragDropWin32()
  280. {
  281. }
  282. ////////////////////////////////////////////////////////////////////////////////
  283. //
  284. bool LLDragDropWin32::init( HWND hWnd )
  285. {
  286. if ( NOERROR != OleInitialize( NULL ) )
  287. return FALSE; 
  288. mDropTarget = new LLDragDropWin32Target( hWnd );
  289. if ( mDropTarget )
  290. {
  291. HRESULT result = CoLockObjectExternal( mDropTarget, TRUE, FALSE );
  292. if ( S_OK == result )
  293. {
  294. result = RegisterDragDrop( hWnd, mDropTarget );
  295. if ( S_OK != result )
  296. {
  297. // RegisterDragDrop failed
  298. return false;
  299. };
  300. // all ok
  301. mDropWindowHandle = hWnd;
  302. }
  303. else
  304. {
  305. // Unable to lock OLE object
  306. return false;
  307. };
  308. };
  309. // success
  310. return true;
  311. }
  312. ////////////////////////////////////////////////////////////////////////////////
  313. //
  314. void LLDragDropWin32::reset()
  315. {
  316. if ( mDropTarget )
  317. {
  318. RevokeDragDrop( mDropWindowHandle );
  319. CoLockObjectExternal( mDropTarget, FALSE, TRUE );
  320. mDropTarget->Release();  
  321. };
  322. OleUninitialize();
  323. }
  324. #endif // LL_OS_DRAGDROP_ENABLED
  325. #endif // LL_WINDOWS