Lines Matching refs:DropTarget
54 DropTarget::DropTarget( const Reference<XMultiServiceFactory>& sf): in DropTarget() function in DropTarget
74 DropTarget::~DropTarget() in ~DropTarget()
86 void SAL_CALL DropTarget::disposing() in disposing()
116 void SAL_CALL DropTarget::initialize( const Sequence< Any >& aArguments ) in initialize()
151 m_pDropTarget= new IDropTargetImpl( *static_cast<DropTarget*>( this) ); in initialize()
165 …PostThreadMessage( m_threadIdTarget, WM_REGISTERDRAGDROP, (WPARAM)static_cast<DropTarget*>(this), … in initialize()
181 m_pDropTarget= new IDropTargetImpl( *static_cast<DropTarget*>( this) ); in initialize()
224 DropTarget *pTarget= (DropTarget*)msg.wParam; in DndTargetOleSTAFunc()
243 DropTarget *pTarget= (DropTarget*)msg.wParam; in DndTargetOleSTAFunc()
262 OUString SAL_CALL DropTarget::getImplementationName( ) throw (RuntimeException) in getImplementationName()
267 sal_Bool SAL_CALL DropTarget::supportsService( const OUString& ServiceName ) throw (RuntimeExceptio… in supportsService()
274 Sequence< OUString > SAL_CALL DropTarget::getSupportedServiceNames( ) throw (RuntimeException) in getSupportedServiceNames()
282 void SAL_CALL DropTarget::addDropTargetListener( const Reference< XDropTargetListener >& dtl ) in addDropTargetListener()
288 void SAL_CALL DropTarget::removeDropTargetListener( const Reference< XDropTargetListener >& dtl ) in removeDropTargetListener()
294 sal_Bool SAL_CALL DropTarget::isActive( ) throw(RuntimeException) in isActive()
300 void SAL_CALL DropTarget::setActive( sal_Bool _b ) throw(RuntimeException) in setActive()
307 sal_Int8 SAL_CALL DropTarget::getDefaultActions( ) throw(RuntimeException) in getDefaultActions()
312 void SAL_CALL DropTarget::setDefaultActions( sal_Int8 actions ) throw(RuntimeException) in setDefaultActions()
319 HRESULT DropTarget::DragEnter( IDataObject *pDataObj, in DragEnter()
337 static_cast<DropTarget*>(this) ) ); in DragEnter()
385 HRESULT DropTarget::DragOver( DWORD grfKeyState, in DragOver()
437 HRESULT DropTarget::DragLeave( void) in DragLeave()
461 HRESULT DropTarget::Drop( IDataObject * /*pDataObj*/, in Drop()
475 …= static_cast<XDropTargetDropContext*>( new TargetDropContext( static_cast<DropTarget*>(this )) ); in Drop()
512 void DropTarget::fire_drop( const DropTargetDropEvent& dte) in fire_drop()
526 void DropTarget::fire_dragEnter( const DropTargetDragEnterEvent& e ) in fire_dragEnter()
540 void DropTarget::fire_dragExit( const DropTargetEvent& dte ) in fire_dragExit()
555 void DropTarget::fire_dragOver( const DropTargetDragEvent& dtde ) in fire_dragOver()
569 void DropTarget::fire_dropActionChanged( const DropTargetDragEvent& dtde ) in fire_dropActionChanged()
594 void DropTarget::_acceptDrop(sal_Int8 dropOperation, const Reference<XDropTargetDropContext>& conte… in _acceptDrop()
602 void DropTarget::_rejectDrop( const Reference<XDropTargetDropContext>& context) in _rejectDrop()
610 void DropTarget::_dropComplete(sal_Bool success, const Reference<XDropTargetDropContext>& context) in _dropComplete()
624 void DropTarget::_acceptDrag( sal_Int8 dragOperation, const Reference<XDropTargetDragContext>& cont… in _acceptDrag()
632 void DropTarget::_rejectDrag( const Reference<XDropTargetDragContext>& context) in _rejectDrag()
651 inline sal_Int8 DropTarget::getFilteredActions( DWORD grfKeyState, DWORD dwEffect) in getFilteredActions()