Commit 6acd0599 authored by Juergen Schmied's avatar Juergen Schmied Committed by Alexandre Julliard

Bugfixes, shellview uses DPA's now, IShellView_GetItemObject implemented.

parent bbb946f0
...@@ -304,7 +304,7 @@ static HRESULT WINAPI IClassFactory_CreateInstance( ...@@ -304,7 +304,7 @@ static HRESULT WINAPI IClassFactory_CreateInstance(
{ pObj = (IUnknown *)IShellFolder_Constructor(NULL,NULL); { pObj = (IUnknown *)IShellFolder_Constructor(NULL,NULL);
} }
else if (IsEqualIID(riid, &IID_IShellView)) else if (IsEqualIID(riid, &IID_IShellView))
{ pObj = (IUnknown *)IShellView_Constructor(); { pObj = (IUnknown *)IShellView_Constructor(NULL,NULL);
} }
else if (IsEqualIID(riid, &IID_IShellLink)) else if (IsEqualIID(riid, &IID_IShellLink))
{ pObj = (IUnknown *)IShellLink_Constructor(); { pObj = (IUnknown *)IShellLink_Constructor();
......
...@@ -119,13 +119,13 @@ LPSTR WINAPI PathFindExtension(LPSTR path) { ...@@ -119,13 +119,13 @@ LPSTR WINAPI PathFindExtension(LPSTR path) {
LPSTR WINAPI PathAddBackslash(LPSTR path) LPSTR WINAPI PathAddBackslash(LPSTR path)
{ int len; { int len;
TRACE(shell,"%p->%s\n",path,path); TRACE(shell,"%p->%s\n",path,path);
len = strlen(path); len = strlen(path);
if (len && path[len-1]!='\\') if (len && path[len-1]!='\\')
{ path[len+0]='\\'; { path[len] = '\\';
path[len+1]='\0'; path[len+1]= 0x00;
return path+len+1; return path+len+1;
} }
else
return path+len; return path+len;
} }
...@@ -232,17 +232,25 @@ LPSTR WINAPI PathAppend(LPSTR x1,LPSTR x2) { ...@@ -232,17 +232,25 @@ LPSTR WINAPI PathAppend(LPSTR x1,LPSTR x2) {
* *
* NOTES * NOTES
* if lpszFile='.' skip it * if lpszFile='.' skip it
* szDest can be equal to lpszFile. Thats why we use sTemp
*/ */
LPSTR WINAPI PathCombine(LPSTR szDest, LPCSTR lpszDir, LPCSTR lpszFile) LPSTR WINAPI PathCombine(LPSTR szDest, LPCSTR lpszDir, LPCSTR lpszFile)
{ TRACE(shell,"%s %s\n",lpszDir,lpszFile); { char sTemp[MAX_PATH];
TRACE(shell,"%p %p->%s %p->%s\n",szDest, lpszDir, lpszDir, lpszFile, lpszFile);
if (!lpszFile || !lpszFile[0] || (lpszFile[0]=='.' && !lpszFile[1]) ) if (!lpszFile || !lpszFile[0] || (lpszFile[0]=='.' && !lpszFile[1]) )
{ strcpy(szDest,lpszDir); { strcpy(szDest,lpszDir);
return szDest; return szDest;
} }
strcpy(szDest,lpszDir);
PathAddBackslash(szDest); /* if lpszFile is a complete path don't care about lpszDir */
strcat(szDest,lpszFile); if (PathIsRoot(lpszFile))
{ strcpy(szDest,lpszFile);
}
strcpy(sTemp,lpszDir);
PathAddBackslash(sTemp);
strcat(sTemp,lpszFile);
strcpy(szDest,sTemp);
return szDest; return szDest;
} }
...@@ -777,15 +785,33 @@ DWORD WINAPI SHAddToRecentDocs32 (UINT32 uFlags,LPCVOID pv) ...@@ -777,15 +785,33 @@ DWORD WINAPI SHAddToRecentDocs32 (UINT32 uFlags,LPCVOID pv)
} }
return 0; return 0;
} }
/*************************************************************************
* SHFileOperation32 [SHELL32.242]
*
*/
DWORD WINAPI SHFileOperation32(DWORD x)
{ FIXME(shell,"0x%08lx stub\n",x);
return 0;
}
/************************************************************************* /*************************************************************************
* SHFileOperation [SHELL32.242] * SHFileOperation32A [SHELL32.243]
*
* NOTES
* exported by name
*/
DWORD WINAPI SHFileOperation32A (LPSHFILEOPSTRUCT32A lpFileOp)
{ FIXME (shell,"(%p):stub.\n", lpFileOp);
return 1;
}
/*************************************************************************
* SHFileOperation32W [SHELL32.244]
* *
* NOTES * NOTES
* exported by name * exported by name
*/ */
DWORD WINAPI SHFileOperation32 ( DWORD WINAPI SHFileOperation32W (LPSHFILEOPSTRUCT32W lpFileOp)
LPSHFILEOPSTRUCT32A lpFileOp)
{ FIXME (shell,"(%p):stub.\n", lpFileOp); { FIXME (shell,"(%p):stub.\n", lpFileOp);
return 1; return 1;
} }
...@@ -964,13 +990,37 @@ HRESULT WINAPI SHGetDataFromIDListA(DWORD u, DWORD v, DWORD w, DWORD x, DWORD y) ...@@ -964,13 +990,37 @@ HRESULT WINAPI SHGetDataFromIDListA(DWORD u, DWORD v, DWORD w, DWORD x, DWORD y)
return 0; return 0;
} }
/************************************************************************* /*************************************************************************
* SHFileOperationA [SHELL32.243] * SHRegQueryValueEx32W [NT4.0:SHELL32.511]
* *
*/ */
HRESULT WINAPI SHFileOperationA(DWORD x) HRESULT WINAPI SHRegQueryValueEx32W (DWORD u, LPWSTR v, DWORD w, DWORD x, DWORD y, DWORD z)
{ FIXME(shell,"0x%08lx stub\n",x); { FIXME(shell,"0x%04lx %s 0x%04lx 0x%04lx 0x%04lx 0x%04lx stub\n",u,debugstr_w(v),w,x,y,z);
return 0; return 0;
}
/*************************************************************************
* ReadCabinetState [NT 4.0:SHELL32.651]
*
*/
HRESULT WINAPI ReadCabinetState(DWORD u, DWORD v)
{ FIXME(shell,"0x%04lx 0x%04lx stub\n",u,v);
return 0;
}
/*************************************************************************
* WriteCabinetState [NT 4.0:SHELL32.652]
*
*/
HRESULT WINAPI WriteCabinetState(DWORD u)
{ FIXME(shell,"0x%04lx stub\n",u);
return 0;
}
/*************************************************************************
* IsUserAdmin [NT 4.0:SHELL32.680]
*
*/
HRESULT WINAPI IsUserAdmin()
{ FIXME(shell,"stub\n");
return TRUE;
} }
/************************************************************************* /*************************************************************************
* SHFlushClipboard [SHELL32.121] * SHFlushClipboard [SHELL32.121]
......
...@@ -378,14 +378,16 @@ static HRESULT WINAPI IShellFolder_BindToStorage( ...@@ -378,14 +378,16 @@ static HRESULT WINAPI IShellFolder_BindToStorage(
* LPARAM lParam, //[in ] Column? * LPARAM lParam, //[in ] Column?
* LPCITEMIDLIST pidl1, //[in ] simple pidl * LPCITEMIDLIST pidl1, //[in ] simple pidl
* LPCITEMIDLIST pidl2) //[in ] simple pidl * LPCITEMIDLIST pidl2) //[in ] simple pidl
*
* NOTES
* Special case - If one of the items is a Path and the other is a File,
* always make the Path come before the File.
*
* FIXME * FIXME
* we have to handle simple pidl's only * we have to handle simple pidl's only (?)
*/ */
static HRESULT WINAPI IShellFolder_CompareIDs( static HRESULT WINAPI IShellFolder_CompareIDs(LPSHELLFOLDER this,
LPSHELLFOLDER this, LPARAM lParam, LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
LPARAM lParam,
LPCITEMIDLIST pidl1, /*simple pidl*/
LPCITEMIDLIST pidl2) /*simple pidl*/
{ CHAR szString1[MAX_PATH] = ""; { CHAR szString1[MAX_PATH] = "";
CHAR szString2[MAX_PATH] = ""; CHAR szString2[MAX_PATH] = "";
int nReturn; int nReturn;
...@@ -393,8 +395,12 @@ static HRESULT WINAPI IShellFolder_CompareIDs( ...@@ -393,8 +395,12 @@ static HRESULT WINAPI IShellFolder_CompareIDs(
TRACE(shell,"(%p)->(0x%08lx,pidl1=%p,pidl2=%p)\n",this,lParam,pidl1,pidl2); TRACE(shell,"(%p)->(0x%08lx,pidl1=%p,pidl2=%p)\n",this,lParam,pidl1,pidl2);
/*Special case - If one of the items is a Path and the other is a File, always if (!pidl1 && !pidl2)
make the Path come before the File.*/ return 0;
if (!pidl1) /* Desktop < anything */
return -1;
if (!pidl2)
return 1;
/* get the last item in each list */ /* get the last item in each list */
while((ILGetNext(pidlTemp1))->mkid.cb) while((ILGetNext(pidlTemp1))->mkid.cb)
...@@ -412,12 +418,14 @@ static HRESULT WINAPI IShellFolder_CompareIDs( ...@@ -412,12 +418,14 @@ static HRESULT WINAPI IShellFolder_CompareIDs(
_ILGetDrive( pidl1,szString1,sizeof(szString1)); _ILGetDrive( pidl1,szString1,sizeof(szString1));
_ILGetDrive( pidl2,szString1,sizeof(szString2)); _ILGetDrive( pidl2,szString1,sizeof(szString2));
nReturn = strcasecmp(szString1, szString2); nReturn = strcasecmp(szString1, szString2);
if(nReturn) if(nReturn)
return nReturn; return nReturn;
_ILGetFolderText( pidl1,szString1,sizeof(szString1)); _ILGetFolderText( pidl1,szString1,sizeof(szString1));
_ILGetFolderText( pidl2,szString2,sizeof(szString2)); _ILGetFolderText( pidl2,szString2,sizeof(szString2));
nReturn = strcasecmp(szString1, szString2); nReturn = strcasecmp(szString1, szString2);
if(nReturn) if(nReturn)
return nReturn; return nReturn;
...@@ -439,11 +447,8 @@ static HRESULT WINAPI IShellFolder_CompareIDs( ...@@ -439,11 +447,8 @@ static HRESULT WINAPI IShellFolder_CompareIDs(
* NOTES * NOTES
* the same as SHCreateShellFolderViewEx ??? * the same as SHCreateShellFolderViewEx ???
*/ */
static HRESULT WINAPI IShellFolder_CreateViewObject( static HRESULT WINAPI IShellFolder_CreateViewObject( LPSHELLFOLDER this,
LPSHELLFOLDER this, HWND32 hwndOwner, REFIID riid, LPVOID *ppvOut)
HWND32 hwndOwner,
REFIID riid,
LPVOID *ppvOut)
{ LPSHELLVIEW pShellView; { LPSHELLVIEW pShellView;
char xriid[50]; char xriid[50];
HRESULT hr; HRESULT hr;
...@@ -494,7 +499,8 @@ static HRESULT WINAPI IShellFolder_GetAttributesOf(LPSHELLFOLDER this,UINT32 cid ...@@ -494,7 +499,8 @@ static HRESULT WINAPI IShellFolder_GetAttributesOf(LPSHELLFOLDER this,UINT32 cid
do do
{ if (*pidltemp) { if (*pidltemp)
{ if (_ILIsDesktop( *pidltemp)) { pdump (*pidltemp);
if (_ILIsDesktop( *pidltemp))
{ *rgfInOut |= ( SFGAO_HASSUBFOLDER | SFGAO_FOLDER | SFGAO_DROPTARGET | SFGAO_HASPROPSHEET | SFGAO_CANLINK ); { *rgfInOut |= ( SFGAO_HASSUBFOLDER | SFGAO_FOLDER | SFGAO_DROPTARGET | SFGAO_HASPROPSHEET | SFGAO_CANLINK );
} }
else if (_ILIsMyComputer( *pidltemp)) else if (_ILIsMyComputer( *pidltemp))
...@@ -542,9 +548,8 @@ static HRESULT WINAPI IShellFolder_GetAttributesOf(LPSHELLFOLDER this,UINT32 cid ...@@ -542,9 +548,8 @@ static HRESULT WINAPI IShellFolder_GetAttributesOf(LPSHELLFOLDER this,UINT32 cid
static HRESULT WINAPI IShellFolder_GetUIObjectOf( LPSHELLFOLDER this,HWND32 hwndOwner,UINT32 cidl, static HRESULT WINAPI IShellFolder_GetUIObjectOf( LPSHELLFOLDER this,HWND32 hwndOwner,UINT32 cidl,
LPCITEMIDLIST * apidl, REFIID riid, UINT32 * prgfInOut,LPVOID * ppvOut) LPCITEMIDLIST * apidl, REFIID riid, UINT32 * prgfInOut,LPVOID * ppvOut)
{ char xclsid[50]; { char xclsid[50];
LPEXTRACTICON pei;
LPCONTEXTMENU pcm;
LPITEMIDLIST pidl; LPITEMIDLIST pidl;
LPUNKNOWN pObj = NULL;
WINE_StringFromCLSID(riid,xclsid); WINE_StringFromCLSID(riid,xclsid);
...@@ -554,50 +559,31 @@ static HRESULT WINAPI IShellFolder_GetUIObjectOf( LPSHELLFOLDER this,HWND32 hwnd ...@@ -554,50 +559,31 @@ static HRESULT WINAPI IShellFolder_GetUIObjectOf( LPSHELLFOLDER this,HWND32 hwnd
*ppvOut = NULL; *ppvOut = NULL;
if(IsEqualIID(riid, &IID_IContextMenu)) if(IsEqualIID(riid, &IID_IContextMenu))
{ pcm = IContextMenu_Constructor(this, apidl, cidl); { if(cidl < 1)
if(pcm) return E_INVALIDARG;
{ *ppvOut = pcm; pObj = (LPUNKNOWN)IContextMenu_Constructor(this, apidl, cidl);
return S_OK; }
} else if (IsEqualIID(riid, &IID_IDataObject))
} { if (cidl < 1)
return(E_INVALIDARG);
if(cidl != 1) pObj = (LPUNKNOWN)IDataObject_Constructor (hwndOwner, this, apidl, cidl);
return E_FAIL; }
else if(IsEqualIID(riid, &IID_IExtractIcon))
if(IsEqualIID(riid, &IID_IExtractIcon)) { if (cidl != 1)
{ pidl = ILCombine(this->mpidl, apidl[0]); return(E_INVALIDARG);
pei = IExtractIcon_Constructor(pidl); pidl = ILCombine(this->mpidl, apidl[0]);
pObj = (LPUNKNOWN)IExtractIcon_Constructor(pidl);
/* The temp PIDL can be deleted because the new CExtractIcon either failed or
made its own copy of it. */
SHFree(pidl); SHFree(pidl);
if(pei)
{ *ppvOut = pei;
return S_OK;
} }
return E_OUTOFMEMORY; else
{ ERR(shell,"(%p)->E_NOINTERFACE\n",this);
return E_NOINTERFACE;
} }
if(!pObj)
return E_OUTOFMEMORY;
/* if(IsEqualIID(riid, IID_IQueryInfo)) *ppvOut = pObj;
{ CQueryInfo *pqit;
LPITEMIDLIST pidl;
pidl = m_pPidlMgr->Concatenate(m_pidl, pPidl[0]);
pqit = new CQueryInfo(pidl);
*/
/* The temp PIDL can be deleted because the new CQueryInfo either failed or
made its own copy of it. */
/* m_pPidlMgr->Delete(pidl);
if(pqit)
{ *ppvReturn = pqit;
return S_OK; return S_OK;
}
return E_OUTOFMEMORY;
}
*/
ERR(shell,"(%p)->E_NOINTERFACE\n",this);
return E_NOINTERFACE;
} }
/************************************************************************** /**************************************************************************
* IShellFolder_GetDisplayNameOf * IShellFolder_GetDisplayNameOf
......
...@@ -167,7 +167,11 @@ typedef struct _SHFILEOPSTRUCTW ...@@ -167,7 +167,11 @@ typedef struct _SHFILEOPSTRUCTW
#define SHFILEOPSTRUCT WINELIB_NAME_AW(SHFILEOPSTRUCT) #define SHFILEOPSTRUCT WINELIB_NAME_AW(SHFILEOPSTRUCT)
#define LPSHFILEOPSTRUCT WINELIB_NAME_AW(LPSHFILEOPSTRUCT) #define LPSHFILEOPSTRUCT WINELIB_NAME_AW(LPSHFILEOPSTRUCT)
DWORD WINAPI SHFileOperation32(LPSHFILEOPSTRUCT32A lpFileOp); DWORD WINAPI SHFileOperation32A (LPSHFILEOPSTRUCT32A lpFileOp);
DWORD WINAPI SHFileOperation32W (LPSHFILEOPSTRUCT32W lpFileOp);
#define SHFileOperation WINELIB_NAME_AW(SHFileOperation)
DWORD WINAPI SHFileOperation32(DWORD x);
/**************************************************************************** /****************************************************************************
* APPBARDATA * APPBARDATA
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment