Home
last modified time | relevance | path

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

1234

/trunk/main/vcl/win/source/window/
H A Dsalframe.cxx164 static void UpdateFrameGeometry( HWND hWnd, WinSalFrame* pFrame );
165 static void SetMaximizedFrameGeometry( HWND hWnd, WinSalFrame* pFrame, RECT* pParentRect = NULL );
236 void ImplSalGetWorkArea( HWND hWnd, RECT *pRect, const RECT *pParentRect ) in ImplSalGetWorkArea() argument
243 WinSalFrame* pFrame = GetWindowPtr( hWnd ); in ImplSalGetWorkArea()
359 HWND hWnd; in ImplSalCreateFrame() local
501 HWND hWnd = GetForegroundWindow(); in ImplSalCreateFrame() local
502 if ( hWnd && IsMaximized( hWnd ) && in ImplSalCreateFrame()
503 (GetWindowInstance( hWnd ) == pInst->mhInst) && in ImplSalCreateFrame()
504 …((GetWindowStyle( hWnd ) & (WS_POPUP | WS_MAXIMIZEBOX | WS_THICKFRAME)) == (WS_MAXIMIZEBOX | WS_TH… in ImplSalCreateFrame()
528 hWnd = CreateWindowExW( nExSysStyle, pClassName, L"", nSysStyle, in ImplSalCreateFrame()
[all …]
H A Dsalobj.cxx80 WinSalFrame* ImplFindSalObjectFrame( HWND hWnd ) in ImplFindSalObjectFrame() argument
83 WinSalObject* pObject = ImplFindSalObject( hWnd ); in ImplFindSalObjectFrame()
87 HWND hWnd = ::GetParent( pObject->mhWnd ); in ImplFindSalObjectFrame() local
91 if ( pFrame->mhWnd == hWnd ) in ImplFindSalObjectFrame()
128 if ( pSalObj && pSalObj->mbInterceptChildWindowKeyDown && pSalObj->maSysData.hWnd ) in ImplInterceptChildWindowKeyDown()
130 …bResult = ( 1 == ImplSendMessage( pSalObj->maSysData.hWnd, rMsg.message, rMsg.wParam, rMsg.lParam … in ImplInterceptChildWindowKeyDown()
315 LRESULT CALLBACK SalSysObjWndProc( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam, int& rDef ) in SalSysObjWndProc() argument
329 BeginPaint( hWnd, &aPs ); in SalSysObjWndProc()
330 EndPaint( hWnd, &aPs ); in SalSysObjWndProc()
343 pSysObj = GetSalObjWindowPtr( hWnd ); in SalSysObjWndProc()
[all …]
/trunk/main/vcl/inc/win/
H A Dwincomp.hxx107 inline void SetWindowStyle( HWND hWnd, DWORD nStyle ) in SetWindowStyle() argument
109 SetWindowLong( hWnd, GWL_STYLE, nStyle ); in SetWindowStyle()
112 inline DWORD GetWindowStyle( HWND hWnd ) in GetWindowStyle() argument
114 return GetWindowLong( hWnd, GWL_STYLE ); in GetWindowStyle()
117 inline void SetWindowExStyle( HWND hWnd, DWORD nStyle ) in SetWindowExStyle() argument
119 SetWindowLong( hWnd, GWL_EXSTYLE, nStyle ); in SetWindowExStyle()
122 inline DWORD GetWindowExStyle( HWND hWnd ) in GetWindowExStyle() argument
124 return GetWindowLong( hWnd, GWL_EXSTYLE ); in GetWindowExStyle()
127 inline BOOL IsMinimized( HWND hWnd ) in IsMinimized() argument
129 return IsIconic( hWnd ); in IsMinimized()
[all …]
H A Dsaldata.hxx221 LRESULT CALLBACK SalFrameWndProcA( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
222 LRESULT CALLBACK SalFrameWndProcW( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
225 void CALLBACK SalTimerProc( HWND hWnd, UINT nMsg, UINT_PTR nId, DWORD nTime );
232 long ImplHandleSalObjKeyMsg( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
233 long ImplHandleSalObjSysCharMsg( HWND hWnd, WPARAM wParam, LPARAM lParam );
234 sal_Bool ImplHandleGlobalMsg( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam, LRESULT& rlResult…
347 LONG ImplSetWindowLong( HWND hWnd, int nIndex, DWORD dwNewLong );
348 LONG ImplGetWindowLong( HWND hWnd, int nIndex );
349 BOOL ImplPostMessage( HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam );
350 BOOL ImplSendMessage( HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam );
[all …]
/trunk/main/vcl/os2/source/window/
H A Dsalobj.cxx96 MRESULT EXPENTRY SalSysObjWndProc( HWND hWnd, ULONG nMsg, in SalSysObjWndProc() argument
104 debug_printf( "SalSysObjWndProc hWnd 0x%x nMsg %d\n", hWnd, nMsg); in SalSysObjWndProc()
117 hPS = WinBeginPaint( hWnd, NULLHANDLE, &aRect ); in SalSysObjWndProc()
130 pSysObj = GetSalObjWindowPtr( hWnd ); in SalSysObjWndProc()
136 WinPostMsg( hWnd, SALOBJ_MSG_TOTOP, 0, 0 ); in SalSysObjWndProc()
143 pSysObj = GetSalObjWindowPtr( hWnd ); in SalSysObjWndProc()
153 if ( !hWndFocus || !ImplIsSysWindowOrChild( hWnd, hWndFocus ) ) in SalSysObjWndProc()
162 WinPostMsg( hWnd, SALOBJ_MSG_POSTFOCUS, nMP1, nMP2 ); in SalSysObjWndProc()
167 pSysObj = GetSalObjWindowPtr( hWnd ); in SalSysObjWndProc()
182 SetSalObjWindowPtr( hWnd, pSysObj ); in SalSysObjWndProc()
[all …]
H A Dsalframe.cxx75 static void SetMaximizedFrameGeometry( HWND hWnd, Os2SalFrame* pFrame );
76 static void UpdateFrameGeometry( HWND hWnd, Os2SalFrame* pFrame );
77 static void ImplSalCalcFrameSize( HWND hWnd,
81 MRESULT EXPENTRY SalFrameSubClassWndProc( HWND hWnd, ULONG nMsg,
438 static void ImplSalCalcFrameSize( HWND hWnd, in ImplSalCalcFrameSize() argument
441 Os2SalFrame* pFrame = GetWindowPtr( hWnd ); in ImplSalCalcFrameSize()
868 static HDC ImplWinGetDC( HWND hWnd ) in ImplWinGetDC() argument
870 HDC hDC = WinQueryWindowDC( hWnd ); in ImplWinGetDC()
872 hDC = WinOpenWindowDC( hWnd ); in ImplWinGetDC()
961 static void ImplSalShow( HWND hWnd, ULONG bVisible, ULONG bNoActivate ) in ImplSalShow() argument
[all …]
/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
256 hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW, in InitInstance()
259 if (!hWnd) in InitInstance()
265 ShowWindow(hWnd, nCmdShow); in InitInstance()
266 UpdateWindow(hWnd); in InitInstance()
281 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
348 nid.hWnd = hWnd; in WndProc()
355 NotifyListener( hWnd ); in WndProc()
[all …]
/trunk/main/sal/workben/clipboardwben/testviewer/
H A Dcbvtest.cxx67 void ShowAvailableClipboardFormats( HWND hWnd, HDC hdc, PAINTSTRUCT ps, RECT rcWnd );
68 void ClearClipboardContent( HWND hWnd );
197 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
211 ClearClipboardContent( hWnd ); in WndProc()
221 SwitchMenuState( hWnd ); in WndProc()
222 RegisterClipboardViewer( IsClipboardViewer( hWnd ) ); in WndProc()
226 DestroyWindow( hWnd ); in WndProc()
230 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
235 hdc = BeginPaint (hWnd, &ps); in WndProc()
238 GetClientRect( hWnd, &rt ); in WndProc()
[all …]
/trunk/main/embedserv/source/embed/
H A Dsyswinwrapper.cxx48 #define SendCommand(hWnd, wID, wCode, hControl) \ argument
49 SendMessage(hWnd, WM_COMMAND, MAKEWPARAM(wID, wCode) \
398 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()
[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()
354 BOOL Tracker::TrackHandle(int nHandle,HWND hWnd,POINT point,HWND hWndClipTo) in TrackHandle() argument
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()
[all …]
/trunk/main/vcl/win/source/app/
H A Dsaldata.cxx117 LONG ImplSetWindowLong( HWND hWnd, int nIndex, DWORD dwNewLong ) in ImplSetWindowLong() argument
119 return SetWindowLongW( hWnd, nIndex, dwNewLong ); in ImplSetWindowLong()
124 LONG ImplGetWindowLong( HWND hWnd, int nIndex ) in ImplGetWindowLong() argument
126 return GetWindowLongW( hWnd, nIndex ); in ImplGetWindowLong()
131 BOOL ImplPostMessage( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) in ImplPostMessage() argument
133 return PostMessageW( hWnd, nMsg, wParam, lParam ); in ImplPostMessage()
138 BOOL ImplSendMessage( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) in ImplSendMessage() argument
140 BOOL bRet = SendMessageW( hWnd, nMsg, wParam, lParam ); in ImplSendMessage()
146 BOOL ImplGetMessage( LPMSG lpMsg, HWND hWnd, UINT wMsgFilterMin, UINT wMsgFilterMax ) in ImplGetMessage() argument
148 return GetMessageW( lpMsg, hWnd, wMsgFilterMin, wMsgFilterMax ); in ImplGetMessage()
[all …]
H A Dsalinst.cxx102 LRESULT CALLBACK SalComWndProcA( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
103 LRESULT CALLBACK SalComWndProcW( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam );
758 LRESULT CALLBACK SalComWndProc( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam, int& rDef ) in SalComWndProc() argument
780 ImplPostMessage( hWnd, SAL_MSG_RELEASEWAITYIELD, wParam, lParam ); in SalComWndProc()
840 LRESULT CALLBACK SalComWndProcA( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) argument
854 nRet = SalComWndProc( hWnd, nMsg, wParam, lParam, bDef );
865 if ( !ImplHandleGlobalMsg( hWnd, nMsg, wParam, lParam, nRet ) )
866 nRet = DefWindowProcA( hWnd, nMsg, wParam, lParam );
871 LRESULT CALLBACK SalComWndProcW( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) argument
885 nRet = SalComWndProc( hWnd, nMsg, wParam, lParam, bDef );
[all …]
/trunk/main/sal/workben/clipboardwben/testpaste/
H A Dcbptest.cxx226 HWND hWnd; in InitInstance() local
230 hWnd = CreateWindowExW(0, szWindowClass, szTitle, WS_OVERLAPPEDWINDOW, in InitInstance()
233 if( !hWnd ) in InitInstance()
238 ShowWindow( hWnd, nCmdShow ); in InitInstance()
239 UpdateWindow( hWnd ); in InitInstance()
254 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
275 PasteClipboardData2(hWnd); in WndProc()
279 DestroyWindow( hWnd ); in WndProc()
283 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
288 hdc = BeginPaint (hWnd, &ps); in WndProc()
[all …]
/trunk/main/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/
H A Dnativeview.c74 HWND hWnd ; in Java_NativeView_getNativeWindow() local
96 hWnd = dsi_win->hwnd; in Java_NativeView_getNativeWindow()
111 if (GetProp( hWnd, OLD_PROC_KEY )==0) in Java_NativeView_getNativeWindow()
113 hFuncPtr = SetWindowLong( hWnd, GWL_WNDPROC, (DWORD)NativeViewWndProc ); in Java_NativeView_getNativeWindow()
114 SetProp( hWnd, OLD_PROC_KEY, (HANDLE)hFuncPtr ); in Java_NativeView_getNativeWindow()
117 return ((jlong)hWnd); in Java_NativeView_getNativeWindow()
129 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in NativeViewWndProc() argument
141 GetClientRect(hWnd, &rect); in NativeViewWndProc()
157 HWND hChild = GetWindow(hWnd, GW_CHILD); in NativeViewWndProc()
164 hFuncPtr = GetProp(hWnd, OLD_PROC_KEY); in NativeViewWndProc()
[all …]
/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/sfx2/source/appl/
H A Dshutdowniconw32.cxx313 static void addTaskbarIcon( HWND hWnd ) in addTaskbarIcon() argument
329 nid.hWnd = hWnd; in addTaskbarIcon()
363 LRESULT CALLBACK listenerWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in listenerWndProc() argument
385 addTaskbarIcon( hWnd ); in listenerWndProc()
394 OnMeasureItem(hWnd, (LPMEASUREITEMSTRUCT) lParam); in listenerWndProc()
398 OnDrawItem(hWnd, (LPDRAWITEMSTRUCT) lParam); in listenerWndProc()
406 PostMessage( aExecuterWindow, WM_COMMAND, IDM_TEMPLATE, (LPARAM)hWnd ); in listenerWndProc()
414 SetForegroundWindow( hWnd ); in listenerWndProc()
425 pt.x, pt.y, hWnd, NULL ); in listenerWndProc()
427 PostMessage( hWnd, NULL, 0, 0 ); in listenerWndProc()
[all …]
/trunk/main/sal/workben/clipboardwben/testcopy/
H A Dcbcpytest.cxx64 void PasteData( HWND hWnd );
242 LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) in WndProc() argument
262 CopyClipboardData(hWnd); in WndProc()
265 PasteData(hWnd); in WndProc()
271 DestroyWindow( hWnd ); in WndProc()
275 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
280 hdc = BeginPaint (hWnd, &ps); in WndProc()
283 GetClientRect( hWnd, &rt ); in WndProc()
294 EndPaint( hWnd, &ps ); in WndProc()
305 return DefWindowProc( hWnd, message, wParam, lParam ); in WndProc()
[all …]
/trunk/main/vcl/inc/os2/
H A Dsaldata.hxx151 PM_BOOL SalImplHandleProcessMenu( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 );
179 MRESULT EXPENTRY SalFrameWndProc( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 );
180 MRESULT EXPENTRY SalFrameFrameProc( HWND hWnd, ULONG nMsg, MPARAM nMP1, MPARAM nMP2 );
183 void SalTimerProc( HWND hWnd, UINT nMsg, UINT nId, ULONG nTime );
289 inline void SetWindowPtr( HWND hWnd, SalFrame* pThis ) in SetWindowPtr() argument
291 WinSetWindowULong( hWnd, SAL_FRAME_THIS, (ULONG)pThis ); in SetWindowPtr()
294 inline Os2SalFrame* GetWindowPtr( HWND hWnd ) in GetWindowPtr() argument
296 return (Os2SalFrame*)WinQueryWindowULong( hWnd, SAL_FRAME_THIS ); in GetWindowPtr()
299 inline void SetSalObjWindowPtr( HWND hWnd, SalObject* pThis ) in SetSalObjWindowPtr() argument
301 WinSetWindowULong( hWnd, SAL_OBJECT_THIS, (ULONG)pThis ); in SetSalObjWindowPtr()
[all …]
/trunk/main/fpicker/source/win32/filepicker/
H A DWinFileOpenImpl.cxx509 HWND hWnd, UINT wMessage, WPARAM wParam, LPARAM lParam) in SubClassFunc() argument
513 CWinFileOpenImpl* pImpl = dynamic_cast<CWinFileOpenImpl*>(getCurrentInstance(hWnd)); in SubClassFunc()
526 hWnd,wMessage,wParam,lParam); in SubClassFunc()
533 hWnd,wMessage,wParam,lParam); in SubClassFunc()
541 hWnd,wMessage,wParam,lParam); in SubClassFunc()
549 hWnd,wMessage,wParam,lParam); in SubClassFunc()
556 SetWindowLong(hWnd, GWL_WNDPROC, in SubClassFunc()
561 hWnd,wMessage,wParam,lParam); in SubClassFunc()
567 hWnd,wMessage,wParam,lParam); in SubClassFunc()
579 void SAL_CALL CWinFileOpenImpl::InitControlLabel(HWND hWnd) in InitControlLabel() argument
[all …]
H A Dhelppopupwindow.cxx312 void SAL_CALL CHelpPopupWindow::onPaint( HWND hWnd, HDC hdc ) in onPaint() argument
324 GetClientRect( hWnd, &rc ); in onPaint()
472 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) in WndProc() argument
489 SetProp( hWnd, CURRENT_INSTANCE, pImpl ); in WndProc()
491 pImpl->onCreate( hWnd ); in WndProc()
494 SetCapture( hWnd ); in WndProc()
501 GetProp( hWnd, CURRENT_INSTANCE ) ); in WndProc()
507 BeginPaint(hWnd, &ps); in WndProc()
508 pImpl->onPaint( hWnd, ps.hdc ); in WndProc()
509 EndPaint(hWnd, &ps); in WndProc()
[all …]
H A Ddibpreview.cxx243 void SAL_CALL CDIBPreview::onPaint(HWND hWnd, HDC hDC) in onPaint() argument
322 GetClientRect(hWnd,&rc); in onPaint()
337 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) in WndProc() argument
354 SetProp(hWnd, CURRENT_INSTANCE, lpcs->lpCreateParams); in WndProc()
364 RemoveProp(hWnd, CURRENT_INSTANCE)) == NULL) in WndProc()
374 GetProp(hWnd, CURRENT_INSTANCE)); in WndProc()
381 hDC = BeginPaint(hWnd,&ps); in WndProc()
382 pImpl->onPaint(hWnd,hDC); in WndProc()
383 EndPaint(hWnd,&ps); in WndProc()
394 return DefWindowProc(hWnd, uMsg, wParam, lParam); in WndProc()
H A DPreviewCtrl.cxx449 void SAL_CALL CFilePreview::onPaint( HWND hWnd, HDC hDC ) in onPaint() argument
470 GetClientRect(hWnd, &rcPrevWnd); in onPaint()
473 hWnd, CDimension( cxPicPIXEL, cyPicPIXEL ) ); in onPaint()
477 POINT ulCorner = _calcULCorner( hWnd, scaledPicSize ); in onPaint()
574 HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) in WndProc() argument
587 hDC = BeginPaint( hWnd, &ps ); in WndProc()
588 s_FilePreviewInst->onPaint( hWnd, hDC ); in WndProc()
589 EndPaint( hWnd, &ps ); in WndProc()
604 return DefWindowProc( hWnd, uMsg, wParam, lParam ); in WndProc()
/trunk/main/dbaccess/source/ui/dlg/
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()
/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()
/trunk/main/migrationanalysis/src/msokill/
H A Dmsokill.cpp34 BOOL KillAppFromWindow(HWND hWnd, char *appName);
100 HWND hWnd; in KillOffice() local
104 while (((hWnd = FindWindow(wndClassName[i], NULL )) != NULL) && (j < 10)) { in KillOffice()
105 KillAppFromWindow(hWnd, wndClassName[i]); in KillOffice()
118 HWND hWnd, in KillAppFromWindow() argument
127 if(hWnd == NULL) { in KillAppFromWindow()
136 dThread = GetWindowThreadProcessId(hWnd, &pid); in KillAppFromWindow()

1234