QBluetoothLocalDevice ClassThe QBluetoothLocalDevice class enables access to the local Bluetooth device. More... #include <QBluetoothLocalDevice> Inherits: QObject. Public Types
Public Functions
Public Slots
Signals
Static Public Members
Additional Inherited MembersDetailed DescriptionThe QBluetoothLocalDevice class enables access to the local Bluetooth device. QBluetoothLocalDevice provides functions for getting and setting the state of local Bluetooth devices. Member Type Documentation
|
Constant | Value | Description |
---|---|---|
QBluetoothLocalDevice::NoError | 0 | No known error |
QBluetoothLocalDevice::PairingError | 1 | Error in pairing |
QBluetoothLocalDevice::UnknownError | 100 | Unknown error |
This enum describes the most of the local Bluetooth device.
Constant | Value | Description |
---|---|---|
QBluetoothLocalDevice::HostPoweredOff | 0 | Power off the device |
QBluetoothLocalDevice::HostConnectable | 1 | Remote Bluetooth devices can connect to the local Bluetooth device if they have previously been paired with it or otherwise know its address. This powers up the device if it was powered off. |
QBluetoothLocalDevice::HostDiscoverable | 2 | Remote Bluetooth devices can discover the presence of the local Bluetooth device. The device will also be connectable, and powered on. |
QBluetoothLocalDevice::HostDiscoverableLimitedInquiry | 3 | Remote Bluetooth devices can discover the presence of the local Bluetooth device when performing a limited inquiry. This should be used for locating services that are only made discoverable for a limited period of time. This can speed up discovery between gaming devices, as service discovery can be skipped on devices not in LimitedInquiry mode. In this mode, the device will be connectable and powered on, if required. |
This enum describes the pairing state between the two Bluetooth devices.
Constant | Value | Description |
---|---|---|
QBluetoothLocalDevice::Unpaired | 0 | The Bluetooth devices are not paired. |
QBluetoothLocalDevice::Paired | 1 | The Bluetooth devices are paired. The system will prompt the user for authorization when the remote device initiates a connection to the local device. |
QBluetoothLocalDevice::AuthorizedPaired | 2 | The Bluetooth devices are paired. The system will not prompt the user for authorization when the remote device initiates a connection to the local device. |
Constructs a QBluetoothLocalDevice with parent.
Construct new QBluetoothLocalDevice for address.
Destroys the QBluetoothLocalDevice.
Returns the MAC address of this Bluetooth device.
Returns a list of all available local Bluetooth devices.
Signal emitted if there's an exceptional error while pairing.
Returns the current host mode of this local Bluetooth device.
See also setHostMode().
The state of the host has transitioned to a different HostMode.
Returns true if the QBluetoothLocalDevice represents an available local Bluetooth device; otherwise return false.
Returns the name assgined by the user to this Bluetooth device.
To be called after getting a pairingDisplayConfirmation(). The accept parameter either accepts the pairing or rejects it.
Signal by some platforms to display a pairing confirmation dialog for address. The user is asked to confirm the pin is the same on both devices. QBluetoothLocalDevice::pairingConfirmation(bool) must be called to indicate if the user accepts or rejects the displayed pin.
Signal by some platforms to display the pin to the user for address. The pin is automatically generated, and does not need to be confirmed.
Pairing has completed with address. Current pairing status is in pairing.
Returns the current bluetooth pairing status of address, if it's unpaired, paired, or paired and authorized.
Powers on the device after returning it to the hostMode() state, if it was powered off.
Set the pairing status with address. The results are returned by the signal, pairingFinished(). Caution: creating a pairing may take minutes, and may require the user to acknowledge.
Sets the host mode of this local Bluetooth device to mode.
See also hostMode().