Lines Matching refs:HWND
39 inline bool MySetWindowText(HWND wnd, LPCWSTR s) { return BOOLToBool(::SetWindowText(wnd, s)); } in MySetWindowText()
41 bool MySetWindowText(HWND wnd, LPCWSTR s);
58 HWND _window;
60 CWindow(HWND newWindow = NULL): _window(newWindow){}; in _window()
61 CWindow& operator=(HWND newWindow)
66 operator HWND() const { return _window; } in HWND() function
67 void Attach(HWND newWindow) { _window = newWindow; } in Attach()
68 HWND Detach() in Detach()
70 HWND window = _window; in Detach()
77 HWND GetParent() const { return ::GetParent(_window); } in GetParent()
88 HWND parentWindow, HMENU idOrHMenu, in CreateEx()
100 HWND parentWindow, HMENU idOrHMenu, in Create()
113 HWND parentWindow, HMENU idOrHMenu,
118 HWND parentWindow, HMENU idOrHMenu,
136 bool ChangeSubWindowSizeX(HWND hwnd, int xSize) in ChangeSubWindowSizeX()
224 HWND SetFocus() { return ::SetFocus(_window); } in SetFocus()