Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include <dndlcon.hxx>
22 :
23 : using namespace ::cppu;
24 : using namespace ::com::sun::star::uno;
25 : using namespace ::com::sun::star::datatransfer;
26 : using namespace ::com::sun::star::datatransfer::dnd;
27 :
28 : //==================================================================================================
29 : //
30 : //==================================================================================================
31 :
32 738 : DNDListenerContainer::DNDListenerContainer( sal_Int8 nDefaultActions )
33 738 : : WeakComponentImplHelper4< XDragGestureRecognizer, XDropTargetDragContext, XDropTargetDropContext, XDropTarget >(GetMutex())
34 : {
35 738 : m_bActive = sal_True;
36 738 : m_nDefaultActions = nDefaultActions;
37 738 : }
38 :
39 : //==================================================================================================
40 : //
41 : //==================================================================================================
42 :
43 412 : DNDListenerContainer::~DNDListenerContainer()
44 : {
45 412 : }
46 :
47 : //==================================================================================================
48 : // DNDListenerContainer::addDragGestureListener
49 : //==================================================================================================
50 :
51 498 : void SAL_CALL DNDListenerContainer::addDragGestureListener( const Reference< XDragGestureListener >& dgl )
52 : throw(RuntimeException)
53 : {
54 498 : rBHelper.addListener( getCppuType( ( const Reference< XDragGestureListener > * ) 0 ), dgl );
55 498 : }
56 :
57 : //==================================================================================================
58 : // DNDListenerContainer::removeDragGestureListener
59 : //==================================================================================================
60 :
61 140 : void SAL_CALL DNDListenerContainer::removeDragGestureListener( const Reference< XDragGestureListener >& dgl )
62 : throw(RuntimeException)
63 : {
64 140 : rBHelper.removeListener( getCppuType( ( const Reference< XDragGestureListener > * ) 0 ), dgl );
65 140 : }
66 :
67 : //==================================================================================================
68 : // DNDListenerContainer::resetRecognizer
69 : //==================================================================================================
70 :
71 0 : void SAL_CALL DNDListenerContainer::resetRecognizer( )
72 : throw(RuntimeException)
73 : {
74 0 : }
75 :
76 : //==================================================================================================
77 : // DNDListenerContainer::addDropTargetListener
78 : //==================================================================================================
79 :
80 1049 : void SAL_CALL DNDListenerContainer::addDropTargetListener( const Reference< XDropTargetListener >& dtl )
81 : throw(RuntimeException)
82 : {
83 1049 : rBHelper.addListener( getCppuType( ( const Reference< XDropTargetListener > * ) 0 ), dtl );
84 1049 : }
85 :
86 : //==================================================================================================
87 : // DNDListenerContainer::removeDropTargetListener
88 : //==================================================================================================
89 :
90 514 : void SAL_CALL DNDListenerContainer::removeDropTargetListener( const Reference< XDropTargetListener >& dtl )
91 : throw(RuntimeException)
92 : {
93 514 : rBHelper.removeListener( getCppuType( ( const Reference< XDropTargetListener > * ) 0 ), dtl );
94 514 : }
95 :
96 : //==================================================================================================
97 : // DNDListenerContainer::isActive
98 : //==================================================================================================
99 :
100 0 : sal_Bool SAL_CALL DNDListenerContainer::isActive( )
101 : throw(RuntimeException)
102 : {
103 0 : return m_bActive;
104 : }
105 :
106 : //==================================================================================================
107 : // DNDListenerContainer::setActive
108 : //==================================================================================================
109 :
110 1415 : void SAL_CALL DNDListenerContainer::setActive( sal_Bool active )
111 : throw(RuntimeException)
112 : {
113 1415 : m_bActive = active;
114 1415 : }
115 :
116 : //==================================================================================================
117 : // DNDListenerContainer::getDefaultActions
118 : //==================================================================================================
119 :
120 0 : sal_Int8 SAL_CALL DNDListenerContainer::getDefaultActions( )
121 : throw(RuntimeException)
122 : {
123 0 : return m_nDefaultActions;
124 : }
125 :
126 : //==================================================================================================
127 : // DNDListenerContainer::setDefaultActions
128 : //==================================================================================================
129 :
130 262 : void SAL_CALL DNDListenerContainer::setDefaultActions( sal_Int8 actions )
131 : throw(RuntimeException)
132 : {
133 262 : m_nDefaultActions = actions;
134 262 : }
135 :
136 : //==================================================================================================
137 : // DNDListenerContainer::fireDropEvent
138 : //==================================================================================================
139 :
140 0 : sal_uInt32 DNDListenerContainer::fireDropEvent( const Reference< XDropTargetDropContext >& context,
141 : sal_Int8 dropAction, sal_Int32 locationX, sal_Int32 locationY, sal_Int8 sourceActions,
142 : const Reference< XTransferable >& transferable )
143 : {
144 0 : sal_uInt32 nRet = 0;
145 :
146 : // fire DropTargetDropEvent on all XDropTargetListeners
147 0 : OInterfaceContainerHelper *pContainer = rBHelper.getContainer( getCppuType( ( Reference < XDropTargetListener > * ) 0) );
148 :
149 0 : if( pContainer && m_bActive )
150 : {
151 0 : OInterfaceIteratorHelper aIterator( *pContainer );
152 :
153 : // remember context to use in own context methods
154 0 : m_xDropTargetDropContext = context;
155 :
156 : // do not construct the event before you are sure at least one listener is registered
157 : DropTargetDropEvent aEvent( static_cast < XDropTarget * > (this), 0,
158 : static_cast < XDropTargetDropContext * > (this), dropAction,
159 0 : locationX, locationY, sourceActions, transferable );
160 :
161 0 : while (aIterator.hasMoreElements())
162 : {
163 : // FIXME: this can be simplified as soon as the Iterator has a remove method
164 0 : Reference< XInterface > xElement( aIterator.next() );
165 :
166 : try
167 : {
168 : // this may result in a runtime exception
169 0 : Reference < XDropTargetListener > xListener( xElement, UNO_QUERY );
170 :
171 0 : if( xListener.is() )
172 : {
173 : // fire drop until the first one has accepted
174 0 : if( m_xDropTargetDropContext.is() )
175 0 : xListener->drop( aEvent );
176 : else
177 : {
178 0 : DropTargetEvent aDTEvent( static_cast < XDropTarget * > (this), 0 );
179 0 : xListener->dragExit( aDTEvent );
180 : }
181 :
182 0 : nRet++;
183 0 : }
184 : }
185 0 : catch (const RuntimeException&)
186 : {
187 0 : pContainer->removeInterface( xElement );
188 : }
189 0 : }
190 :
191 : // if context still valid, then reject drop
192 0 : if( m_xDropTargetDropContext.is() )
193 : {
194 0 : m_xDropTargetDropContext.clear();
195 :
196 : try
197 : {
198 0 : context->rejectDrop();
199 : }
200 0 : catch (const RuntimeException&)
201 : {
202 : }
203 0 : }
204 : }
205 :
206 0 : return nRet;
207 : }
208 :
209 : //==================================================================================================
210 : // DNDListenerContainer::fireDragExitEvent
211 : //==================================================================================================
212 :
213 0 : sal_uInt32 DNDListenerContainer::fireDragExitEvent()
214 : {
215 0 : sal_uInt32 nRet = 0;
216 :
217 : // fire DropTargetDropEvent on all XDropTargetListeners
218 0 : OInterfaceContainerHelper *pContainer = rBHelper.getContainer( getCppuType( ( Reference < XDropTargetListener > * ) 0) );
219 :
220 0 : if( pContainer && m_bActive )
221 : {
222 0 : OInterfaceIteratorHelper aIterator( *pContainer );
223 :
224 : // do not construct the event before you are sure at least one listener is registered
225 0 : DropTargetEvent aEvent( static_cast < XDropTarget * > (this), 0 );
226 :
227 0 : while (aIterator.hasMoreElements())
228 : {
229 : // FIXME: this can be simplified as soon as the Iterator has a remove method
230 0 : Reference< XInterface > xElement( aIterator.next() );
231 :
232 : try
233 : {
234 : // this may result in a runtime exception
235 0 : Reference < XDropTargetListener > xListener( xElement, UNO_QUERY );
236 :
237 0 : if( xListener.is() )
238 : {
239 0 : xListener->dragExit( aEvent );
240 0 : nRet++;
241 0 : }
242 : }
243 0 : catch (const RuntimeException&)
244 : {
245 0 : pContainer->removeInterface( xElement );
246 : }
247 0 : }
248 : }
249 :
250 0 : return nRet;
251 : }
252 :
253 : //==================================================================================================
254 : // DNDListenerContainer::fireDragOverEvent
255 : //==================================================================================================
256 :
257 0 : sal_uInt32 DNDListenerContainer::fireDragOverEvent( const Reference< XDropTargetDragContext >& context,
258 : sal_Int8 dropAction, sal_Int32 locationX, sal_Int32 locationY, sal_Int8 sourceActions )
259 : {
260 0 : sal_uInt32 nRet = 0;
261 :
262 : // fire DropTargetDropEvent on all XDropTargetListeners
263 0 : OInterfaceContainerHelper *pContainer = rBHelper.getContainer( getCppuType( ( Reference < XDropTargetListener > * ) 0) );
264 :
265 0 : if( pContainer && m_bActive )
266 : {
267 0 : OInterfaceIteratorHelper aIterator( *pContainer );
268 :
269 : // remember context to use in own context methods
270 0 : m_xDropTargetDragContext = context;
271 :
272 : // do not construct the event before you are sure at least one listener is registered
273 : DropTargetDragEvent aEvent( static_cast < XDropTarget * > (this), 0,
274 : static_cast < XDropTargetDragContext * > (this),
275 0 : dropAction, locationX, locationY, sourceActions );
276 :
277 0 : while (aIterator.hasMoreElements())
278 : {
279 : // FIXME: this can be simplified as soon as the Iterator has a remove method
280 0 : Reference< XInterface > xElement( aIterator.next() );
281 :
282 : try
283 : {
284 : // this may result in a runtime exception
285 0 : Reference < XDropTargetListener > xListener( xElement, UNO_QUERY );
286 :
287 0 : if( xListener.is() )
288 : {
289 0 : if( m_xDropTargetDragContext.is() )
290 0 : xListener->dragOver( aEvent );
291 0 : nRet++;
292 0 : }
293 : }
294 0 : catch (const RuntimeException&)
295 : {
296 0 : pContainer->removeInterface( xElement );
297 : }
298 0 : }
299 :
300 : // if context still valid, then reject drag
301 0 : if( m_xDropTargetDragContext.is() )
302 : {
303 0 : m_xDropTargetDragContext.clear();
304 :
305 : try
306 : {
307 0 : context->rejectDrag();
308 : }
309 0 : catch (const RuntimeException&)
310 : {
311 : }
312 0 : }
313 : }
314 :
315 0 : return nRet;
316 : }
317 :
318 : //==================================================================================================
319 : // DNDListenerContainer::fireDragEnterEvent
320 : //==================================================================================================
321 :
322 0 : sal_uInt32 DNDListenerContainer::fireDragEnterEvent( const Reference< XDropTargetDragContext >& context,
323 : sal_Int8 dropAction, sal_Int32 locationX, sal_Int32 locationY, sal_Int8 sourceActions,
324 : const Sequence< DataFlavor >& dataFlavors )
325 : {
326 0 : sal_uInt32 nRet = 0;
327 :
328 : // fire DropTargetDropEvent on all XDropTargetListeners
329 0 : OInterfaceContainerHelper *pContainer = rBHelper.getContainer( getCppuType( ( Reference < XDropTargetListener > * ) 0) );
330 :
331 0 : if( pContainer && m_bActive )
332 : {
333 0 : OInterfaceIteratorHelper aIterator( *pContainer );
334 :
335 : // remember context to use in own context methods
336 0 : m_xDropTargetDragContext = context;
337 :
338 : // do not construct the event before you are sure at least one listener is registered
339 : DropTargetDragEnterEvent aEvent( static_cast < XDropTarget * > (this), 0,
340 : static_cast < XDropTargetDragContext * > (this),
341 0 : dropAction, locationX, locationY, sourceActions, dataFlavors );
342 :
343 0 : while (aIterator.hasMoreElements())
344 : {
345 : // FIXME: this can be simplified as soon as the Iterator has a remove method
346 0 : Reference< XInterface > xElement( aIterator.next() );
347 :
348 : try
349 : {
350 : // this may result in a runtime exception
351 0 : Reference < XDropTargetListener > xListener( xElement, UNO_QUERY );
352 :
353 0 : if( xListener.is() )
354 : {
355 0 : if( m_xDropTargetDragContext.is() )
356 0 : xListener->dragEnter( aEvent );
357 0 : nRet++;
358 0 : }
359 : }
360 0 : catch (const RuntimeException&)
361 : {
362 0 : pContainer->removeInterface( xElement );
363 : }
364 0 : }
365 :
366 : // if context still valid, then reject drag
367 0 : if( m_xDropTargetDragContext.is() )
368 : {
369 0 : m_xDropTargetDragContext.clear();
370 :
371 : try
372 : {
373 0 : context->rejectDrag();
374 : }
375 0 : catch (const RuntimeException&)
376 : {
377 : }
378 0 : }
379 : }
380 :
381 0 : return nRet;
382 : }
383 :
384 : //==================================================================================================
385 : // DNDListenerContainer::fireDropActionChangedEvent
386 : //==================================================================================================
387 :
388 0 : sal_uInt32 DNDListenerContainer::fireDropActionChangedEvent( const Reference< XDropTargetDragContext >& context,
389 : sal_Int8 dropAction, sal_Int32 locationX, sal_Int32 locationY, sal_Int8 sourceActions )
390 : {
391 0 : sal_uInt32 nRet = 0;
392 :
393 : // fire DropTargetDropEvent on all XDropTargetListeners
394 0 : OInterfaceContainerHelper *pContainer = rBHelper.getContainer( getCppuType( ( Reference < XDropTargetListener > * ) 0) );
395 :
396 0 : if( pContainer && m_bActive )
397 : {
398 0 : OInterfaceIteratorHelper aIterator( *pContainer );
399 :
400 : // remember context to use in own context methods
401 0 : m_xDropTargetDragContext = context;
402 :
403 : // do not construct the event before you are sure at least one listener is registered
404 : DropTargetDragEvent aEvent( static_cast < XDropTarget * > (this), 0,
405 : static_cast < XDropTargetDragContext * > (this),
406 0 : dropAction, locationX, locationY, sourceActions );
407 :
408 0 : while (aIterator.hasMoreElements())
409 : {
410 : // FIXME: this can be simplified as soon as the Iterator has a remove method
411 0 : Reference< XInterface > xElement( aIterator.next() );
412 :
413 : try
414 : {
415 : // this may result in a runtime exception
416 0 : Reference < XDropTargetListener > xListener( xElement, UNO_QUERY );
417 :
418 0 : if( xListener.is() )
419 : {
420 0 : if( m_xDropTargetDragContext.is() )
421 0 : xListener->dropActionChanged( aEvent );
422 0 : nRet++;
423 0 : }
424 : }
425 0 : catch (const RuntimeException&)
426 : {
427 0 : pContainer->removeInterface( xElement );
428 : }
429 0 : }
430 :
431 : // if context still valid, then reject drag
432 0 : if( m_xDropTargetDragContext.is() )
433 : {
434 0 : m_xDropTargetDragContext.clear();
435 :
436 : try
437 : {
438 0 : context->rejectDrag();
439 : }
440 0 : catch (const RuntimeException&)
441 : {
442 : }
443 0 : }
444 : }
445 :
446 0 : return nRet;
447 : }
448 :
449 : //==================================================================================================
450 : // DNDListenerContainer::fireDragGestureEvent
451 : //==================================================================================================
452 :
453 0 : sal_uInt32 DNDListenerContainer::fireDragGestureEvent( sal_Int8 dragAction, sal_Int32 dragOriginX,
454 : sal_Int32 dragOriginY, const Reference< XDragSource >& dragSource, const Any& triggerEvent )
455 : {
456 0 : sal_uInt32 nRet = 0;
457 :
458 : // fire DropTargetDropEvent on all XDropTargetListeners
459 0 : OInterfaceContainerHelper *pContainer = rBHelper.getContainer( getCppuType( ( Reference < XDragGestureListener > * ) 0) );
460 :
461 0 : if( pContainer )
462 : {
463 0 : OInterfaceIteratorHelper aIterator( *pContainer );
464 :
465 : // do not construct the event before you are sure at least one listener is registered
466 : DragGestureEvent aEvent( static_cast < XDragGestureRecognizer * > (this), dragAction,
467 0 : dragOriginX, dragOriginY, dragSource, triggerEvent );
468 :
469 0 : while( aIterator.hasMoreElements() )
470 : {
471 : // FIXME: this can be simplified as soon as the Iterator has a remove method
472 0 : Reference< XInterface > xElement( aIterator.next() );
473 :
474 : try
475 : {
476 : // this may result in a runtime exception
477 0 : Reference < XDragGestureListener > xListener( xElement, UNO_QUERY );
478 :
479 0 : if( xListener.is() )
480 : {
481 0 : xListener->dragGestureRecognized( aEvent );
482 0 : nRet++;
483 0 : }
484 : }
485 0 : catch (const RuntimeException&)
486 : {
487 0 : pContainer->removeInterface( xElement );
488 : }
489 0 : }
490 : }
491 :
492 0 : return nRet;
493 : }
494 :
495 : //==================================================================================================
496 : // DNDListenerContainer::acceptDrag
497 : //==================================================================================================
498 :
499 0 : void SAL_CALL DNDListenerContainer::acceptDrag( sal_Int8 dragOperation ) throw (RuntimeException)
500 : {
501 0 : if( m_xDropTargetDragContext.is() )
502 : {
503 0 : m_xDropTargetDragContext->acceptDrag( dragOperation );
504 0 : m_xDropTargetDragContext.clear();
505 : }
506 0 : }
507 :
508 : //==================================================================================================
509 : // DNDListenerContainer::rejectDrag
510 : //==================================================================================================
511 :
512 0 : void SAL_CALL DNDListenerContainer::rejectDrag( ) throw (RuntimeException)
513 : {
514 : // nothing to do here
515 0 : }
516 :
517 : //==================================================================================================
518 : // DNDListenerContainer::acceptDrop
519 : //==================================================================================================
520 :
521 0 : void SAL_CALL DNDListenerContainer::acceptDrop( sal_Int8 dropOperation ) throw (RuntimeException)
522 : {
523 0 : if( m_xDropTargetDropContext.is() )
524 0 : m_xDropTargetDropContext->acceptDrop( dropOperation );
525 0 : }
526 :
527 : //==================================================================================================
528 : // DNDListenerContainer::rejectDrop
529 : //==================================================================================================
530 :
531 0 : void SAL_CALL DNDListenerContainer::rejectDrop( ) throw (RuntimeException)
532 : {
533 : // nothing to do here
534 0 : }
535 :
536 : //==================================================================================================
537 : // DNDListenerContainer::dropComplete
538 : //==================================================================================================
539 :
540 0 : void SAL_CALL DNDListenerContainer::dropComplete( sal_Bool success ) throw (RuntimeException)
541 : {
542 0 : if( m_xDropTargetDropContext.is() )
543 : {
544 0 : m_xDropTargetDropContext->dropComplete( success );
545 0 : m_xDropTargetDropContext.clear();
546 : }
547 0 : }
548 :
549 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|