QBluetoothTransferRequest Class▲
-
Header: QBluetoothTransferRequest
-
Since: Qt 5.2
-
qmake: QT += bluetooth
Detailed Description▲
QBluetoothTransferRequest is part of the Bluetooth Transfer API and is the class holding the information necessary to initiate a transfer over Bluetooth.
See Also▲
Member Type Documentation▲
enum QBluetoothTransferRequest::Attribute▲
Attribute codes for QBluetoothTransferRequest and QBluetoothTransferReply.
Constant |
Value |
Description |
---|---|---|
QBluetoothTransferRequest::DescriptionAttribute |
0 |
A textual description of the object being transferred. May be displayed in the UI of the remote device. |
QBluetoothTransferRequest::TimeAttribute |
1 |
Time attribute of the object being transferred. |
QBluetoothTransferRequest::TypeAttribute |
2 |
MIME type of the object being transferred. |
QBluetoothTransferRequest::LengthAttribute |
3 |
Length in bytes of the object being transferred. |
QBluetoothTransferRequest::NameAttribute |
4 |
Name of the object being transferred. May be displayed in the UI of the remote device. |
Member Function Documentation▲
[explicit] QBluetoothTransferRequest::QBluetoothTransferRequest(const QBluetoothAddress &address = QBluetoothAddress())▲
Constructs a new Bluetooth transfer request to the device with address.
QBluetoothTransferRequest::QBluetoothTransferRequest(const QBluetoothTransferRequest &other)▲
Constructs a new Bluetooth transfer request that is a copy of other.
QBluetoothTransferRequest::~QBluetoothTransferRequest()▲
Destorys the Bluetooth transfer request.
QBluetoothAddress QBluetoothTransferRequest::address() const▲
Returns the address associated with the Bluetooth transfer request.
QVariant QBluetoothTransferRequest::attribute(QBluetoothTransferRequest::Attribute code, const QVariant &defaultValue = QVariant()) const▲
Returns the attribute associated with code. If the attribute has not been set, it returns defaultValue.
See Also▲
See also setAttribute(), QBluetoothTransferRequest::Attribute
void QBluetoothTransferRequest::setAttribute(QBluetoothTransferRequest::Attribute code, const QVariant &value)▲
Sets the attribute associated with code to value. If the attribute is already set, the previous value is discarded. If value is an invalid QVariant, the attribute is unset.
See Also▲
See also attribute(), QBluetoothTransferRequest::Attribute
bool QBluetoothTransferRequest::operator!=(const QBluetoothTransferRequest &other) const▲
QBluetoothTransferRequest &QBluetoothTransferRequest::operator=(const QBluetoothTransferRequest &other)▲
Creates a copy of other.
bool QBluetoothTransferRequest::operator==(const QBluetoothTransferRequest &other) const▲
Returns true if this object is the same as other.