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: targetdropcontext.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 _TARGETDROPCONTEXT_HXX_
32 #define _TARGETDROPCONTEXT_HXX_
34 #include <cppuhelper/implbase1.hxx>
35 #include <com/sun/star/datatransfer/dnd/XDropTargetDropContext.hpp>
39 using namespace ::com::sun::star::datatransfer::dnd
;
40 using namespace ::cppu
;
41 using namespace ::com::sun::star::uno
;
42 using namespace ::com::sun::star::lang
;
44 class TargetDropContext
: public WeakImplHelper1
<XDropTargetDropContext
>
46 // calls to the functions of XDropTargetDropContext are delegated
47 // to non-interface functions of m_pDropTarget
48 DropTarget
* m_pDropTarget
;
51 TargetDropContext( const TargetDropContext
&);
52 TargetDropContext
&operator= ( const TargetDropContext
&);
54 TargetDropContext( DropTarget
* pTarget
);
58 // XDropTargetDragContext
59 virtual void SAL_CALL
acceptDrop( sal_Int8 dropOperation
)
60 throw( RuntimeException
);
61 virtual void SAL_CALL
rejectDrop( )
62 throw( RuntimeException
);
65 /* virtual Sequence< DataFlavor > SAL_CALL getCurrentDataFlavors( )
66 throw( RuntimeException);
67 virtual sal_Bool SAL_CALL isDataFlavorSupported( const DataFlavor& df )
68 throw( RuntimeException);
71 // XDropTargetDropContext (inherits XDropTargetDragContext)
72 virtual void SAL_CALL
dropComplete( sal_Bool success
)
73 throw( RuntimeException
);