/reactos/dll/shellext/mydocs/ |
H A D | CMyDocsDropHandler.cpp | 70 CDataObjectHIDA pida(pDataObject); in Drop() local 71 if (FAILED_UNEXPECTEDLY(pida.hr())) in Drop() 75 return pida.hr(); in Drop() 78 UINT iItem, cItems = pida->cidl; in Drop() 88 PCIDLIST_ABSOLUTE pidlParent = HIDA_GetPIDLFolder(pida); in Drop() 92 PCITEMID_CHILD pidlChild = HIDA_GetPIDLItem(pida, iItem); in Drop()
|
/reactos/dll/shellext/sendmail/ |
H A D | CDeskLinkDropHandler.cpp | 70 CDataObjectHIDA pida(pDataObject); in Drop() local 71 if (FAILED_UNEXPECTEDLY(pida.hr())) in Drop() 72 return pida.hr(); in Drop() 74 LPCITEMIDLIST pidlParent = HIDA_GetPIDLFolder(pida); in Drop() 75 for (UINT i = 0; i < pida->cidl; ++i) in Drop() 77 LPCITEMIDLIST pidlChild = HIDA_GetPIDLItem(pida, i); in Drop()
|
/reactos/modules/rosapps/applications/explorer-old/desktop/ |
H A D | desktop.cpp | 509 HRESULT DesktopWindow::OnDefaultCommand(LPIDA pida) in OnDefaultCommand() argument 512 if (MainFrameBase::OpenShellFolders(pida, 0)) in OnDefaultCommand() 629 LPIDA pida = pidList; in DoContextMenu() local 630 if (!pida->cidl) { in DoContextMenu() 635 LPCITEMIDLIST parent_pidl = (LPCITEMIDLIST) ((LPBYTE)pida+pida->aoffset[0]); in DoContextMenu() 637 LPCITEMIDLIST* apidl = (LPCITEMIDLIST*) alloca(pida->cidl*sizeof(LPCITEMIDLIST)); in DoContextMenu() 639 for(int i=pida->cidl; i>0; --i) in DoContextMenu() 640 apidl[i-1] = (LPCITEMIDLIST) ((LPBYTE)pida+pida->aoffset[i]); in DoContextMenu() 642 hr = ShellFolderContextMenu(ShellFolder(parent_pidl), _hwnd, pida->cidl, apidl, x, y, _cm_ifs); in DoContextMenu()
|
H A D | desktop.h | 90 virtual HRESULT OnDefaultCommand(LPIDA pida);
|
/reactos/modules/rostests/apitests/shell32/ |
H A D | SHCreateFileDataObject.cpp | 73 LPIDA pida = (LPIDA)pData; in TestHIDA() local 75 ok_int(pida->cidl, 2); in TestHIDA() 76 if (pida->cidl != 2) in TestHIDA() 80 BOOL bRet = SHGetPathFromIDListW(HIDA_GetPIDLFolder(pida), FolderPath); in TestHIDA() 86 …HeapPtr<ITEMIDLIST_ABSOLUTE> pidl1(ILCombine(HIDA_GetPIDLFolder(pida), HIDA_GetPIDLItem(pida, 0))); in TestHIDA() 87 …HeapPtr<ITEMIDLIST_ABSOLUTE> pidl2(ILCombine(HIDA_GetPIDLFolder(pida), HIDA_GetPIDLItem(pida, 1))); in TestHIDA()
|
H A D | SHCreateDataObject.cpp | 71 LPIDA pida = (LPIDA)pData; in TestHIDA() local 73 ok_int(pida->cidl, 2); in TestHIDA() 74 if (pida->cidl != 2) in TestHIDA() 78 BOOL bRet = SHGetPathFromIDListW(HIDA_GetPIDLFolder(pida), FolderPath); in TestHIDA() 84 …HeapPtr<ITEMIDLIST_ABSOLUTE> pidl1(ILCombine(HIDA_GetPIDLFolder(pida), HIDA_GetPIDLItem(pida, 0))); in TestHIDA() 85 …HeapPtr<ITEMIDLIST_ABSOLUTE> pidl2(ILCombine(HIDA_GetPIDLFolder(pida), HIDA_GetPIDLItem(pida, 1))); in TestHIDA()
|
H A D | CIDLData.cpp | 68 LPIDA pida = (LPIDA)pData; in TestHIDA() local 70 ok_int(pida->cidl, 2); in TestHIDA() 71 if (pida->cidl != 2) in TestHIDA() 75 BOOL bRet = SHGetPathFromIDListW(HIDA_GetPIDLFolder(pida), FolderPath); in TestHIDA() 81 …HeapPtr<ITEMIDLIST_ABSOLUTE> pidl1(ILCombine(HIDA_GetPIDLFolder(pida), HIDA_GetPIDLItem(pida, 0))); in TestHIDA() 82 …HeapPtr<ITEMIDLIST_ABSOLUTE> pidl2(ILCombine(HIDA_GetPIDLFolder(pida), HIDA_GetPIDLItem(pida, 1))); in TestHIDA()
|
/reactos/dll/cpl/main/lang/ |
H A D | es-ES.rc | 17 LTEXT "Rápida", -1, 200, 75, 24, 10 24 LTEXT "Rápida", -1, 200, 165, 30, 10 61 LTEXT "Rápida", -1, 137, 127, 30, 8 107 LTEXT "Rápida", -1, 170, 30, 25, 10
|
H A D | pt-PT.rc | 68 LTEXT "Rápida", -1, 136, 123, 24, 10
|
/reactos/modules/rosapps/applications/explorer-old/shell/ |
H A D | shellbrowser.cpp | 484 HRESULT ShellBrowser::OnDefaultCommand(LPIDA pida) in OnDefaultCommand() argument 488 if (pida->cidl >= 1) { in OnDefaultCommand() 500 UINT firstOffset = pida->aoffset[1]; in OnDefaultCommand() 501 LPITEMIDLIST pidl = (LPITEMIDLIST)((LPBYTE)pida+firstOffset); in OnDefaultCommand() 515 if (MainFrameBase::OpenShellFolders(pida, _hwndFrame)) in OnDefaultCommand()
|
H A D | mainframe.cpp | 77 int MainFrameBase::OpenShellFolders(LPIDA pida, HWND hFrameWnd) in OpenShellFolders() argument 81 LPCITEMIDLIST parent_pidl = (LPCITEMIDLIST) ((LPBYTE)pida+pida->aoffset[0]); in OpenShellFolders() 85 for(int i=pida->cidl; i>0; --i) { in OpenShellFolders() 86 LPCITEMIDLIST pidl = (LPCITEMIDLIST) ((LPBYTE)pida+pida->aoffset[i]); in OpenShellFolders()
|
H A D | mainframe.h | 49 static int OpenShellFolders(LPIDA pida, HWND hFrameWnd);
|
H A D | shellbrowser.h | 130 HRESULT OnDefaultCommand(LPIDA pida);
|
/reactos/sdk/include/reactos/ |
H A D | shellutils.h | 632 static inline PCUIDLIST_ABSOLUTE HIDA_GetPIDLFolder(CIDA const* pida) in HIDA_GetPIDLFolder() argument 634 return (PCUIDLIST_ABSOLUTE)(((LPBYTE)pida) + (pida)->aoffset[0]); in HIDA_GetPIDLFolder() 637 static inline PCUIDLIST_RELATIVE HIDA_GetPIDLItem(CIDA const* pida, SIZE_T i) in HIDA_GetPIDLItem() argument 639 return (PCUIDLIST_RELATIVE)(((LPBYTE)pida) + (pida)->aoffset[i + 1]); in HIDA_GetPIDLItem()
|
/reactos/dll/win32/shell32/ |
H A D | COpenWithMenu.cpp | 1417 CDataObjectHIDA pida(pdtobj); in Initialize() local 1418 if (FAILED(pida.hr())) in Initialize() 1420 ERR("pdtobj->GetData failed with 0x%x\n", pida.hr()); in Initialize() 1421 return pida.hr(); in Initialize() 1424 ASSERT(pida->cidl >= 1); in Initialize() 1426 pidlFolder2 = HIDA_GetPIDLFolder(pida); in Initialize() 1427 pidlChild = HIDA_GetPIDLItem(pida, 0); in Initialize()
|
/reactos/modules/rosapps/applications/explorer-old/utility/ |
H A D | shellbrowserimpl.h | 95 virtual HRESULT OnDefaultCommand(LPIDA pida) {return E_NOTIMPL;} in OnDefaultCommand()
|
/reactos/dll/cpl/access/lang/ |
H A D | pt-BR.rc | 14 …LTEXT "Use as teclas de filtragem para que o ReactOS ignore teclas pressionadas rápida ou repetida… 60 LTEXT "Rápida", -1, 192, 130, 36, 11 210 LTEXT "Rápida", -1, 204, 123, 24, 11
|
H A D | es-ES.rc | 62 LTEXT "Rápida", -1, 192, 130, 36, 11 212 LTEXT "Rápida", -1, 204, 123, 21, 11
|
H A D | pt-PT.rc | 67 LTEXT "Rápida", -1, 192, 130, 36, 11 217 LTEXT "Rápida", -1, 204, 123, 24, 11
|
/reactos/dll/win32/shell32/wine/ |
H A D | pidl.c | 885 LPIDA pida = GlobalLock(medium.u.hGlobal); in SHGetRealIDL() local 887 LPCITEMIDLIST pidl_folder = (LPCITEMIDLIST) ((LPBYTE)pida+pida->aoffset[0]); in SHGetRealIDL() 888 LPCITEMIDLIST pidl_child = (LPCITEMIDLIST) ((LPBYTE)pida+pida->aoffset[1]); in SHGetRealIDL()
|
/reactos/dll/cpl/console/lang/ |
H A D | pt-BR.rc | 26 …AUTOCHECKBOX "Modo de edição &rápida", IDC_CHECK_QUICK_EDIT, 140, 97, 102, 15, WS_CHILD | WS_VISIB…
|
H A D | es-ES.rc | 28 …AUTOCHECKBOX "Modo &Edición rápida", IDC_CHECK_QUICK_EDIT, 150, 100, 60, 15, WS_CHILD | WS_VISIBLE…
|
H A D | pt-PT.rc | 33 …AUTOCHECKBOX "Modo de edição &rápida", IDC_CHECK_QUICK_EDIT, 140, 97, 102, 15, WS_CHILD | WS_VISIB…
|
/reactos/base/shell/explorer/lang/ |
H A D | pt-BR.rc | 81 AUTOCHECKBOX "&Exibir Inicialização Rápida", IDC_TASKBARPROP_SHOWQL, 13, 97, 200, 10
|
H A D | pt-PT.rc | 82 AUTOCHECKBOX "Mostrar Iniciação &Rápida", IDC_TASKBARPROP_SHOWQL, 13, 97, 200, 10
|