Q3StoredDrag Class

The Q3StoredDrag class provides a simple stored-value drag object for arbitrary MIME data. More...

Header: #include <Q3StoredDrag>
Inherits: Q3DragObject
Inherited By:

Q3ColorDrag and Q3UriDrag

Public Functions

Q3StoredDrag(const char * mimeType, QWidget * dragSource = 0, const char * name = 0)
~Q3StoredDrag()
virtual void setEncodedData(const QByteArray & data)

Reimplemented Public Functions

virtual QByteArray encodedData(const char * format) const
virtual const char * format(int i) const

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 1 signal inherited from QObject
  • 1 static public member inherited from Q3DragObject
  • 7 static public members inherited from QObject
  • 1 protected function inherited from Q3DragObject
  • 8 protected functions inherited from QObject

Detailed Description

The Q3StoredDrag class provides a simple stored-value drag object for arbitrary MIME data.

When a block of data has only one representation, you can use a Q3StoredDrag to hold it.

For more information about drag and drop, see the Q3DragObject class and the drag and drop documentation.

Member Function Documentation

Q3StoredDrag::Q3StoredDrag(const char * mimeType, QWidget * dragSource = 0, const char * name = 0)

Constructs a Q3StoredDrag. The dragSource and name are passed to the Q3DragObject constructor, and the format is set to mimeType.

The data will be unset. Use setEncodedData() to set it.

Q3StoredDrag::~Q3StoredDrag()

Destroys the drag object.

[virtual] QByteArray Q3StoredDrag::encodedData(const char * format) const

Reimplemented from QMimeSource::encodedData().

Returns the stored data in the format given.

See also setEncodedData().

[virtual] const char * Q3StoredDrag::format(int i) const

Reimplemented from QMimeSource::format().

[virtual] void Q3StoredDrag::setEncodedData(const QByteArray & data)

Sets the encoded data of this drag object. The encoded data is delivered to drop sites; it must be in a strictly defined and portable format.

The drag object can't be dropped (by the user) until this function has been called.

See also encodedData().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.