1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: X11_dndcontext.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _DTRANS_X11_DNDCONTEXT_HXX
32 #define _DTRANS_X11_DNDCONTEXT_HXX
34 #include <com/sun/star/datatransfer/dnd/XDragSourceContext.hpp>
35 #include <com/sun/star/datatransfer/dnd/XDropTargetDropContext.hpp>
36 #include <com/sun/star/datatransfer/dnd/XDropTargetDragContext.hpp>
37 #include <cppuhelper/implbase1.hxx>
41 using namespace com::sun::star::uno
;
45 class SelectionManager
;
47 class DropTargetDropContext
:
48 public ::cppu::WeakImplHelper1
<
49 ::com::sun::star::datatransfer::dnd::XDropTargetDropContext
54 SelectionManager
& m_rManager
;
55 Reference
< XInterface
> m_xManagerRef
;
57 DropTargetDropContext( Window
, Time
, SelectionManager
& );
58 virtual ~DropTargetDropContext();
60 // XDropTargetDropContext
61 virtual void SAL_CALL
acceptDrop( sal_Int8 dragOperation
) throw();
62 virtual void SAL_CALL
rejectDrop() throw();
63 virtual void SAL_CALL
dropComplete( sal_Bool success
) throw();
66 class DropTargetDragContext
:
67 public ::cppu::WeakImplHelper1
<
68 ::com::sun::star::datatransfer::dnd::XDropTargetDragContext
73 SelectionManager
& m_rManager
;
74 Reference
< XInterface
> m_xManagerRef
;
76 DropTargetDragContext( Window
, Time
, SelectionManager
& );
77 virtual ~DropTargetDragContext();
79 // XDropTargetDragContext
80 virtual void SAL_CALL
acceptDrag( sal_Int8 dragOperation
) throw();
81 virtual void SAL_CALL
rejectDrag() throw();
84 class DragSourceContext
:
85 public ::cppu::WeakImplHelper1
<
86 ::com::sun::star::datatransfer::dnd::XDragSourceContext
91 SelectionManager
& m_rManager
;
92 Reference
< XInterface
> m_xManagerRef
;
94 DragSourceContext( Window
, Time
, SelectionManager
& );
95 virtual ~DragSourceContext();
98 virtual sal_Int32 SAL_CALL
getCurrentCursor() throw();
99 virtual void SAL_CALL
setCursor( sal_Int32 cursorId
) throw();
100 virtual void SAL_CALL
setImage( sal_Int32 imageId
) throw();
101 virtual void SAL_CALL
transferablesFlavorsChanged() throw();
105 #endif // _DTRANS_X11_DNDCONTEXT_HXX