LibreOffice
LibreOffice 24.8 SDK API Reference
Loading...
Searching...
No Matches
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
21module com { module sun { module star { module datatransfer { module dnd {
22
23 published interface XDragSourceListener;
24
37{
38
47
59 long getDefaultCursor( [in] byte dragAction )
61
95 [in] DragGestureEvent trigger,
96 [in] byte sourceActions,
97 [in] long cursor,
98 [in] long image,
100 [in] XDragSourceListener listener );
101};
102
103
104}; }; }; }; };
105
106/* 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:27
Interface to be implemented by objects used to provide data for a data transfer operation.
Definition XTransferable.idl:30
This interface must be implemented by any drag gesture recognizer implementation that a drag source s...
Definition XDragSourceListener.idl:31
This interface is implemented by a view or window that supports drag operations and will be received ...
Definition XDragSource.idl:37
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 generated_idl_chapter_refs.idl:452
Definition Ambiguous.idl:20
A DragGestureEvent is passed to the method XDragGestureListener::dragGestureRecognized() when a parti...
Definition DragGestureEvent.idl:32