Home
last modified time | relevance | path

Searched refs:hWnd (Results 1 – 25 of 84) sorted by path

1234

/trunk/main/accessibility/bridge/source/java/
H A DWindowsAccessBridgeAdapter.cxx210 return pEnvData->hWnd; in GetHWND()
/trunk/main/avmedia/source/win/
H A Dplayer.cxx51 LRESULT CALLBACK MediaPlayerWndProc_2( HWND hWnd,UINT nMsg, WPARAM nPar1, LPARAM nPar2 ) in MediaPlayerWndProc_2() argument
53 Player* pPlayer = (Player*) ::GetWindowLong( hWnd, 0 ); in MediaPlayerWndProc_2()
71 return( bProcessed ? 0 : DefWindowProc( hWnd, nMsg, nPar1, nPar2 ) ); in MediaPlayerWndProc_2()
H A Dwindow.cxx76 LRESULT CALLBACK MediaPlayerWndProc( HWND hWnd,UINT nMsg, WPARAM nPar1, LPARAM nPar2 ) in MediaPlayerWndProc() argument
78 Window* pWindow = (Window*) ::GetWindowLong( hWnd, 0 ); in MediaPlayerWndProc()
104 if( !::GetCursorPos( &aWinPoint ) || !::ScreenToClient( hWnd, &aWinPoint ) ) in MediaPlayerWndProc()
171 return( bProcessed ? 0 : DefWindowProc( hWnd, nMsg, nPar1, nPar2 ) ); in MediaPlayerWndProc()
/trunk/main/bean/native/win32/
H A Dcom_sun_star_comp_beans_LocalOfficeWindow.c105 HWND hWnd; in Java_com_sun_star_comp_beans_LocalOfficeWindow_getNativeWindow() local
132 hWnd = dsi_win->hwnd; in Java_com_sun_star_comp_beans_LocalOfficeWindow_getNativeWindow()
147 if (GetProp( hWnd, OLD_PROC_KEY )==0) in Java_com_sun_star_comp_beans_LocalOfficeWindow_getNativeWindow()
149 hFuncPtr = SetWindowLongPtr( hWnd, GWLP_WNDPROC, (ULONG_PTR)OpenOfficeWndProc ); in Java_com_sun_star_comp_beans_LocalOfficeWindow_getNativeWindow()
150 SetProp( hWnd, OLD_PROC_KEY, (HANDLE)hFuncPtr ); in Java_com_sun_star_comp_beans_LocalOfficeWindow_getNativeWindow()
153 return ((jlong)hWnd); in Java_com_sun_star_comp_beans_LocalOfficeWindow_getNativeWindow()
158 HWND hWnd, in OpenOfficeWndProc() argument
170 GetClientRect(hWnd, &rect); in OpenOfficeWndProc()
185 HWND hChild = GetWindow(hWnd, GW_CHILD); in OpenOfficeWndProc()
198 return CallWindowProc(GetProp(hWnd, OLD_PROC_KEY), in OpenOfficeWndProc()
[all …]
/trunk/main/canvas/source/cairo/
H A Dcairo_os2_cairo.cxx266 if (pSysData && pSysData->hWnd) in createSurface()
268 pSysData->hWnd, x, y, w, h)); in createSurface()
H A Dcairo_os2_cairo.hxx41 Os2Surface( HWND hWnd, int x, int y, int w, int h);
H A Dcairo_win32_cairo.cxx244 if (pSysData && pSysData->hWnd) in createSurface()
245 surf = SurfaceSharedPtr(new Win32Surface(GetDC((HWND) pSysData->hWnd), x, y)); in createSurface()
/trunk/main/canvas/source/directx/
H A Ddx_5rm.cxx1123 const HWND hwnd(reinterpret_cast<HWND>(pData->hWnd)); in create()
H A Ddx_9rm.cxx702 const HWND hwnd(reinterpret_cast<HWND>(pData->hWnd)); in create()
H A Ddx_spritedevicehelper.cxx78 const HWND hWnd = reinterpret_cast<HWND>(pData->hWnd); in init() local
79 if( !IsWindow( hWnd ) ) in init()
/trunk/main/dbaccess/source/ui/dlg/
H A DConnectionHelper.cxx367 HWND hWnd = GetParent()->GetSystemData()->hWnd; variable
368 sNewDataSource = getAdoDatalink((long)hWnd,sOldDataSource);
H A Dadodatalinks.cxx47 BSTR PromptEdit(long hWnd,BSTR connstr);
48 BSTR PromptNew(long hWnd);
50 ::rtl::OUString getAdoDatalink(long hWnd,::rtl::OUString& oldLink) in getAdoDatalink() argument
55 dataLink=reinterpret_cast<sal_Unicode *>(PromptEdit(hWnd,(BSTR)oldLink.getStr())); in getAdoDatalink()
58 dataLink=reinterpret_cast<sal_Unicode *>(PromptNew(hWnd)); in getAdoDatalink()
61 BSTR PromptNew(long hWnd) in PromptNew() argument
87 dlPrompt->put_hWnd(hWnd); in PromptNew()
118 BSTR PromptEdit(long hWnd,BSTR connstr) in PromptEdit() argument
162 dlPrompt->put_hWnd(hWnd); in PromptEdit()
H A Dadodatalinks.hxx34 ::rtl::OUString getAdoDatalink(long hWnd,::rtl::OUString& oldLink);
/trunk/main/desktop/win32/source/QuickStart/
H A DQuickStart.cpp104 void NotifyListener( HWND hWnd ) in NotifyListener() argument
123 nid.hWnd = hWnd; in NotifyListener()
252 HWND hWnd; in InitInstance() local
259 if (!hWnd) in InitInstance()
265 ShowWindow(hWnd, nCmdShow); in InitInstance()
266 UpdateWindow(hWnd); in InitInstance()
348 nid.hWnd = hWnd; in WndProc()
355 NotifyListener( hWnd ); in WndProc()
392 DestroyWindow(hWnd); in WndProc()
404 NotifyListener( hWnd ); in WndProc()
[all …]
/trunk/main/dtrans/source/inc/
H A DMtaOleClipb.hxx93 static LRESULT CALLBACK mtaOleReqWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
127 friend LRESULT CALLBACK mtaOleReqWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
/trunk/main/dtrans/source/os2/clipb/
H A DOs2Clipboard.cxx53 inline void SetWindowPtr( HWND hWnd, Os2Clipboard* pThis ) in SetWindowPtr() argument
55 WinSetWindowULong( hWnd, QWL_USER, (ULONG)pThis ); in SetWindowPtr()
58 inline Os2Clipboard* GetWindowPtr( HWND hWnd ) in GetWindowPtr() argument
60 return (Os2Clipboard*)WinQueryWindowULong( hWnd, QWL_USER ); in GetWindowPtr()
65 MRESULT EXPENTRY DtransObjWndProc( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 ) in DtransObjWndProc() argument
72 Os2Clipboard* os2Clipboard = GetWindowPtr( hWnd); in DtransObjWndProc()
92 return WinDefWindowProc( hWnd, nMsg, nMP1, nMP2 ); in DtransObjWndProc()
/trunk/main/dtrans/source/os2/dnd/
H A Dglobals.cxx99 void SetWindowDropTargetPtr( HWND hWnd, void* dropTarget ) in SetWindowDropTargetPtr() argument
101 WinSetWindowULong( hWnd, SAL_FRAME_DROPTARGET, (ULONG)dropTarget); in SetWindowDropTargetPtr()
105 void* GetWindowDropTargetPtr( HWND hWnd ) in GetWindowDropTargetPtr() argument
107 return (void*)WinQueryWindowULong( hWnd, SAL_FRAME_DROPTARGET); in GetWindowDropTargetPtr()
111 void SetWindowDragSourcePtr( HWND hWnd, void* dragSource ) in SetWindowDragSourcePtr() argument
113 WinSetWindowULong( hWnd, SAL_FRAME_DRAGSOURCE, (ULONG)dragSource); in SetWindowDragSourcePtr()
117 void* GetWindowDragSourcePtr( HWND hWnd ) in GetWindowDragSourcePtr() argument
119 return (void*)WinQueryWindowULong( hWnd, SAL_FRAME_DRAGSOURCE); in GetWindowDragSourcePtr()
H A Dglobals.hxx56 void SetWindowDropTargetPtr( HWND hWnd, void* dt);
57 void* GetWindowDropTargetPtr( HWND hWnd);
58 void SetWindowDragSourcePtr( HWND hWnd, void* ds);
59 void* GetWindowDragSourcePtr( HWND hWnd);
/trunk/main/dtrans/source/win32/mtaole/
H A DMtaOleClipb.cxx662 LRESULT CALLBACK CMtaOleClipboard::mtaOleReqWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lP… in mtaOleReqWndProc() argument
738 lResult = DefWindowProcA( hWnd, uMsg, wParam, lParam ); in mtaOleReqWndProc()
/trunk/main/dtrans/test/win32/dnd/
H A DdndTest.cxx170 any <<= (sal_uInt32) pData->hWnd; in MTAFunc()
/trunk/main/embeddedobj/test/Container1/nativelib/
H A Dnativeview.c142 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
154 GetClientRect(hWnd, &rect);
170 HWND hChild = GetWindow(hWnd, GW_CHILD);
177 hFuncPtr = GetProp(hWnd, OLD_PROC_KEY);
179 return CallWindowProc( hFuncPtr, hWnd, uMsg, wParam, lParam);
/trunk/main/embedserv/source/embed/
H A Ddocholder.cxx1388 HWND hWnd; in getContainerWindow() local
1389 m_pIOleIPFrame->GetWindow(&hWnd); in getContainerWindow()
1395 aAny <<= sal_Int32(hWnd); in getContainerWindow()
H A Ded_iinplace.cxx28 STDMETHODIMP EmbedDocument_Impl::GetWindow(HWND *hWnd) in GetWindow() argument
32 *hWnd = m_pDocHolder->GetTopMostWinHandle(); in GetWindow()
33 if(*hWnd != NULL) in GetWindow()
H A Dsyswinwrapper.cxx398 HWND hWnd, UINT iMsg in HatchWndProc() argument
405 phw=(PCHatchWin)GetWindowLong(hWnd, HWWL_STRUCTURE); in HatchWndProc()
412 SetWindowLong(hWnd, HWWL_STRUCTURE, (LONG)phw); in HatchWndProc()
415 hDC=BeginPaint(hWnd,&ps); in HatchWndProc()
418 EndPaint(hWnd,&ps); in HatchWndProc()
422 ScreenToClient(hWnd,&ptMouse); in HatchWndProc()
425 if(phw->m_aTracker.Track(hWnd,ptMouse,FALSE,GetParent(hWnd))) in HatchWndProc()
428 TransformRect(&aRect,hWnd,GetParent(hWnd)); in HatchWndProc()
435 ScreenToClient(hWnd,&ptMouse); in HatchWndProc()
436 phw->m_aTracker.SetCursor(hWnd,HTCLIENT); in HatchWndProc()
[all …]
H A Dtracker.cxx336 BOOL Tracker::Track(HWND hWnd,POINT point,BOOL bAllowInvert, in Track() argument
349 SetCursor(hWnd,nHandle); in Track()
350 return TrackHandle(nHandle, hWnd, point, hWndClipTo); in Track()
365 SetCapture(hWnd); in TrackHandle()
366 UpdateWindow(hWnd); in TrackHandle()
388 hDrawDC = GetDC(hWnd); in TrackHandle()
400 if (GetCapture() != hWnd) in TrackHandle()
431 DrawTrackerRect(&rectOld,hWndClipTo,hDrawDC,hWnd); in TrackHandle()
443 DrawTrackerRect(&m_rect,hWndClipTo,hDrawDC,hWnd); in TrackHandle()
455 DrawTrackerRect(&m_rect, hWndClipTo, hDrawDC, hWnd); in TrackHandle()
[all …]

Completed in 67 milliseconds

1234