Home
last modified time | relevance | path

Searched refs:hParent (Results 1 – 25 of 96) sorted by relevance

1234

/reactos/sdk/lib/scrnsave/
H A Dscrnsave.c166 static int LaunchConfig(HWND hParent) in LaunchConfig() argument
177 static int LaunchScreenSaver(HWND hParent) in LaunchScreenSaver() argument
191 if (hParent) in LaunchScreenSaver()
199 GetClientRect(hParent, &rc); in LaunchScreenSaver()
228 if (!hParent) in LaunchScreenSaver()
267 HWND hParent; in _tWinMain() local
270 hParent = (HWND)_toulptr(p); in _tWinMain()
273 if (hParent && IsWindow(hParent)) in _tWinMain()
282 HWND hParent; in _tWinMain() local
290 if (hParent && IsWindow(hParent)) in _tWinMain()
[all …]
/reactos/modules/rosapps/lib/vfdlib/
H A Dvfdshext.h36 DWORD DoVfdOpen(HWND hParent);
37 DWORD DoVfdNew(HWND hParent);
38 DWORD DoVfdClose(HWND hParent);
39 DWORD DoVfdSave(HWND hParent);
40 DWORD DoVfdProtect(HWND hParent);
41 DWORD DoVfdDrop(HWND hParent);
H A Dvfdshmenu.cpp465 HWND hParent) in DoVfdOpen() argument
467 DWORD ret = VfdGuiOpen(hParent, m_nDevice); in DoVfdOpen()
470 MessageBox(hParent, SystemMessage(ret), in DoVfdOpen()
481 HWND hParent) in DoVfdSave() argument
483 return VfdGuiSave(hParent, m_nDevice); in DoVfdSave()
490 HWND hParent) in DoVfdClose() argument
492 return VfdGuiClose(hParent, m_nDevice); in DoVfdClose()
499 HWND hParent) in DoVfdProtect() argument
504 UNREFERENCED_PARAMETER(hParent); in DoVfdProtect()
535 HWND hParent) in DoVfdDrop() argument
[all …]
H A Dvfdguitip.c148 HWND hParent, in VfdToolTip() argument
192 dc = GetDC(hParent); in VfdToolTip()
207 ReleaseDC(hParent, dc); in VfdToolTip()
263 hParent, in VfdToolTip()
272 SetFocus(hParent); in VfdToolTip()
280 HWND hParent, in VfdImageTip() argument
301 VfdToolTip(hParent, in VfdImageTip()
318 VfdToolTip(hParent, SystemMessage(ret), -1, -1, FALSE); in VfdImageTip()
360 VfdToolTip(hParent, info_str, -1, -1, FALSE); in VfdImageTip()
H A Dvfdguiut.c115 HWND hParent, // parent window in VfdGuiClose() argument
158 reply = MessageBox(hParent, msg ? msg : "save?", in VfdGuiClose()
165 if (GuiSaveParam(hParent, &param) == ERROR_SUCCESS) { in VfdGuiClose()
211 hParent, msg ? msg : "retry", VFD_MSGBOX_TITLE, in VfdGuiClose()
226 hParent, msg ? msg : "retry", VFD_MSGBOX_TITLE, in VfdGuiClose()
263 HWND hParent, // parent window in VfdGuiFormat() argument
272 ret = MessageBox(hParent, in VfdGuiFormat()
282 MessageBox(hParent, in VfdGuiFormat()
311 hParent, msg ? msg : "retry", VFD_MSGBOX_TITLE, in VfdGuiFormat()
339 MessageBox(hParent, in VfdGuiFormat()
/reactos/base/applications/charmap_new/
H A DCell.cpp20 _In_ HWND hParent in CCell() argument
22 CCell(hParent, RECT{0}) in CCell()
27 _In_ HWND hParent, in CCell() argument
30 m_hParent(hParent), in CCell()
H A DCell.h14 _In_ HWND hParent
18 _In_ HWND hParent,
H A DGridView.h42 _In_ HWND hParent
61 _In_ HWND hParent
/reactos/modules/rosapps/include/vfd/
H A Dvfdapi.h283 HWND hParent, // parent window
289 HWND hParent, // parent window
295 HWND hParent, // parent window
301 HWND hParent, // parent window
307 HWND hParent, // parent window
317 HWND hParent,
/reactos/base/applications/msconfig_new/comctl32ex/
H A Dtreeview.c97 HTREEITEM hParent, in InsertItem() argument
103 tvis.hParent = hParent; in InsertItem()
154 HTREEITEM Tree_Item_Copy(HWND hTree, HTREEITEM hSourceItem, HTREEITEM hParent, HTREEITEM hInsertAft… in Tree_Item_Copy() argument
175 tvis.hParent = hParent; in Tree_Item_Copy()
/reactos/dll/win32/shdocvw/
H A DCExplorerBand.cpp87 void CExplorerBand::_SortItems(HTREEITEM hParent) in _SortItems() argument
90 sortCallback.hParent = hParent; in _SortItems()
235 HTREEITEM hParent = NULL, tmp; in _NavigateToPIDL() local
281 hParent = hItem; in _NavigateToPIDL()
308 *phItem = hItem = _InsertItem(hParent, dest, ILFindLastID(dest), TRUE); in _NavigateToPIDL()
/reactos/dll/cpl/inetcpl/
H A Dinetcpl.c237 BOOL WINAPI LaunchConnectionDialog(HWND hParent) in LaunchConnectionDialog() argument
239 FIXME("(%p): stub\n", hParent); in LaunchConnectionDialog()
247 BOOL WINAPI LaunchPrivacyDialog(HWND hParent) in LaunchPrivacyDialog() argument
249 FIXME("(%p): stub\n", hParent); in LaunchPrivacyDialog()
/reactos/dll/opengl/glu32/src/libtess/
H A Dpriorityq-heap.c130 PQhandle hCurr, hParent; in FloatUp() local
136 hParent = n[parent].handle; in FloatUp()
137 if( parent == 0 || LEQ( h[hParent].key, h[hCurr].key )) { in FloatUp()
142 n[curr].handle = hParent; in FloatUp()
143 h[hParent].node = curr; in FloatUp()
/reactos/modules/rostests/winetests/comctl32/
H A Dheader.c523 ShowWindow (hParent, SW_SHOW); in create_custom_header_control()
525 GetClientRect(hParent,&rectwin); in create_custom_header_control()
820 static void test_hdm_getitemrect(HWND hParent) in test_hdm_getitemrect() argument
857 static void test_hdm_layout(HWND hParent) in test_hdm_layout() argument
881 static void test_hdm_ordertoindex(HWND hParent) in test_hdm_ordertoindex() argument
899 static void test_hdm_hittest(HWND hParent) in test_hdm_hittest() argument
946 static void test_hdm_sethotdivider(HWND hParent) in test_hdm_sethotdivider() argument
977 static void test_hdm_imageMessages(HWND hParent) in test_hdm_imageMessages() argument
1009 static void test_hdm_filterMessages(HWND hParent) in test_hdm_filterMessages() argument
1225 static void test_hdf_fixedwidth(HWND hParent) in test_hdf_fixedwidth() argument
[all …]
/reactos/base/applications/mscutils/servman/
H A Ddependencies_tv1.c83 HTREEITEM hParent, in TV1_AddDependantsToTree() argument
130 hParent, in TV1_AddDependantsToTree()
153 if (!hParent) in TV1_AddDependantsToTree()
H A Ddependencies_tv2.c122 HTREEITEM hParent, in TV2_AddDependantsToTree() argument
142 hParent, in TV2_AddDependantsToTree()
156 if (!hParent) in TV2_AddDependantsToTree()
H A Dprecomp.h112 BOOL RunActionWithProgress(HWND hParent, LPWSTR ServiceName, LPWSTR DisplayName, UINT Action, PVOID…
153 CreateStopDependsDialog(HWND hParent,
160 VOID TV1_AddDependantsToTree(PDEPENDDATA pDependData, HTREEITEM hParent, LPWSTR lpServiceName);
164 VOID TV2_AddDependantsToTree(PDEPENDDATA pDependData, HTREEITEM hParent, LPWSTR lpServiceName);
H A Dpropsheet_depends.c14 HTREEITEM hParent, in AddItemToTreeView() argument
69 tvins.hParent = hParent; in AddItemToTreeView()
/reactos/base/applications/charmap/
H A Dmap.c142 MapWindowPoints(infoPtr->hMapWnd, infoPtr->hParent, (LPPOINT)&rLarge, 2); in CreateLargeCell()
154 infoPtr->hParent, in CreateLargeCell()
171 MapWindowPoints(infoPtr->hMapWnd, infoPtr->hParent, (LPPOINT)&rLarge, 2); in MoveLargeCell()
298 if (infoPtr->hParent != NULL) in NotifyParentOfSelection()
306 Ret = PostMessage(infoPtr->hParent, in NotifyParentOfSelection()
416 HWND hParent) in MapOnCreate() argument
427 infoPtr->hParent = hParent; in MapOnCreate()
439 SetScrollPos(infoPtr->hParent, SB_VERT, 0, TRUE); in MapOnCreate()
/reactos/base/applications/fontview/
H A Dfontview.c62 _In_ HWND hParent, in FormatMsgBox() argument
76 MessageBoxW(hParent, hMemText, hMemCaption, uType); in FormatMsgBox()
83 HWND hParent, in ErrorMsgBox() argument
90 FormatMsgBox(hParent, dwMessageId, IDS_ERROR, MB_ICONERROR, args); in ErrorMsgBox()
96 HWND hParent, in SuccessMsgBox() argument
103 FormatMsgBox(hParent, dwMessageId, IDS_SUCCESS, MB_ICONINFORMATION, args); in SuccessMsgBox()
/reactos/dll/win32/shell32/
H A Dbrfolder.cpp59 _In_ HTREEITEM hParent);
344 _In_ HTREEITEM hParent) in BrFolder_InsertItem() argument
377 TVINSERTSTRUCTW tvins = { hParent }; in BrFolder_InsertItem()
400 _In_ HTREEITEM hParent) in BrFolder_Expand() argument
402 TRACE("%p %p %p\n", lpsf, pidlFull, hParent); in BrFolder_Expand()
405 BrItemData *pItemData = BrFolder_GetItemData(info, hParent); in BrFolder_Expand()
818 HTREEITEM hParent = TreeView_GetSelection(info->hwndTreeView); in BrFolder_NewFolder() local
819 if (!hParent) in BrFolder_NewFolder()
822 TreeView_Expand(info->hwndTreeView, hParent, TVE_EXPAND); in BrFolder_NewFolder()
825 item.hItem = hParent; in BrFolder_NewFolder()
[all …]
/reactos/dll/win32/mciavi32/
H A Dwnd.c115 HWND hParent = 0; in MCIAVI_CreateWindow() local
122 if (dwFlags & MCI_DGV_OPEN_PARENT) hParent = lpParms->hWndParent; in MCIAVI_CreateWindow()
141 hParent, 0, MCIAVI_hInstance, in MCIAVI_CreateWindow()
146 dwFlags, lpParms, dwStyle, hParent, rc.right - rc.left, rc.bottom - rc.top, wma->hWnd); in MCIAVI_CreateWindow()
/reactos/base/applications/msconfig/
H A Dsystempage.c58 insert.hParent = NULL; in LoadSystemIni()
64 insert.hParent = parent; in LoadSystemIni()
/reactos/base/applications/msconfig_new/
H A Dsystempage.c58 insert.hParent = NULL; in LoadSystemIni()
64 insert.hParent = parent; in LoadSystemIni()
/reactos/dll/cpl/hotplug/
H A Denum.c77 _In_ HTREEITEM hParent, in InsertDeviceTreeItem() argument
92 tvItem.hParent = hParent; in InsertDeviceTreeItem()

1234