Lines Matching refs:HWND
38 inline bool MySetWindowText(HWND wnd, LPCWSTR s) { return BOOLToBool(::SetWindowText(wnd, s)); } in MySetWindowText()
40 bool MySetWindowText(HWND wnd, LPCWSTR s);
57 HWND _window;
59 CWindow(HWND newWindow = NULL): _window(newWindow){}; in _window()
60 CWindow& operator=(HWND newWindow)
65 operator HWND() const { return _window; } in HWND() function
66 void Attach(HWND newWindow) { _window = newWindow; } in Attach()
67 HWND Detach() in Detach()
69 HWND window = _window; in Detach()
76 HWND GetParent() const { return ::GetParent(_window); } in GetParent()
87 HWND parentWindow, HMENU idOrHMenu, in CreateEx()
99 HWND parentWindow, HMENU idOrHMenu, in Create()
112 HWND parentWindow, HMENU idOrHMenu,
117 HWND parentWindow, HMENU idOrHMenu,
135 bool ChangeSubWindowSizeX(HWND hwnd, int xSize) in ChangeSubWindowSizeX()
223 HWND SetFocus() { return ::SetFocus(_window); } in SetFocus()