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: sourcecontext.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 ************************************************************************/
30 #ifndef _SOURCECONTEXT_HXX_
31 #define _SOURCECONTEXT_HXX_
33 #include <cppuhelper/implbase1.hxx>
34 #include <com/sun/star/datatransfer/dnd/XDragSourceContext.hpp>
35 #include <cppuhelper/compbase1.hxx>
40 using namespace ::com::sun::star::datatransfer
;
41 using namespace ::com::sun::star::datatransfer::dnd
;
42 using namespace ::cppu
;
43 using namespace ::com::sun::star::uno
;
44 using namespace ::com::sun::star::lang
;
47 // This class fires events to XDragSourceListener implementations.
48 // Of that interface only dragDropEnd and dropActionChanged are called.
49 // The functions dragEnter, dragExit and dragOver are not supported
51 // An instance of SourceContext only lives as long as the drag and drop
53 class SourceContext
: public MutexDummy
,
54 public WeakComponentImplHelper1
<XDragSourceContext
>
56 DragSource
* m_pDragSource
;
57 Reference
<XDragSource
> m_dragSource
;
58 // the action ( copy, move etc)
59 sal_Int8 m_currentAction
;
62 SourceContext( const SourceContext
&);
63 SourceContext
&operator= (const SourceContext
& );
66 SourceContext( DragSource
* pSource
, const Reference
<XDragSourceListener
>& listener
);
69 virtual void SAL_CALL
addDragSourceListener( const Reference
<XDragSourceListener
>& dsl
)
70 throw( RuntimeException
);
71 virtual void SAL_CALL
removeDragSourceListener( const Reference
<XDragSourceListener
>& dsl
)
72 throw( RuntimeException
);
73 virtual sal_Int32 SAL_CALL
getCurrentCursor( )
74 throw( RuntimeException
);
75 virtual void SAL_CALL
setCursor( sal_Int32 cursorId
)
76 throw( RuntimeException
);
77 virtual void SAL_CALL
setImage( sal_Int32 imageId
)
78 throw( RuntimeException
);
79 virtual void SAL_CALL
transferablesFlavorsChanged( )
80 throw( RuntimeException
);
84 // non - interface functions
85 void fire_dragDropEnd( sal_Bool success
, sal_Int8 byte
);
86 void fire_dropActionChanged( sal_Int8 dropAction
, sal_Int8 userAction
);