Home
last modified time | relevance | path

Searched refs:hchild (Results 1 – 8 of 8) sorted by relevance

/reactos/modules/rostests/winetests/user32/
H A Dmsg.c4637 HWND hwnd, hchild; in test_showwindow() local
4685 SetCapture(hchild); in test_showwindow()
4687 DestroyWindow(hchild); in test_showwindow()
5423 SetFocus(hchild); in test_messages()
5582 SetFocus(hchild); in test_messages()
5729 HWND hparent, hchild; in invisible_parent_tests() local
7896 HWND hparent, hchild; in test_paint_messages() local
8554 HWND hchild; in create_grand_child_thread() local
11067 HWND hwnd, hchild; in test_scrollwindowex() local
12797 HWND hwnd, hchild; in test_TrackMouseEvent() local
[all …]
H A Dwin.c6788 HWND hgrandparent, hparent, hchild; in test_GetUpdateRect() local
6798 hchild = CreateWindowA("static", "child", WS_CHILD|WS_VISIBLE, in test_GetUpdateRect()
6805 ShowWindow(hchild, SW_HIDE); in test_GetUpdateRect()
6856 hchild = CreateWindowA(classNameA, "child", WS_CHILD|WS_VISIBLE, in test_GetUpdateRect()
6866 ShowWindow(hchild, SW_HIDE); in test_GetUpdateRect()
/reactos/modules/rosapps/templates/mdi/
H A Dframewnd.c125 void toggle_child(HWND hWnd, UINT cmd, HWND hchild) in toggle_child() argument
127 BOOL vis = IsWindowVisible(hchild); in toggle_child()
131 ShowWindow(hchild, vis?SW_HIDE:SW_SHOW); in toggle_child()
/reactos/modules/rosapps/applications/explorer-old/shell/
H A Dshellbrowser.cpp328 HTREEITEM hchild, hnext; in InsertSubitems() local
332 while((hchild=hnext) != 0) { in InsertSubitems()
333 hnext = TreeView_GetNextSibling(_left_hwnd, hchild); in InsertSubitems()
334 TreeView_DeleteItem(_left_hwnd, hchild); in InsertSubitems()
H A Dmainframe.h78 void toggle_child(HWND hwnd, UINT cmd, HWND hchild, int band_idx=-1);
H A Dmainframe.cpp634 void MainFrameBase::toggle_child(HWND hwnd, UINT cmd, HWND hchild, int band_idx) in toggle_child() argument
636 BOOL vis = IsWindowVisible(hchild); in toggle_child()
643 ShowWindow(hchild, vis? SW_HIDE: SW_SHOW); in toggle_child()
/reactos/modules/rostests/apitests/user32/
H A DCreateWindowEx.c790 HWND hchild; in MSGTestProcMDI2() local
808 hchild = (HWND) SendMessage (g_hwndMDIClient, WM_MDICREATE, 0, in MSGTestProcMDI2()
810 … ok(hchild == g_ChildWindow, "We are testing with %p instead of %p\n", g_ChildWindow, hchild); in MSGTestProcMDI2()
/reactos/base/applications/regedit/
H A Dframewnd.c173 static void toggle_child(HWND hWnd, UINT cmd, HWND hchild) in toggle_child() argument
175 BOOL vis = IsWindowVisible(hchild); in toggle_child()
179 ShowWindow(hchild, vis?SW_HIDE:SW_SHOW); in toggle_child()