/* * clipboard helper functions * * Copyright 2000 Juergen Schmied * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA * * NOTES: * * For copy & paste functions within contextmenus does the shell use * the OLE clipboard functions in combination with dataobjects. * The OLE32.DLL gets loaded with LoadLibrary * * - a right mousebutton-copy sets the following formats: * classic: * Shell IDList Array * Preferred Drop Effect * Shell Object Offsets * HDROP * FileName * ole: * OlePrivateData (ClipboardDataObjectInterface) * */ #include WINE_DEFAULT_DEBUG_CHANNEL(shell); /************************************************************************** * RenderHDROP * * creates a CF_HDROP structure */ HGLOBAL RenderHDROP(LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl) { UINT i; int size = 0; WCHAR wszFileName[MAX_PATH]; HGLOBAL hGlobal = NULL; DROPFILES *pDropFiles; int offset; LPITEMIDLIST *pidls; TRACE("(%p,%p,%u)\n", pidlRoot, apidl, cidl); pidls = HeapAlloc(GetProcessHeap(), 0, cidl * sizeof(*pidls)); if (!pidls) goto cleanup; /* get the size needed */ size = sizeof(DROPFILES); for (i=0; ipFiles = offset * sizeof(WCHAR); pDropFiles->fWide = TRUE; for (i=0; icidl = cidl; /* root pidl */ offset = sizeof(CIDA) + sizeof (UINT)*(cidl); pcida->aoffset[0] = offset; /* first element */ sizePidl = ILGetSize (pidlRoot); memcpy(((LPBYTE)pcida)+offset, pidlRoot, sizePidl); offset += sizePidl; for(i=0; iaoffset[i+1] = offset; sizePidl = ILGetSize(apidl[i]); memcpy(((LPBYTE)pcida)+offset, apidl[i], sizePidl); offset += sizePidl; } GlobalUnlock(hGlobal); return hGlobal; } HGLOBAL RenderSHELLIDLISTOFFSET (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl) { FIXME("\n"); return 0; } HGLOBAL RenderFILECONTENTS (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl) { FIXME("\n"); return 0; } HGLOBAL RenderFILEDESCRIPTOR (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl) { FIXME("\n"); return 0; } HGLOBAL RenderFILENAMEA (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl) { int size = 0; char szTemp[MAX_PATH], *szFileName; LPITEMIDLIST pidl; HGLOBAL hGlobal; BOOL bSuccess; TRACE("(%p,%p,%u)\n", pidlRoot, apidl, cidl); /* get path of combined pidl */ pidl = ILCombine(pidlRoot, apidl[0]); if (!pidl) return 0; bSuccess = SHGetPathFromIDListA(pidl, szTemp); SHFree(pidl); if (!bSuccess) return 0; size = strlen(szTemp) + 1; /* fill the structure */ hGlobal = GlobalAlloc(GHND|GMEM_SHARE, size); if(!hGlobal) return hGlobal; szFileName = (char *)GlobalLock(hGlobal); memcpy(szFileName, szTemp, size); GlobalUnlock(hGlobal); return hGlobal; } HGLOBAL RenderFILENAMEW (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl) { int size = 0; WCHAR szTemp[MAX_PATH], *szFileName; LPITEMIDLIST pidl; HGLOBAL hGlobal; BOOL bSuccess; TRACE("(%p,%p,%u)\n", pidlRoot, apidl, cidl); /* get path of combined pidl */ pidl = ILCombine(pidlRoot, apidl[0]); if (!pidl) return 0; bSuccess = SHGetPathFromIDListW(pidl, szTemp); SHFree(pidl); if (!bSuccess) return 0; size = (wcslen(szTemp)+1) * sizeof(WCHAR); /* fill the structure */ hGlobal = GlobalAlloc(GHND|GMEM_SHARE, size); if(!hGlobal) return hGlobal; szFileName = (WCHAR *)GlobalLock(hGlobal); memcpy(szFileName, szTemp, size); GlobalUnlock(hGlobal); return hGlobal; } HGLOBAL RenderPREFEREDDROPEFFECT (DWORD dwFlags) { DWORD * pdwFlag; HGLOBAL hGlobal; TRACE("(0x%08x)\n", dwFlags); hGlobal = GlobalAlloc(GHND|GMEM_SHARE, sizeof(DWORD)); if(!hGlobal) return hGlobal; pdwFlag = (DWORD*)GlobalLock(hGlobal); *pdwFlag = dwFlags; GlobalUnlock(hGlobal); return hGlobal; }