Qt 3 Support Members for QDropEventThe following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code. Public Types
Public Functions
Member Type Documentation
|
Constant | Value | Description |
---|---|---|
QDropEvent::Copy | 0 | The default action. The source simply uses the data provided in the operation. |
QDropEvent::Link | 1 | The source should somehow create a link to the location specified by the data. |
QDropEvent::Move | 2 | The source should somehow move the object from the location specified by the data to a new location. |
QDropEvent::Private | 3 | The target has special knowledge of the MIME type, which the source should respond to in a similar way to a Copy. |
QDropEvent::UserAction | Private | The source and target can co-operate using special actions. This feature is not currently supported. |
The Link and Move actions only makes sense if the data is a reference, for example, text/uri-list file lists (see QUriDrag).
Call setAccepted(accept) instead.
Call this to indicate that the action described by action() is accepted (i.e. if accept is true, which is the default), not merely the default copy action. If you call acceptAction(true), there is no need to also call accept(true).
Use dropAction() instead.
The table below shows the correspondance between the return type of action() and the return type of dropAction().
Old enum value | New enum value |
---|---|
QDropEvent::Copy | Qt::CopyAction |
QDropEvent::Move | Qt::MoveAction |
QDropEvent::Link | Qt::LinkAction |
other | Qt::CopyAction |
The encoded data is in f. Use QDropEvent::encodedData().
Reimplemented from QMimeSource::encodedData().
Returns a byte array containing the drag's data, in format.
data() normally needs to get the data from the drag source, which is potentially very slow, so it's advisable to call this function only if you're sure that you will need the data in that particular format.
The resulting data will have a size of 0 if the format was not available.
See also format() and QByteArray::size().
Reimplemented from QMimeSource::format().
Returns a string describing one of the available data types for this drag. Common examples are "text/plain" and "image/gif". If n is less than zero or greater than the number of available data types, format() returns 0.
This function is provided mainly for debugging. Most drop targets will use provides().
See also data() and provides().
Reimplemented from QMimeSource::provides().
Returns true if this event provides format mimeType; otherwise returns false.
See also data().
Sets the drop to happen at the given point. You do not normally need to use this as it will be set internally before your widget receives the drop event.
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.
All other trademarks are property of their respective owners. Privacy Policy
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.
Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.