Lines Matching refs:dtde
93 virtual void SAL_CALL drop( const DropTargetDropEvent& dtde ) throw(RuntimeException);
94 virtual void SAL_CALL dragEnter( const DropTargetDragEnterEvent& dtde ) throw(RuntimeException);
96 virtual void SAL_CALL dragOver( const DropTargetDragEvent& dtde ) throw(RuntimeException);
97 virtual void SAL_CALL dropActionChanged( const DropTargetDragEvent& dtde ) throw(RuntimeException);
302 void SAL_CALL MyDragAndDropListener::drop( const DropTargetDropEvent& dtde ) throw(RuntimeException) in drop() argument
304 … Window: %p, %"SAL_PRIdINT32", %"SAL_PRIdINT32" ).\n", m_pWindow, dtde.LocationX, dtde.LocationY ); in drop()
306 dtde.Context->dropComplete( sal_True ); in drop()
326 void SAL_CALL MyDragAndDropListener::dragOver( const DropTargetDragEvent& dtde ) throw(RuntimeExcep… in dragOver() argument
328 … Window: %p, %"SAL_PRIdINT32", %"SAL_PRIdINT32" ).\n", m_pWindow, dtde.LocationX, dtde.LocationY ); in dragOver()
329 dtde.Context->acceptDrag( dtde.DropAction ); in dragOver()
334 void SAL_CALL MyDragAndDropListener::dropActionChanged( const DropTargetDragEvent& dtde ) throw(Run… in dropActionChanged() argument
336 … Window: %p, %"SAL_PRIdINT32", %"SAL_PRIdINT32" ).\n", m_pWindow, dtde.LocationX, dtde.LocationY ); in dropActionChanged()
337 dtde.Context->acceptDrag( dtde.DropAction ); in dropActionChanged()