mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
7a20b6f2bb
- Another round of fixing badly initialized variables. Again Amine Khaldi being the hero. svn path=/branches/shell32_new-bringup/; revision=53613
728 lines
21 KiB
C++
728 lines
21 KiB
C++
/*
|
|
* Virtual Printers Folder
|
|
*
|
|
* Copyright 1997 Marcus Meissner
|
|
* Copyright 1998, 1999, 2002 Juergen Schmied
|
|
* Copyright 2005 Huw Davies
|
|
* Copyright 2009 Andrew Hill
|
|
*
|
|
* 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 Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL (shell);
|
|
|
|
/***********************************************************************
|
|
* Printers_IExtractIconW implementation
|
|
*/
|
|
class IExtractIconWImpl :
|
|
public CComObjectRootEx<CComMultiThreadModelNoCS>,
|
|
public IExtractIconW,
|
|
public IExtractIconA
|
|
{
|
|
private:
|
|
LPITEMIDLIST pidl;
|
|
public:
|
|
IExtractIconWImpl();
|
|
~IExtractIconWImpl();
|
|
HRESULT WINAPI Initialize(LPCITEMIDLIST pidl);
|
|
|
|
// IExtractIconW
|
|
virtual HRESULT STDMETHODCALLTYPE GetIconLocation(UINT uFlags, LPWSTR szIconFile, UINT cchMax, int *piIndex, UINT *pwFlags);
|
|
virtual HRESULT STDMETHODCALLTYPE Extract(LPCWSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize);
|
|
|
|
// IExtractIconA
|
|
virtual HRESULT STDMETHODCALLTYPE GetIconLocation(UINT uFlags, LPSTR szIconFile, UINT cchMax, int *piIndex, UINT *pwFlags);
|
|
virtual HRESULT STDMETHODCALLTYPE Extract(LPCSTR pszFile, UINT nIconIndex, HICON *phiconLarge, HICON *phiconSmall, UINT nIconSize);
|
|
|
|
BEGIN_COM_MAP(IExtractIconWImpl)
|
|
COM_INTERFACE_ENTRY_IID(IID_IExtractIconW, IExtractIconW)
|
|
COM_INTERFACE_ENTRY_IID(IID_IExtractIconA, IExtractIconA)
|
|
END_COM_MAP()
|
|
};
|
|
|
|
static shvheader PrinterSFHeader[] = {
|
|
{IDS_SHV_COLUMN8, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
|
|
{IDS_SHV_COLUMN_DOCUMENTS , SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
|
|
{IDS_SHV_COLUMN_STATUS, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
|
|
{IDS_SHV_COLUMN_COMMENTS, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
|
|
{IDS_SHV_COLUMN_LOCATION, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15},
|
|
{IDS_SHV_COLUMN_MODEL, SHCOLSTATE_TYPE_STR | SHCOLSTATE_ONBYDEFAULT, LVCFMT_RIGHT, 15}
|
|
};
|
|
|
|
#define COLUMN_NAME 0
|
|
#define COLUMN_DOCUMENTS 1
|
|
#define COLUMN_STATUS 2
|
|
#define COLUMN_COMMENTS 3
|
|
#define COLUMN_LOCATION 4
|
|
#define COLUMN_MODEL 5
|
|
|
|
|
|
#define PrinterSHELLVIEWCOLUMNS (6)
|
|
|
|
IExtractIconWImpl::IExtractIconWImpl()
|
|
{
|
|
pidl = NULL;
|
|
}
|
|
|
|
IExtractIconWImpl::~IExtractIconWImpl()
|
|
{
|
|
TRACE(" destroying IExtractIcon(%p)\n", this);
|
|
SHFree(pidl);
|
|
}
|
|
|
|
HRESULT WINAPI IExtractIconWImpl::Initialize(LPCITEMIDLIST pidl)
|
|
{
|
|
pidl = ILClone(pidl);
|
|
|
|
pdump(pidl);
|
|
return S_OK;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* IExtractIconW_GetIconLocation
|
|
*
|
|
* mapping filetype to icon
|
|
*/
|
|
HRESULT WINAPI IExtractIconWImpl::GetIconLocation(UINT uFlags, /* GIL_ flags */
|
|
LPWSTR szIconFile,
|
|
UINT cchMax,
|
|
int *piIndex,
|
|
UINT *pwFlags) /* returned GIL_ flags */
|
|
{
|
|
TRACE("(%p) (flags=%u %p %u %p %p)\n", this, uFlags, szIconFile, cchMax, piIndex, pwFlags);
|
|
|
|
if (pwFlags)
|
|
*pwFlags = 0;
|
|
|
|
lstrcpynW(szIconFile, swShell32Name, cchMax);
|
|
*piIndex = -IDI_SHELL_PRINTERS_FOLDER; /* FIXME: other icons for default, network, print to file */
|
|
|
|
TRACE("-- %s %x\n", debugstr_w(szIconFile), *piIndex);
|
|
return NOERROR;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* IExtractIconW_Extract
|
|
*/
|
|
HRESULT WINAPI IExtractIconWImpl::Extract(LPCWSTR pszFile,
|
|
UINT nIconIndex, HICON *phiconLarge,
|
|
HICON *phiconSmall, UINT nIconSize)
|
|
{
|
|
int index;
|
|
|
|
FIXME("(%p) (file=%p index=%d %p %p size=%x) semi-stub\n", this, debugstr_w(pszFile),
|
|
(signed)nIconIndex, phiconLarge, phiconSmall, nIconSize);
|
|
|
|
index = SIC_GetIconIndex(pszFile, nIconIndex, 0);
|
|
|
|
if (phiconLarge)
|
|
*phiconLarge = ImageList_GetIcon(ShellBigIconList, index, ILD_TRANSPARENT);
|
|
|
|
if (phiconSmall)
|
|
*phiconSmall = ImageList_GetIcon(ShellSmallIconList, index, ILD_TRANSPARENT);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* IExtractIconA_GetIconLocation
|
|
*/
|
|
HRESULT WINAPI IExtractIconWImpl::GetIconLocation(UINT uFlags,
|
|
LPSTR szIconFile,
|
|
UINT cchMax,
|
|
int * piIndex,
|
|
UINT * pwFlags)
|
|
{
|
|
HRESULT ret;
|
|
LPWSTR lpwstrFile = (LPWSTR)HeapAlloc(GetProcessHeap(), 0, cchMax * sizeof(WCHAR));
|
|
|
|
TRACE("(%p) (flags=%u %p %u %p %p)\n", this, uFlags, szIconFile, cchMax, piIndex, pwFlags);
|
|
|
|
ret = GetIconLocation(uFlags, lpwstrFile, cchMax, piIndex, pwFlags);
|
|
WideCharToMultiByte(CP_ACP, 0, lpwstrFile, -1, szIconFile, cchMax, NULL, NULL);
|
|
HeapFree(GetProcessHeap(), 0, lpwstrFile);
|
|
|
|
TRACE("-- %s %x\n", szIconFile, *piIndex);
|
|
return ret;
|
|
}
|
|
/**************************************************************************
|
|
* IExtractIconA_Extract
|
|
*/
|
|
HRESULT WINAPI IExtractIconWImpl::Extract(LPCSTR pszFile,
|
|
UINT nIconIndex, HICON *phiconLarge,
|
|
HICON *phiconSmall, UINT nIconSize)
|
|
{
|
|
HRESULT ret;
|
|
INT len = MultiByteToWideChar(CP_ACP, 0, pszFile, -1, NULL, 0);
|
|
LPWSTR lpwstrFile = (LPWSTR)HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
|
|
|
TRACE("(%p) (file=%p index=%u %p %p size=%u)\n", this, pszFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
|
|
|
|
MultiByteToWideChar(CP_ACP, 0, pszFile, -1, lpwstrFile, len);
|
|
ret = Extract(lpwstrFile, nIconIndex, phiconLarge, phiconSmall, nIconSize);
|
|
HeapFree(GetProcessHeap(), 0, lpwstrFile);
|
|
return ret;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* IExtractIcon_Constructor
|
|
*/
|
|
static HRESULT WINAPI IEI_Printers_Constructor(LPCITEMIDLIST pidl, REFIID riid, IUnknown **ppv)
|
|
{
|
|
CComObject<IExtractIconWImpl> *theExtractor;
|
|
CComPtr<IUnknown> result;
|
|
HRESULT hResult;
|
|
|
|
if (ppv == NULL)
|
|
return E_POINTER;
|
|
*ppv = NULL;
|
|
ATLTRY (theExtractor = new CComObject<IExtractIconWImpl>);
|
|
if (theExtractor == NULL)
|
|
return E_OUTOFMEMORY;
|
|
hResult = theExtractor->QueryInterface (riid, (void **)&result);
|
|
if (FAILED (hResult))
|
|
{
|
|
delete theExtractor;
|
|
return hResult;
|
|
}
|
|
hResult = theExtractor->Initialize (pidl);
|
|
if (FAILED (hResult))
|
|
return hResult;
|
|
*ppv = result.Detach ();
|
|
return S_OK;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* Printers folder implementation
|
|
*/
|
|
|
|
class CPrintersEnum :
|
|
public IEnumIDListImpl
|
|
{
|
|
private:
|
|
public:
|
|
CPrintersEnum();
|
|
~CPrintersEnum();
|
|
HRESULT WINAPI Initialize(HWND hwndOwner, DWORD dwFlags);
|
|
BOOL CreatePrintersEnumList(DWORD dwFlags);
|
|
|
|
BEGIN_COM_MAP(CPrintersEnum)
|
|
COM_INTERFACE_ENTRY_IID(IID_IEnumIDList, IEnumIDList)
|
|
END_COM_MAP()
|
|
};
|
|
|
|
CPrintersEnum::CPrintersEnum()
|
|
{
|
|
}
|
|
|
|
CPrintersEnum::~CPrintersEnum()
|
|
{
|
|
}
|
|
|
|
HRESULT WINAPI CPrintersEnum::Initialize(HWND hwndOwner, DWORD dwFlags)
|
|
{
|
|
if (CreatePrintersEnumList(dwFlags) == FALSE)
|
|
return E_FAIL;
|
|
return S_OK;
|
|
}
|
|
|
|
static LPITEMIDLIST _ILCreatePrinterItem(PRINTER_INFO_4W *pi)
|
|
{
|
|
PIDLDATA tmp;
|
|
LPITEMIDLIST pidl;
|
|
PIDLPrinterStruct * p;
|
|
int size0 = (char*)&tmp.u.cprinter.szName-(char*)&tmp.u.cprinter;
|
|
int size = size0;
|
|
|
|
tmp.type = 0x00;
|
|
tmp.u.cprinter.dummy = 0xFF;
|
|
if (pi->pPrinterName)
|
|
tmp.u.cprinter.offsServer = wcslen(pi->pPrinterName) + 1;
|
|
else
|
|
tmp.u.cprinter.offsServer = 1;
|
|
|
|
size += tmp.u.cprinter.offsServer * sizeof(WCHAR);
|
|
if (pi->pServerName)
|
|
size += ( + wcslen(pi->pServerName) + 1) * sizeof(WCHAR);
|
|
else
|
|
size += sizeof(WCHAR);
|
|
|
|
pidl = (LPITEMIDLIST)SHAlloc(size + 4);
|
|
if (!pidl)
|
|
return pidl;
|
|
|
|
pidl->mkid.cb = size+2;
|
|
memcpy(pidl->mkid.abID, &tmp, 2+size0);
|
|
|
|
p = &((PIDLDATA*)pidl->mkid.abID)->u.cprinter;
|
|
|
|
p->Attributes = pi->Attributes;
|
|
if (pi->pPrinterName)
|
|
wcscpy(p->szName, pi->pPrinterName);
|
|
else
|
|
p->szName[0] = L'\0';
|
|
|
|
if (pi->pServerName)
|
|
wcscpy(p->szName + p->offsServer, pi->pServerName);
|
|
else
|
|
p->szName[p->offsServer] = L'\0';
|
|
|
|
*(WORD*)((char*)pidl+(size+2)) = 0;
|
|
return pidl;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* CreatePrintersEnumList()
|
|
*/
|
|
BOOL CPrintersEnum::CreatePrintersEnumList(DWORD dwFlags)
|
|
{
|
|
BOOL ret = TRUE;
|
|
|
|
TRACE("(%p)->(flags=0x%08lx) \n", this, dwFlags);
|
|
|
|
/* enumerate the folders */
|
|
if (dwFlags & SHCONTF_NONFOLDERS)
|
|
{
|
|
DWORD needed = 0, num = 0, i;
|
|
PRINTER_INFO_4W *pi;
|
|
|
|
EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 4, NULL, 0, &needed, &num);
|
|
if (!needed)
|
|
return ret;
|
|
|
|
pi = (PRINTER_INFO_4W *)HeapAlloc(GetProcessHeap(), 0, needed);
|
|
if(!EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 4, (LPBYTE)pi, needed, &needed, &num)) {
|
|
HeapFree(GetProcessHeap(), 0, pi);
|
|
return FALSE;
|
|
}
|
|
|
|
for(i = 0; i < num; i++) {
|
|
LPITEMIDLIST pidl = _ILCreatePrinterItem(&pi[i]);
|
|
if (pidl)
|
|
{
|
|
if (!AddToEnumList(pidl))
|
|
SHFree(pidl);
|
|
}
|
|
}
|
|
HeapFree(GetProcessHeap(), 0, pi);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
CPrinterFolder::CPrinterFolder()
|
|
{
|
|
pidlRoot = NULL;
|
|
dwAttributes = 0;
|
|
}
|
|
|
|
CPrinterFolder::~CPrinterFolder()
|
|
{
|
|
TRACE("-- destroying IShellFolder(%p)\n", this);
|
|
if (pidlRoot)
|
|
SHFree(pidlRoot);
|
|
}
|
|
|
|
HRESULT WINAPI CPrinterFolder::FinalConstruct()
|
|
{
|
|
pidlRoot = _ILCreatePrinters(); /* my qualified pidl */
|
|
if (pidlRoot == NULL)
|
|
return E_OUTOFMEMORY;
|
|
return S_OK;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnParseDisplayName
|
|
*
|
|
* This is E_NOTIMPL in Windows too.
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::ParseDisplayName(HWND hwndOwner, LPBC pbc, LPOLESTR lpszDisplayName,
|
|
DWORD * pchEaten, LPITEMIDLIST * ppidl, DWORD * pdwAttributes)
|
|
{
|
|
TRACE("(%p)->(HWND=%p,%p,%p=%s,%p,pidl=%p,%p)\n",
|
|
this, hwndOwner, pbc, lpszDisplayName, debugstr_w(lpszDisplayName),
|
|
pchEaten, ppidl, pdwAttributes);
|
|
|
|
*ppidl = 0;
|
|
if (pchEaten)
|
|
*pchEaten = 0;
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
static PIDLPrinterStruct * _ILGetPrinterStruct(LPCITEMIDLIST pidl)
|
|
{
|
|
LPPIDLDATA pdata = _ILGetDataPointer(pidl);
|
|
|
|
if (pdata && pdata->type==0x00)
|
|
return (PIDLPrinterStruct*)&(pdata->u.cfont);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnEnumObjects
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::EnumObjects(HWND hwndOwner, DWORD dwFlags, LPENUMIDLIST * ppEnumIDList)
|
|
{
|
|
CComObject<CPrintersEnum> *theEnumerator;
|
|
CComPtr<IEnumIDList> result;
|
|
HRESULT hResult;
|
|
|
|
TRACE ("(%p)->(HWND=%p flags=0x%08x pplist=%p)\n", this, hwndOwner, dwFlags, ppEnumIDList);
|
|
|
|
if (ppEnumIDList == NULL)
|
|
return E_POINTER;
|
|
*ppEnumIDList = NULL;
|
|
ATLTRY (theEnumerator = new CComObject<CPrintersEnum>);
|
|
if (theEnumerator == NULL)
|
|
return E_OUTOFMEMORY;
|
|
hResult = theEnumerator->QueryInterface (IID_IEnumIDList, (void **)&result);
|
|
if (FAILED (hResult))
|
|
{
|
|
delete theEnumerator;
|
|
return hResult;
|
|
}
|
|
hResult = theEnumerator->Initialize (hwndOwner, dwFlags);
|
|
if (FAILED (hResult))
|
|
return hResult;
|
|
*ppEnumIDList = result.Detach ();
|
|
|
|
TRACE ("-- (%p)->(new ID List: %p)\n", this, *ppEnumIDList);
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnBindToObject
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::BindToObject(LPCITEMIDLIST pidl, LPBC pbcReserved, REFIID riid, LPVOID * ppvOut)
|
|
{
|
|
TRACE ("(%p)->(pidl=%p,%p,%s,%p)\n", this,
|
|
pidl, pbcReserved, shdebugstr_guid (&riid), ppvOut);
|
|
|
|
return SHELL32_BindToChild (pidlRoot, NULL, pidl, riid, ppvOut);
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnBindToStorage
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::BindToStorage(LPCITEMIDLIST pidl, LPBC pbcReserved, REFIID riid, LPVOID * ppvOut)
|
|
{
|
|
FIXME ("(%p)->(pidl=%p,%p,%s,%p) stub\n",
|
|
this, pidl, pbcReserved, shdebugstr_guid (&riid), ppvOut);
|
|
|
|
*ppvOut = NULL;
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnCompareIDs
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::CompareIDs (LPARAM lParam, LPCITEMIDLIST pidl1, LPCITEMIDLIST pidl2)
|
|
{
|
|
int nReturn;
|
|
|
|
TRACE ("(%p)->(0x%08lx,pidl1=%p,pidl2=%p)\n", this, lParam, pidl1, pidl2);
|
|
nReturn = SHELL32_CompareIDs (this, lParam, pidl1, pidl2);
|
|
TRACE ("-- %i\n", nReturn);
|
|
return nReturn;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnCreateViewObject
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::CreateViewObject(HWND hwndOwner, REFIID riid, LPVOID * ppvOut)
|
|
{
|
|
LPSHELLVIEW pShellView;
|
|
HRESULT hr = E_INVALIDARG;
|
|
|
|
TRACE ("(%p)->(hwnd=%p,%s,%p)\n", this,
|
|
hwndOwner, shdebugstr_guid (&riid), ppvOut);
|
|
|
|
if (!ppvOut)
|
|
return hr;
|
|
|
|
*ppvOut = NULL;
|
|
|
|
if (IsEqualIID (riid, IID_IDropTarget))
|
|
{
|
|
WARN ("IDropTarget not implemented\n");
|
|
hr = E_NOTIMPL;
|
|
}
|
|
else if (IsEqualIID (riid, IID_IContextMenu))
|
|
{
|
|
WARN ("IContextMenu not implemented\n");
|
|
hr = E_NOTIMPL;
|
|
}
|
|
else if (IsEqualIID (riid, IID_IShellView))
|
|
{
|
|
hr = IShellView_Constructor ((IShellFolder *)this, &pShellView);
|
|
if (pShellView)
|
|
{
|
|
hr = pShellView->QueryInterface(riid, ppvOut);
|
|
pShellView->Release();
|
|
}
|
|
}
|
|
TRACE ("-- (%p)->(interface=%p)\n", this, ppvOut);
|
|
return hr;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnGetAttributesOf
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::GetAttributesOf(UINT cidl, LPCITEMIDLIST *apidl, DWORD *rgfInOut)
|
|
{
|
|
static const DWORD dwPrintersAttributes =
|
|
SFGAO_HASPROPSHEET | SFGAO_STORAGEANCESTOR | SFGAO_FILESYSANCESTOR | SFGAO_FOLDER | SFGAO_CANRENAME | SFGAO_CANDELETE;
|
|
HRESULT hr = S_OK;
|
|
|
|
FIXME ("(%p)->(cidl=%d apidl=%p mask=0x%08lx): stub\n",
|
|
this, cidl, apidl, *rgfInOut);
|
|
|
|
*rgfInOut &= dwPrintersAttributes;
|
|
|
|
*rgfInOut &= ~SFGAO_VALIDATE;
|
|
|
|
TRACE ("-- result=0x%08x\n", *rgfInOut);
|
|
return hr;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnGetUIObjectOf
|
|
*
|
|
* PARAMETERS
|
|
* HWND hwndOwner, //[in ] Parent window for any output
|
|
* UINT cidl, //[in ] array size
|
|
* LPCITEMIDLIST* apidl, //[in ] simple pidl array
|
|
* REFIID riid, //[in ] Requested Interface
|
|
* UINT* prgfInOut, //[ ] reserved
|
|
* LPVOID* ppvObject) //[out] Resulting Interface
|
|
*
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::GetUIObjectOf(HWND hwndOwner, UINT cidl, LPCITEMIDLIST *apidl,
|
|
REFIID riid, UINT * prgfInOut, LPVOID * ppvOut)
|
|
{
|
|
IUnknown *pObj = NULL;
|
|
HRESULT hr = E_INVALIDARG;
|
|
|
|
TRACE ("(%p)->(%p,%u,apidl=%p,%s,%p,%p)\n",
|
|
this, hwndOwner, cidl, apidl, shdebugstr_guid (&riid), prgfInOut, ppvOut);
|
|
|
|
if (!ppvOut)
|
|
return hr;
|
|
|
|
*ppvOut = NULL;
|
|
|
|
if ((IsEqualIID (riid, IID_IExtractIconA) || IsEqualIID(riid, IID_IExtractIconW)) && (cidl == 1))
|
|
{
|
|
hr = IEI_Printers_Constructor(apidl[0], riid, &pObj);
|
|
}
|
|
else
|
|
hr = E_NOINTERFACE;
|
|
|
|
if (SUCCEEDED(hr) && !pObj)
|
|
hr = E_OUTOFMEMORY;
|
|
|
|
*ppvOut = pObj;
|
|
TRACE ("(%p)->hr=0x%08lx\n", this, hr);
|
|
return hr;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnGetDisplayNameOf
|
|
*
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::GetDisplayNameOf(LPCITEMIDLIST pidl, DWORD dwFlags, LPSTRRET strRet)
|
|
{
|
|
LPWSTR pszName;
|
|
PIDLPrinterStruct * p;
|
|
|
|
TRACE ("(%p)->(pidl=%p,0x%08lx,%p)\n", this, pidl, dwFlags, strRet);
|
|
pdump (pidl);
|
|
|
|
if (!strRet)
|
|
{
|
|
WARN("no strRet\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
|
|
if (_ILIsPrinter(pidl))
|
|
{
|
|
pszName = (LPWSTR)CoTaskMemAlloc(MAX_PATH * sizeof(WCHAR));
|
|
if (!pszName)
|
|
return E_OUTOFMEMORY;
|
|
|
|
if (LoadStringW(shell32_hInstance, IDS_PRINTERS, pszName, MAX_PATH))
|
|
{
|
|
pszName[MAX_PATH-1] = L'\0';
|
|
strRet->uType = STRRET_WSTR;
|
|
strRet->pOleStr = pszName;
|
|
return S_OK;
|
|
}
|
|
CoTaskMemFree(pszName);
|
|
return E_FAIL;
|
|
}
|
|
|
|
p = _ILGetPrinterStruct(pidl);
|
|
if (!p)
|
|
{
|
|
WARN("no printer struct\n");
|
|
return E_INVALIDARG;
|
|
}
|
|
strRet->pOleStr = (LPWSTR)SHAlloc(p->offsServer * sizeof(WCHAR));
|
|
if (!strRet->pOleStr)
|
|
return E_OUTOFMEMORY;
|
|
|
|
memcpy((LPVOID)strRet->pOleStr, (LPVOID)p->szName, p->offsServer * sizeof(WCHAR));
|
|
TRACE("ret %s\n", debugstr_w(strRet->pOleStr));
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* ISF_Printers_fnSetNameOf
|
|
* Changes the name of a file object or subfolder, possibly changing its item
|
|
* identifier in the process.
|
|
*
|
|
* PARAMETERS
|
|
* HWND hwndOwner, //[in ] Owner window for output
|
|
* LPCITEMIDLIST pidl, //[in ] simple pidl of item to change
|
|
* LPCOLESTR lpszName, //[in ] the items new display name
|
|
* DWORD dwFlags, //[in ] SHGNO formatting flags
|
|
* LPITEMIDLIST* ppidlOut) //[out] simple pidl returned
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::SetNameOf(HWND hwndOwner, LPCITEMIDLIST pidl, /* simple pidl */
|
|
LPCOLESTR lpName, DWORD dwFlags, LPITEMIDLIST * pPidlOut)
|
|
{
|
|
FIXME ("(%p)->(%p,pidl=%p,%s,%lu,%p)\n", this, hwndOwner, pidl,
|
|
debugstr_w (lpName), dwFlags, pPidlOut);
|
|
|
|
return E_FAIL;
|
|
}
|
|
|
|
HRESULT WINAPI CPrinterFolder::GetDefaultSearchGUID(GUID *pguid)
|
|
{
|
|
FIXME ("(%p)\n", this);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
HRESULT WINAPI CPrinterFolder::EnumSearches (IEnumExtraSearch **ppenum)
|
|
{
|
|
FIXME ("(%p)\n", this);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
HRESULT WINAPI CPrinterFolder::GetDefaultColumn (DWORD dwRes, ULONG *pSort, ULONG *pDisplay)
|
|
{
|
|
if (pSort)
|
|
*pSort = 0;
|
|
if (pDisplay)
|
|
*pDisplay = 0;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
HRESULT WINAPI CPrinterFolder::GetDefaultColumnState (UINT iColumn, DWORD *pcsFlags)
|
|
{
|
|
if (!pcsFlags || iColumn >= PrinterSHELLVIEWCOLUMNS)
|
|
return E_INVALIDARG;
|
|
*pcsFlags = PrinterSFHeader[iColumn].pcsFlags;
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
HRESULT WINAPI CPrinterFolder::GetDetailsEx(LPCITEMIDLIST pidl, const SHCOLUMNID *pscid, VARIANT *pv)
|
|
{
|
|
FIXME ("(%p): stub\n", this);
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
HRESULT WINAPI CPrinterFolder::GetDetailsOf(LPCITEMIDLIST pidl, UINT iColumn, SHELLDETAILS *psd)
|
|
{
|
|
WCHAR buffer[MAX_PATH] = {0};
|
|
HRESULT hr = E_FAIL;
|
|
|
|
TRACE("(%p)->(%p %i %p): stub\n", this, pidl, iColumn, psd);
|
|
|
|
if (iColumn >= PrinterSHELLVIEWCOLUMNS)
|
|
return E_FAIL;
|
|
|
|
psd->fmt = PrinterSFHeader[iColumn].fmt;
|
|
psd->cxChar = PrinterSFHeader[iColumn].cxChar;
|
|
if (pidl == NULL)
|
|
{
|
|
psd->str.uType = STRRET_WSTR;
|
|
if (LoadStringW(shell32_hInstance, PrinterSFHeader[iColumn].colnameid, buffer, MAX_PATH))
|
|
hr = SHStrDupW(buffer, &psd->str.pOleStr);
|
|
|
|
return hr;
|
|
}
|
|
|
|
if (iColumn == COLUMN_NAME)
|
|
{
|
|
psd->str.uType = STRRET_WSTR;
|
|
return GetDisplayNameOf(pidl, SHGDN_NORMAL, &psd->str);
|
|
}
|
|
|
|
psd->str.uType = STRRET_CSTR;
|
|
psd->str.cStr[0] = '\0';
|
|
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
HRESULT WINAPI CPrinterFolder::MapColumnToSCID(UINT column, SHCOLUMNID *pscid)
|
|
{
|
|
FIXME ("(%p): stub\n", this);
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
/************************************************************************
|
|
* IPF_Printers_GetClassID
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::GetClassID (CLSID *lpClassId)
|
|
{
|
|
TRACE ("(%p)\n", this);
|
|
|
|
*lpClassId = CLSID_Printers;
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
/************************************************************************
|
|
* IPF_Printers_Initialize
|
|
*
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::Initialize(LPCITEMIDLIST pidl)
|
|
{
|
|
if (pidlRoot)
|
|
SHFree((LPVOID)pidlRoot);
|
|
|
|
pidlRoot = ILClone(pidl);
|
|
return S_OK;
|
|
}
|
|
|
|
/**************************************************************************
|
|
* IPF_Printers_fnGetCurFolder
|
|
*/
|
|
HRESULT WINAPI CPrinterFolder::GetCurFolder(LPITEMIDLIST * pidl)
|
|
{
|
|
TRACE ("(%p)->(%p)\n", this, pidl);
|
|
|
|
*pidl = ILClone (pidlRoot);
|
|
return S_OK;
|
|
}
|