本文整理汇总了C++中QBluetoothLocalDevice::isValid方法的典型用法代码示例。如果您正苦于以下问题:C++ QBluetoothLocalDevice::isValid方法的具体用法?C++ QBluetoothLocalDevice::isValid怎么用?C++ QBluetoothLocalDevice::isValid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QBluetoothLocalDevice
的用法示例。
在下文中一共展示了QBluetoothLocalDevice::isValid方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: tst_construction
void tst_QBluetoothLocalDevice::tst_construction()
{
QBluetoothLocalDevice localDevice;
QVERIFY(localDevice.isValid());
QBluetoothLocalDevice anotherDevice = new QBluetoothLocalDevice(QBluetoothAddress(000000000000));
QVERIFY(anotherDevice.isValid());
QVERIFY(anotherDevice.address().toUInt64() != 0);
}
示例2: showStatusMessage
MdBluetoothCom::MdBluetoothCom(QObject *parent, QString mdServiceName)
: MdAbstractCom(parent), sDiscoveryAgent (0), socket (0), sdNeeded(Yes), mdServiceName(mdServiceName)
{
QBluetoothLocalDevice localDevice;
// Check if Bluetooth is available on this device
if (localDevice.isValid()) {
// Turn Bluetooth on
localDevice.powerOn();
// Read local device name
localDeviceName = localDevice.name();
qDebug() << "local bluetooth device name: " << localDeviceName;
// Make it visible to others
//localDevice.setHostMode(QBluetoothLocalDevice::HostDiscoverable);
// Get connected devices
remotes = localDevice.connectedDevices();
startServiceDiscovery();
} else {
qDebug() << "bluetooth not available!";
emit showStatusMessage( "Bluetooth: not available!" );
}
}
示例3: localDevice
void MyClass::localDevice() {
//! [turningon]
QBluetoothLocalDevice localDevice;
QString localDeviceName;
// Check if Bluetooth is available on this device
if (localDevice.isValid()) {
// Turn Bluetooth on
localDevice.powerOn();
// Read local device name
localDeviceName = localDevice.name();
// Make it visible to others
localDevice.setHostMode(QBluetoothLocalDevice::HostDiscoverable);
// Get connected devices
QList<QBluetoothAddress> remotes;
remotes = localDevice.connectedDevices();
}
//! [turningon]
}
示例4: tst_pairDevice
void tst_QBluetoothLocalDevice::tst_pairDevice()
{
QFETCH(QBluetoothAddress, deviceAddress);
QFETCH(QBluetoothLocalDevice::Pairing, pairingExpected);
if (!QBluetoothLocalDevice::allDevices().count())
QSKIP("Skipping test due to missing Bluetooth device");
qDebug() << "tst_pairDevice(): address=" << deviceAddress.toString() << "pairingModeExpected="
<< static_cast<int>(pairingExpected);
QBluetoothLocalDevice localDevice;
//powerOn if not already
localDevice.powerOn();
QSignalSpy pairingSpy(&localDevice, SIGNAL(pairingFinished(const QBluetoothAddress &,QBluetoothLocalDevice::Pairing)) );
// there should be no signals yet
QVERIFY(pairingSpy.isValid());
QVERIFY(pairingSpy.isEmpty());
QVERIFY(localDevice.isValid());
localDevice.requestPairing(deviceAddress, pairingExpected);
// async, wait for it
QTRY_VERIFY(pairingSpy.count() > 0);
// test the actual signal values.
QList<QVariant> arguments = pairingSpy.takeFirst();
QBluetoothAddress address = qvariant_cast<QBluetoothAddress>(arguments.at(0));
QBluetoothLocalDevice::Pairing pairingResult = qvariant_cast<QBluetoothLocalDevice::Pairing>(arguments.at(1));
QCOMPARE(deviceAddress, address);
QCOMPARE(pairingExpected, pairingResult);
QCOMPARE(pairingExpected, localDevice.pairingStatus(deviceAddress));
}
示例5: tst_construction
void tst_QBluetoothLocalDevice::tst_construction()
{
if (!QBluetoothLocalDevice::allDevices().count())
QSKIP("Skipping test due to missing Bluetooth device");
QBluetoothLocalDevice localDevice;
QVERIFY(localDevice.isValid());
QBluetoothLocalDevice anotherDevice(QBluetoothAddress(000000000000));
QVERIFY(anotherDevice.isValid());
QVERIFY(anotherDevice.address().toUInt64() != 0);
}
示例6: tst_isValid
void tst_QBluetoothLocalDevice::tst_isValid()
{
QBluetoothLocalDevice localDevice;
QVERIFY(localDevice.isValid());
/*
//TODO the above should really be the following once QBluetoothLocalDevice has been fixed
if (!QBluetoothLocalDevice::allDevices().count())
QVERIFY(!localDevice.isValid());
else
QVERIFY(localDevice.isValid());
*/
}
示例7: tst_isValid
void tst_QBluetoothLocalDevice::tst_isValid()
{
QBluetoothLocalDevice localDevice;
QVERIFY(localDevice.isValid());
}