Home
last modified time | relevance | path

Searched refs:m_hWnd (Results 1 – 12 of 12) sorted by relevance

/trunk/main/dtrans/source/os2/dnd/
H A DDropTarget.cxx77 m_hWnd = *(HWND*) aArguments[0].getValue(); in initialize()
78 debug_printf("DropTarget::initialize hwnd %x", m_hWnd); in initialize()
81 defWndProc = WinSubclassWindow( m_hWnd, dndFrameProc); in initialize()
82 SetWindowDropTargetPtr( m_hWnd, this); in initialize()
90 debug_printf("DropTarget::disposing hwnd %x", m_hWnd); in disposing()
93 WinSubclassWindow( m_hWnd, defWndProc); in disposing()
95 SetWindowDropTargetPtr( m_hWnd, 0); in disposing()
101 debug_printf("DropTarget::addDropTargetListener hwnd %x", m_hWnd); in addDropTargetListener()
108 debug_printf("DropTarget::removeDropTargetListener hwnd %x", m_hWnd); in removeDropTargetListener()
149 debug_printf("DropTarget::acceptDrag hwnd %x, dragOperation %d", m_hWnd, dragOperation); in acceptDrag()
[all …]
H A DDragSource.cxx76 m_hWnd = *(HWND*)aArguments[1].getValue(); in initialize()
77 debug_printf("DragSource::initialize hwnd %x", m_hWnd); in initialize()
79 SetWindowDragSourcePtr( m_hWnd, this); in initialize()
84 debug_printf("DragSource::disposing hwnd %x", m_hWnd); in disposing()
85 SetWindowDragSourcePtr( m_hWnd, 0); in disposing()
113 m_hWnd, sourceActions); in startDrag()
124 g_DragSourceHwnd = m_hWnd; in startDrag()
141 pSourceDraginfo->hwndSource = m_hWnd; in startDrag()
146 dragItem.hwndItem = m_hWnd; in startDrag()
165 hwndTarget = DrgDrag( m_hWnd, pSourceDraginfo, &dimg, 1L, VK_BUTTON2, NULL); in startDrag()
[all …]
H A DDragSource.hxx64 HWND m_hWnd; member in DragSource
H A DDropTarget.hxx67 HWND m_hWnd; member in DropTarget
/trunk/main/embedserv/source/embed/
H A Dsyswinwrapper.cxx63 m_hWnd=NULL; in CWindow()
69 if (IsWindow(m_hWnd)) in ~CWindow()
70 DestroyWindow(m_hWnd); in ~CWindow()
89 return m_hWnd; in Window()
167 m_hWnd=NULL; in CHatchWin()
191 if (NULL!=m_hWnd && IsWindow(m_hWnd)) in ~CHatchWin()
192 DestroyWindow(m_hWnd); in ~CHatchWin()
219 m_hWnd=CreateWindowEx( in Init()
228 return (NULL!=m_hWnd); in Init()
235 SetWindowRgn(m_hWnd,hrgn,true); in SetTrans()
[all …]
/trunk/main/dtrans/source/win32/dnd/
H A Dtarget.cxx55 m_hWnd( NULL), in DropTarget()
99 hr= RevokeDragDrop( m_hWnd); in disposing()
100 m_hWnd= 0; in disposing()
138 m_hWnd= *(HWND*)aArguments[0].getValue(); in initialize()
139 OSL_ASSERT( IsWindow( m_hWnd) ); in initialize()
142 m_threadIdWindow= GetWindowThreadProcessId( m_hWnd, NULL); in initialize()
156 m_threadIdWindow= GetWindowThreadProcessId( m_hWnd, NULL); in initialize()
186 if( FAILED( RegisterDragDrop( m_hWnd, m_pDropTarget) ) ) in initialize()
191 m_hWnd= NULL; in initialize()
232 if( FAILED( RegisterDragDrop( pTarget-> m_hWnd, pTarget-> m_pDropTarget) ) ) in DndTargetOleSTAFunc()
[all …]
H A Dtarget.hxx76 HWND m_hWnd; // set by initialize member in DropTarget
/trunk/main/external/mingwheaders/
H A Dmingw_atl_headers.patch1174 - CComControl() : CComControlBase(m_hWnd) {}
1175 + CComControl() : CComControlBase(this->m_hWnd) {}
1183 + using CComControl< T, CAxDialogImpl< T > >::m_hWnd;
1213 if (m_hWnd != NULL)
1216 return m_hWnd;
1223 - if (IsChild(hWndCtl) && ::GetParent(hWndCtl) != m_hWnd)
1224 + if (this->IsChild(hWndCtl) && ::GetParent(hWndCtl) != m_hWnd)
1327 ATLASSERT(::IsWindow(m_hWnd));
1328 return ::GetDlgItemText(m_hWnd, nID, lpStr, nMaxCount);
1333 + ATLASSERT(::IsWindow(m_hWnd));
[all …]
/trunk/main/dtrans/test/win32/dnd/
H A Datlwindow.cxx93 m_hWnd, // parent window in OnCreate()
100 mapEditToMainWnd[m_hwndEdit]= m_hWnd; in OnCreate()
119 ar[1]<<= (sal_uInt32)m_hWnd; in OnCreate()
128 any <<= (sal_uInt32)m_hWnd; in OnCreate()
H A Datlwindow.hxx72 if(m_hWnd) in ~AWindow()
/trunk/main/extensions/test/ole/OleClient/
H A Daxhost.cxx44 CAxWindow wnd(m_hWnd); in OnCreate()
/trunk/main/embedserv/source/inc/
H A Dsyswinwrapper.hxx52 HWND m_hWnd; //Window handle of the window member in winwrap::CWindow