LibreOffice
LibreOffice 7.3 SDK API Reference
XDragSource.idl
Go to the documentation of this file.
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#ifndef __com_sun_star_datatransfer_dnd_XDragSource_idl__
21#define __com_sun_star_datatransfer_dnd_XDragSource_idl__
22
27
28
29module com { module sun { module star { module datatransfer { module dnd {
30
31 published interface XDragSourceListener;
32
45{
46
55
67 long getDefaultCursor( [in] byte dragAction )
69
103 [in] DragGestureEvent trigger,
104 [in] byte sourceActions,
105 [in] long cursor,
106 [in] long image,
108 [in] XDragSourceListener listener );
109};
110
111
112}; }; }; }; };
113
114#endif
115
116/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This exception is thrown to indicate that a method has passed an illegal or inappropriate argument.
Definition: IllegalArgumentException.idl:31
Interface to be implemented by objects used to provide data for a data transfer operation.
Definition: XTransferable.idl:38
This interface must be implemented by any drag gesture recognizer implementation that a drag source s...
Definition: XDragSourceListener.idl:38
This interface is implemented by a view or window that supports drag operations and will be received ...
Definition: XDragSource.idl:45
void startDrag([in] DragGestureEvent trigger, [in] byte sourceActions, [in] long cursor, [in] long image, [in] com::sun::star::datatransfer::XTransferable trans, [in] XDragSourceListener listener)
Starts the drag operation.
long getDefaultCursor([in] byte dragAction)
To get the default cursor for a specified drag action.
boolean isDragImageSupported()
In order to query if drag image support is available.
base interface of all UNO interfaces
Definition: XInterface.idl:48
Definition: Ambiguous.idl:22
A DragGestureEvent is passed to the method XDragGestureListener::dragGestureRecognized() when a parti...
Definition: DragGestureEvent.idl:37