Searched defs:GetHWnd (Results 1 - 3 of 3) sorted by relevance
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | awt_Toolkit.h | 192 INLINE HWND GetHWnd() { return m_toolkitHWnd; } function in class:AwtToolkit 211 return ::SendMessage(GetHWnd(), msg, wParam, lParam); 247 return ::PostMessage(GetHWnd(), msg, wp, lp);
|
H A D | awt_Component.h | 163 INLINE HWND GetHWnd() { return m_hwnd; } function in class:AwtComponent 182 INLINE void SetText(LPCTSTR text) { ::SetWindowText(GetHWnd(), text); } 184 return ::GetWindowText(GetHWnd(), buffer, size); 186 INLINE int GetTextLength() { return ::GetWindowTextLength(GetHWnd()); } 295 DASSERT(GetHWnd()); 296 return ::SendMessage(GetHWnd(), msg, wParam, lParam); 302 DASSERT(GetHWnd()); 303 return ::GetWindowLong(GetHWnd(), GWL_STYLE); 306 DASSERT(GetHWnd()); 309 DWORD ret = ::SetWindowLong(GetHWnd(), GWL_STYL [all...] |
H A D | awt_Component.cpp | 313 ::RemoveProp(GetHWnd(), DrawingStateProp); 337 DASSERT(::GetWindowLongPtr(GetHWnd(), GWLP_USERDATA) == NULL); 338 ::SetWindowLongPtr(GetHWnd(), GWLP_USERDATA, (LONG_PTR)this); 348 if (hWnd == AwtToolkit::GetInstance().GetHWnd()) { 351 if (sm_getComponentCache && sm_getComponentCache->GetHWnd() == hWnd) { 376 DASSERT(!component || component->GetHWnd() == hWnd ); 390 if (self == NULL || self->GetHWnd() != hWnd || 575 SetWindowPos(GetHWnd(), 0, x, y, w, h, SWP_NOZORDER | SWP_NOCOPYBITS | SWP_NOACTIVATE); 612 AwtComponent::GetHWnd(JNIEnv* env, jobject target) { function in class:AwtComponent 659 m_DefWindowProc = ComCtl32Util::GetInstance().SubclassHWND(GetHWnd(), wndpro [all...] |
Completed in 46 milliseconds