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 <dndevdis.hxx>
22 : #include <dndlcon.hxx>
23 : #include <window.h>
24 : #include <svdata.hxx>
25 :
26 : #include <osl/mutex.hxx>
27 : #include <vcl/svapp.hxx>
28 :
29 : using namespace ::cppu;
30 : using namespace ::com::sun::star::uno;
31 : using namespace ::com::sun::star::lang;
32 : using namespace ::com::sun::star::datatransfer;
33 : using namespace ::com::sun::star::datatransfer::dnd;
34 :
35 : //==================================================================================================
36 : // DNDEventDispatcher::DNDEventDispatcher
37 : //==================================================================================================
38 :
39 0 : DNDEventDispatcher::DNDEventDispatcher( Window * pTopWindow ):
40 : m_pTopWindow( pTopWindow ),
41 0 : m_pCurrentWindow( NULL )
42 : {
43 0 : }
44 :
45 : //==================================================================================================
46 : // DNDEventDispatcher::~DNDEventDispatcher
47 : //==================================================================================================
48 :
49 0 : DNDEventDispatcher::~DNDEventDispatcher()
50 : {
51 0 : }
52 :
53 0 : Window* DNDEventDispatcher::findTopLevelWindow(Point location)
54 : {
55 0 : SolarMutexGuard aSolarGuard;
56 :
57 : // find the window that is toplevel for this coordinates
58 : // because those coordinates come from outside, they must be mirrored if RTL layout is active
59 0 : if( Application::GetSettings().GetLayoutRTL() )
60 0 : m_pTopWindow->ImplMirrorFramePos( location );
61 0 : Window * pChildWindow = m_pTopWindow->ImplFindWindow( location );
62 :
63 0 : if( NULL == pChildWindow )
64 0 : pChildWindow = m_pTopWindow;
65 :
66 0 : while( pChildWindow->ImplGetClientWindow() )
67 0 : pChildWindow = pChildWindow->ImplGetClientWindow();
68 :
69 0 : if( pChildWindow->ImplIsAntiparallel() )
70 0 : pChildWindow->ImplReMirror( location );
71 :
72 0 : return pChildWindow;
73 : }
74 :
75 : //==================================================================================================
76 : // DNDEventDispatcher::drop
77 : //==================================================================================================
78 :
79 0 : void SAL_CALL DNDEventDispatcher::drop( const DropTargetDropEvent& dtde )
80 : throw(RuntimeException)
81 : {
82 0 : osl::MutexGuard aImplGuard( m_aMutex );
83 :
84 0 : Point location( dtde.LocationX, dtde.LocationY );
85 :
86 0 : Window* pChildWindow = findTopLevelWindow(location);
87 :
88 : // handle the case that drop is in an other vcl window than the last dragOver
89 0 : if( pChildWindow != m_pCurrentWindow )
90 : {
91 : // fire dragExit on listeners of previous window
92 0 : fireDragExitEvent( m_pCurrentWindow );
93 :
94 : fireDragEnterEvent( pChildWindow, static_cast < XDropTargetDragContext * > (this),
95 0 : dtde.DropAction, location, dtde.SourceActions, m_aDataFlavorList );
96 : }
97 :
98 0 : sal_Int32 nListeners = 0;
99 :
100 : // send drop event to the child window
101 : nListeners = fireDropEvent( pChildWindow, dtde.Context, dtde.DropAction,
102 0 : location, dtde.SourceActions, dtde.Transferable );
103 :
104 : // reject drop if no listeners found
105 0 : if( nListeners == 0 ) {
106 : OSL_TRACE( "rejecting drop due to missing listeners." );
107 0 : dtde.Context->rejectDrop();
108 : }
109 :
110 : // this is a drop -> no further drag overs
111 0 : m_pCurrentWindow = NULL;
112 0 : m_aDataFlavorList.realloc( 0 );
113 0 : }
114 :
115 : //==================================================================================================
116 : // DNDEventDispatcher::dragEnter
117 : //==================================================================================================
118 :
119 0 : void SAL_CALL DNDEventDispatcher::dragEnter( const DropTargetDragEnterEvent& dtdee )
120 : throw(RuntimeException)
121 : {
122 0 : osl::MutexGuard aImplGuard( m_aMutex );
123 0 : Point location( dtdee.LocationX, dtdee.LocationY );
124 :
125 0 : Window * pChildWindow = findTopLevelWindow(location);
126 :
127 : // assume pointer write operation to be atomic
128 0 : m_pCurrentWindow = pChildWindow;
129 0 : m_aDataFlavorList = dtdee.SupportedDataFlavors;
130 :
131 : // fire dragEnter on listeners of current window
132 : sal_Int32 nListeners = fireDragEnterEvent( pChildWindow, dtdee.Context, dtdee.DropAction, location,
133 0 : dtdee.SourceActions, dtdee.SupportedDataFlavors );
134 :
135 : // reject drag if no listener found
136 0 : if( nListeners == 0 ) {
137 : OSL_TRACE( "rejecting drag enter due to missing listeners." );
138 0 : dtdee.Context->rejectDrag();
139 0 : }
140 :
141 0 : }
142 :
143 : //==================================================================================================
144 : // DNDEventDispatcher::dragExit
145 : //==================================================================================================
146 :
147 0 : void SAL_CALL DNDEventDispatcher::dragExit( const DropTargetEvent& /*dte*/ )
148 : throw(RuntimeException)
149 : {
150 0 : osl::MutexGuard aImplGuard( m_aMutex );
151 :
152 0 : fireDragExitEvent( m_pCurrentWindow );
153 :
154 : // reset member values
155 0 : m_pCurrentWindow = NULL;
156 0 : m_aDataFlavorList.realloc( 0 );
157 0 : }
158 :
159 : //==================================================================================================
160 : // DNDEventDispatcher::dragOver
161 : //==================================================================================================
162 :
163 0 : void SAL_CALL DNDEventDispatcher::dragOver( const DropTargetDragEvent& dtde )
164 : throw(RuntimeException)
165 : {
166 0 : osl::MutexGuard aImplGuard( m_aMutex );
167 :
168 0 : Point location( dtde.LocationX, dtde.LocationY );
169 : sal_Int32 nListeners;
170 :
171 0 : Window * pChildWindow = findTopLevelWindow(location);
172 :
173 0 : if( pChildWindow != m_pCurrentWindow )
174 : {
175 : // fire dragExit on listeners of previous window
176 0 : fireDragExitEvent( m_pCurrentWindow );
177 :
178 : // remember new window
179 0 : m_pCurrentWindow = pChildWindow;
180 :
181 : // fire dragEnter on listeners of current window
182 : nListeners = fireDragEnterEvent( pChildWindow, dtde.Context, dtde.DropAction, location,
183 0 : dtde.SourceActions, m_aDataFlavorList );
184 : }
185 : else
186 : {
187 : // fire dragOver on listeners of current window
188 : nListeners = fireDragOverEvent( pChildWindow, dtde.Context, dtde.DropAction, location,
189 0 : dtde.SourceActions );
190 : }
191 :
192 : // reject drag if no listener found
193 0 : if( nListeners == 0 )
194 : {
195 : OSL_TRACE( "rejecting drag over due to missing listeners." );
196 0 : dtde.Context->rejectDrag();
197 0 : }
198 0 : }
199 :
200 : //==================================================================================================
201 : // DNDEventDispatcher::dropActionChanged
202 : //==================================================================================================
203 :
204 0 : void SAL_CALL DNDEventDispatcher::dropActionChanged( const DropTargetDragEvent& dtde )
205 : throw(RuntimeException)
206 : {
207 0 : osl::MutexGuard aImplGuard( m_aMutex );
208 :
209 0 : Point location( dtde.LocationX, dtde.LocationY );
210 : sal_Int32 nListeners;
211 :
212 0 : Window* pChildWindow = findTopLevelWindow(location);
213 :
214 0 : if( pChildWindow != m_pCurrentWindow )
215 : {
216 : // fire dragExit on listeners of previous window
217 0 : fireDragExitEvent( m_pCurrentWindow );
218 :
219 : // remember new window
220 0 : m_pCurrentWindow = pChildWindow;
221 :
222 : // fire dragEnter on listeners of current window
223 : nListeners = fireDragEnterEvent( pChildWindow, dtde.Context, dtde.DropAction, location,
224 0 : dtde.SourceActions, m_aDataFlavorList );
225 : }
226 : else
227 : {
228 : // fire dropActionChanged on listeners of current window
229 : nListeners = fireDropActionChangedEvent( pChildWindow, dtde.Context, dtde.DropAction, location,
230 0 : dtde.SourceActions );
231 : }
232 :
233 : // reject drag if no listener found
234 0 : if( nListeners == 0 )
235 : {
236 : OSL_TRACE( "rejecting dropActionChanged due to missing listeners." );
237 0 : dtde.Context->rejectDrag();
238 0 : }
239 0 : }
240 :
241 :
242 : //==================================================================================================
243 : // DNDEventDispatcher::dragGestureRecognized
244 : //==================================================================================================
245 :
246 0 : void SAL_CALL DNDEventDispatcher::dragGestureRecognized( const DragGestureEvent& dge )
247 : throw(RuntimeException)
248 : {
249 0 : osl::MutexGuard aImplGuard( m_aMutex );
250 :
251 0 : Point origin( dge.DragOriginX, dge.DragOriginY );
252 :
253 0 : Window* pChildWindow = findTopLevelWindow(origin);
254 :
255 0 : fireDragGestureEvent( pChildWindow, dge.DragSource, dge.Event, origin, dge.DragAction );
256 0 : }
257 :
258 : //==================================================================================================
259 : // DNDEventDispatcher::disposing
260 : //==================================================================================================
261 :
262 0 : void SAL_CALL DNDEventDispatcher::disposing( const EventObject& )
263 : throw(RuntimeException)
264 : {
265 0 : }
266 :
267 : //==================================================================================================
268 : // DNDEventDispatcher::acceptDrag
269 : //==================================================================================================
270 :
271 0 : void SAL_CALL DNDEventDispatcher::acceptDrag( sal_Int8 /*dropAction*/ ) throw(RuntimeException)
272 : {
273 0 : }
274 :
275 : //==================================================================================================
276 : // DNDEventDispatcher::rejectDrag
277 : //==================================================================================================
278 :
279 0 : void SAL_CALL DNDEventDispatcher::rejectDrag() throw(RuntimeException)
280 : {
281 0 : }
282 :
283 : //==================================================================================================
284 : // DNDEventDispatcher::fireDragEnterEvent
285 : //==================================================================================================
286 :
287 0 : sal_Int32 DNDEventDispatcher::fireDragEnterEvent( Window *pWindow,
288 : const Reference< XDropTargetDragContext >& xContext, const sal_Int8 nDropAction,
289 : const Point& rLocation, const sal_Int8 nSourceActions, const Sequence< DataFlavor >& aFlavorList
290 : )
291 : throw(RuntimeException)
292 : {
293 0 : sal_Int32 n = 0;
294 :
295 0 : if( pWindow && pWindow->IsInputEnabled() && ! pWindow->IsInModalMode() )
296 : {
297 0 : SolarMutexClearableGuard aSolarGuard;
298 :
299 : // set an UI lock
300 0 : pWindow->IncrementLockCount();
301 :
302 : // query DropTarget from window
303 0 : Reference< XDropTarget > xDropTarget = pWindow->GetDropTarget();
304 :
305 0 : if( xDropTarget.is() )
306 : {
307 : // retrieve relative mouse position
308 0 : Point relLoc = pWindow->ImplFrameToOutput( rLocation );
309 0 : aSolarGuard.clear();
310 :
311 0 : n = static_cast < DNDListenerContainer * > ( xDropTarget.get() )->fireDragEnterEvent(
312 0 : xContext, nDropAction, relLoc.X(), relLoc.Y(), nSourceActions, aFlavorList );
313 0 : }
314 : }
315 :
316 0 : return n;
317 : }
318 :
319 : //==================================================================================================
320 : // DNDEventDispatcher::fireDragOverEvent
321 : //==================================================================================================
322 :
323 0 : sal_Int32 DNDEventDispatcher::fireDragOverEvent( Window *pWindow,
324 : const Reference< XDropTargetDragContext >& xContext, const sal_Int8 nDropAction,
325 : const Point& rLocation, const sal_Int8 nSourceActions
326 : )
327 : throw(RuntimeException)
328 : {
329 0 : sal_Int32 n = 0;
330 :
331 0 : if( pWindow && pWindow->IsInputEnabled() && ! pWindow->IsInModalMode() )
332 : {
333 0 : SolarMutexClearableGuard aSolarGuard;
334 :
335 : // query DropTarget from window
336 0 : Reference< XDropTarget > xDropTarget = pWindow->GetDropTarget();
337 :
338 0 : if( xDropTarget.is() )
339 : {
340 : // retrieve relative mouse position
341 0 : Point relLoc = pWindow->ImplFrameToOutput( rLocation );
342 0 : aSolarGuard.clear();
343 :
344 0 : n = static_cast < DNDListenerContainer * > ( xDropTarget.get() )->fireDragOverEvent(
345 0 : xContext, nDropAction, relLoc.X(), relLoc.Y(), nSourceActions );
346 0 : }
347 : }
348 :
349 0 : return n;
350 : }
351 :
352 : //==================================================================================================
353 : // DNDEventDispatcher::fireDragExitEvent
354 : //==================================================================================================
355 :
356 0 : sal_Int32 DNDEventDispatcher::fireDragExitEvent( Window *pWindow ) throw(RuntimeException)
357 : {
358 0 : sal_Int32 n = 0;
359 :
360 0 : if( pWindow && pWindow->IsInputEnabled() && ! pWindow->IsInModalMode() )
361 : {
362 0 : SolarMutexClearableGuard aGuard;
363 :
364 : // query DropTarget from window
365 0 : Reference< XDropTarget > xDropTarget = pWindow->GetDropTarget();
366 :
367 0 : aGuard.clear();
368 :
369 0 : if( xDropTarget.is() )
370 0 : n = static_cast < DNDListenerContainer * > ( xDropTarget.get() )->fireDragExitEvent();
371 :
372 : // release UI lock
373 0 : pWindow->DecrementLockCount();
374 : }
375 :
376 0 : return n;
377 : }
378 :
379 : //==================================================================================================
380 : // DNDEventDispatcher::fireDropActionChangedEvent
381 : //==================================================================================================
382 :
383 0 : sal_Int32 DNDEventDispatcher::fireDropActionChangedEvent( Window *pWindow,
384 : const Reference< XDropTargetDragContext >& xContext, const sal_Int8 nDropAction,
385 : const Point& rLocation, const sal_Int8 nSourceActions
386 : )
387 : throw(RuntimeException)
388 : {
389 0 : sal_Int32 n = 0;
390 :
391 0 : if( pWindow && pWindow->IsInputEnabled() && ! pWindow->IsInModalMode() )
392 : {
393 0 : SolarMutexClearableGuard aGuard;
394 :
395 : // query DropTarget from window
396 0 : Reference< XDropTarget > xDropTarget = pWindow->GetDropTarget();
397 :
398 0 : if( xDropTarget.is() )
399 : {
400 : // retrieve relative mouse position
401 0 : Point relLoc = pWindow->ImplFrameToOutput( rLocation );
402 0 : aGuard.clear();
403 :
404 0 : n = static_cast < DNDListenerContainer * > ( xDropTarget.get() )->fireDropActionChangedEvent(
405 0 : xContext, nDropAction, relLoc.X(), relLoc.Y(), nSourceActions );
406 0 : }
407 : }
408 :
409 0 : return n;
410 : }
411 :
412 : //==================================================================================================
413 : // DNDEventDispatcher::fireDropEvent
414 : //==================================================================================================
415 :
416 0 : sal_Int32 DNDEventDispatcher::fireDropEvent( Window *pWindow,
417 : const Reference< XDropTargetDropContext >& xContext, const sal_Int8 nDropAction, const Point& rLocation,
418 : const sal_Int8 nSourceActions, const Reference< XTransferable >& xTransferable
419 : )
420 : throw(RuntimeException)
421 : {
422 0 : sal_Int32 n = 0;
423 :
424 0 : if( pWindow && pWindow->IsInputEnabled() && ! pWindow->IsInModalMode() )
425 : {
426 0 : SolarMutexClearableGuard aGuard;
427 :
428 : // query DropTarget from window
429 0 : Reference< XDropTarget > xDropTarget = pWindow->GetDropTarget();
430 :
431 : // window may be destroyed in drop event handler
432 0 : ImplDelData aDelData;
433 0 : pWindow->ImplAddDel( &aDelData );
434 :
435 0 : if( xDropTarget.is() )
436 : {
437 : // retrieve relative mouse position
438 0 : Point relLoc = pWindow->ImplFrameToOutput( rLocation );
439 0 : aGuard.clear();
440 :
441 0 : n = static_cast < DNDListenerContainer * > ( xDropTarget.get() )->fireDropEvent(
442 0 : xContext, nDropAction, relLoc.X(), relLoc.Y(), nSourceActions, xTransferable );
443 : }
444 :
445 0 : if ( !aDelData.IsDead() )
446 : {
447 0 : pWindow->ImplRemoveDel( &aDelData );
448 : // release UI lock
449 0 : pWindow->DecrementLockCount();
450 0 : }
451 :
452 : }
453 :
454 0 : return n;
455 : }
456 :
457 : //==================================================================================================
458 : // DNDEventDispatcher::fireDragGestureRecognized
459 : //==================================================================================================
460 :
461 0 : sal_Int32 DNDEventDispatcher::fireDragGestureEvent( Window *pWindow,
462 : const Reference< XDragSource >& xSource, const Any event,
463 : const Point& rOrigin, const sal_Int8 nDragAction
464 : )
465 : throw(::com::sun::star::uno::RuntimeException)
466 : {
467 0 : sal_Int32 n = 0;
468 :
469 0 : if( pWindow && pWindow->IsInputEnabled() && ! pWindow->IsInModalMode() )
470 : {
471 0 : SolarMutexClearableGuard aGuard;
472 :
473 : // query DropTarget from window
474 0 : Reference< XDragGestureRecognizer > xDragGestureRecognizer = pWindow->GetDragGestureRecognizer();
475 :
476 0 : if( xDragGestureRecognizer.is() )
477 : {
478 : // retrieve relative mouse position
479 0 : Point relLoc = pWindow->ImplFrameToOutput( rOrigin );
480 0 : aGuard.clear();
481 :
482 0 : n = static_cast < DNDListenerContainer * > ( xDragGestureRecognizer.get() )->fireDragGestureEvent(
483 0 : nDragAction, relLoc.X(), relLoc.Y(), xSource, event );
484 : }
485 :
486 : // release UI lock
487 0 : pWindow->DecrementLockCount();
488 : }
489 :
490 0 : return n;
491 : }
492 :
493 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|