shell: Convert the filesystem shell folder to Unicode.
[wine/multimedia.git] / dlls / shell32 / clipboard.c
blob58fe3422bfb8ccbfb450d94b8236cb2f02b667e8
1 /*
2 * clipboard helper functions
4 * Copyright 2000 Juergen Schmied <juergen.schmied@debitel.de>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 * NOTES:
22 * For copy & paste functions within contextmenus does the shell use
23 * the OLE clipboard functions in combination with dataobjects.
24 * The OLE32.DLL gets loaded with LoadLibrary
26 * - a right mousebutton-copy sets the following formats:
27 * classic:
28 * Shell IDList Array
29 * Preferred Drop Effect
30 * Shell Object Offsets
31 * HDROP
32 * FileName
33 * ole:
34 * OlePrivateData (ClipboardDataObjectInterface)
38 #include <stdarg.h>
39 #include <string.h>
41 #include "windef.h"
42 #include "winbase.h"
43 #include "winreg.h"
44 #include "wingdi.h"
45 #include "pidl.h"
46 #include "undocshell.h"
47 #include "shell32_main.h"
48 #include "shlwapi.h"
50 #include "wine/unicode.h"
51 #include "wine/debug.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(shell);
55 /**************************************************************************
56 * RenderHDROP
58 * creates a CF_HDROP structure
60 HGLOBAL RenderHDROP(LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl)
62 UINT i;
63 int rootsize = 0,size = 0;
64 char szRootPath[MAX_PATH];
65 char szFileName[MAX_PATH];
66 HGLOBAL hGlobal;
67 DROPFILES *pDropFiles;
68 int offset;
70 TRACE("(%p,%p,%u)\n", pidlRoot, apidl, cidl);
72 /* get the size needed */
73 size = sizeof(DROPFILES);
75 SHGetPathFromIDListA(pidlRoot, szRootPath);
76 PathAddBackslashA(szRootPath);
77 rootsize = strlen(szRootPath);
79 for (i=0; i<cidl;i++)
81 _ILSimpleGetText(apidl[i], szFileName, MAX_PATH);
82 size += rootsize + strlen(szFileName) + 1;
85 size++;
87 /* Fill the structure */
88 hGlobal = GlobalAlloc(GHND|GMEM_SHARE, size);
89 if(!hGlobal) return hGlobal;
91 pDropFiles = (DROPFILES *)GlobalLock(hGlobal);
92 pDropFiles->pFiles = sizeof(DROPFILES);
93 pDropFiles->fWide = FALSE;
95 offset = pDropFiles->pFiles;
96 strcpy(szFileName, szRootPath);
98 for (i=0; i<cidl;i++)
101 _ILSimpleGetText(apidl[i], szFileName + rootsize, MAX_PATH - rootsize);
102 size = strlen(szFileName) + 1;
103 strcpy(((char*)pDropFiles)+offset, szFileName);
104 offset += size;
107 ((char*)pDropFiles)[offset] = 0;
108 GlobalUnlock(hGlobal);
110 return hGlobal;
113 HGLOBAL RenderSHELLIDLIST (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl)
115 UINT i;
116 int offset = 0, sizePidl, size;
117 HGLOBAL hGlobal;
118 LPIDA pcida;
120 TRACE("(%p,%p,%u)\n", pidlRoot, apidl, cidl);
122 /* get the size needed */
123 size = sizeof(CIDA) + sizeof (UINT)*(cidl); /* header */
124 size += ILGetSize (pidlRoot); /* root pidl */
125 for(i=0; i<cidl; i++)
127 size += ILGetSize(apidl[i]); /* child pidls */
130 /* fill the structure */
131 hGlobal = GlobalAlloc(GHND|GMEM_SHARE, size);
132 if(!hGlobal) return hGlobal;
133 pcida = GlobalLock (hGlobal);
134 pcida->cidl = cidl;
136 /* root pidl */
137 offset = sizeof(CIDA) + sizeof (UINT)*(cidl);
138 pcida->aoffset[0] = offset; /* first element */
139 sizePidl = ILGetSize (pidlRoot);
140 memcpy(((LPBYTE)pcida)+offset, pidlRoot, sizePidl);
141 offset += sizePidl;
143 for(i=0; i<cidl; i++) /* child pidls */
145 pcida->aoffset[i+1] = offset;
146 sizePidl = ILGetSize(apidl[i]);
147 memcpy(((LPBYTE)pcida)+offset, apidl[i], sizePidl);
148 offset += sizePidl;
151 GlobalUnlock(hGlobal);
152 return hGlobal;
155 HGLOBAL RenderSHELLIDLISTOFFSET (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl)
157 FIXME("\n");
158 return 0;
161 HGLOBAL RenderFILECONTENTS (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl)
163 FIXME("\n");
164 return 0;
167 HGLOBAL RenderFILEDESCRIPTOR (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl)
169 FIXME("\n");
170 return 0;
173 HGLOBAL RenderFILENAMEA (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl)
175 int size = 0;
176 char szTemp[MAX_PATH], *szFileName;
177 LPITEMIDLIST pidl;
178 HGLOBAL hGlobal;
179 BOOL bSuccess;
181 TRACE("(%p,%p,%u)\n", pidlRoot, apidl, cidl);
183 /* get path of combined pidl */
184 pidl = ILCombine(pidlRoot, apidl[0]);
185 if (!pidl)
186 return 0;
188 bSuccess = SHGetPathFromIDListA(pidl, szTemp);
189 SHFree(pidl);
190 if (!bSuccess)
191 return 0;
193 size = strlen(szTemp) + 1;
195 /* fill the structure */
196 hGlobal = GlobalAlloc(GHND|GMEM_SHARE, size);
197 if(!hGlobal) return hGlobal;
198 szFileName = (char *)GlobalLock(hGlobal);
199 memcpy(szFileName, szTemp, size);
200 GlobalUnlock(hGlobal);
202 return hGlobal;
205 HGLOBAL RenderFILENAMEW (LPITEMIDLIST pidlRoot, LPITEMIDLIST * apidl, UINT cidl)
207 int size = 0;
208 WCHAR szTemp[MAX_PATH], *szFileName;
209 LPITEMIDLIST pidl;
210 HGLOBAL hGlobal;
211 BOOL bSuccess;
213 TRACE("(%p,%p,%u)\n", pidlRoot, apidl, cidl);
215 /* get path of combined pidl */
216 pidl = ILCombine(pidlRoot, apidl[0]);
217 if (!pidl)
218 return 0;
220 bSuccess = SHGetPathFromIDListW(pidl, szTemp);
221 SHFree(pidl);
222 if (!bSuccess)
223 return 0;
225 size = (strlenW(szTemp)+1) * sizeof(WCHAR);
227 /* fill the structure */
228 hGlobal = GlobalAlloc(GHND|GMEM_SHARE, size);
229 if(!hGlobal) return hGlobal;
230 szFileName = (WCHAR *)GlobalLock(hGlobal);
231 memcpy(szFileName, szTemp, size);
232 GlobalUnlock(hGlobal);
234 return hGlobal;
237 HGLOBAL RenderPREFEREDDROPEFFECT (DWORD dwFlags)
239 DWORD * pdwFlag;
240 HGLOBAL hGlobal;
242 TRACE("(0x%08lx)\n", dwFlags);
244 hGlobal = GlobalAlloc(GHND|GMEM_SHARE, sizeof(DWORD));
245 if(!hGlobal) return hGlobal;
246 pdwFlag = (DWORD*)GlobalLock(hGlobal);
247 *pdwFlag = dwFlags;
248 GlobalUnlock(hGlobal);
249 return hGlobal;
252 /**************************************************************************
253 * IsDataInClipboard
255 * checks if there is something in the clipboard we can use
257 BOOL IsDataInClipboard (HWND hwnd)
259 BOOL ret = FALSE;
261 if (OpenClipboard(hwnd))
263 if (GetOpenClipboardWindow())
265 ret = IsClipboardFormatAvailable(CF_TEXT);
267 CloseClipboard();
269 return ret;