/usr/include/KF5/BluezQt/bluezqt/adapter.h is in libkf5bluezqt-dev 5.28.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | /*
* BluezQt - Asynchronous BlueZ wrapper library
*
* Copyright (C) 2014-2015 David Rosca <nowrep@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) version 3, or any
* later version accepted by the membership of KDE e.V. (or its
* successor approved by the membership of KDE e.V.), which shall
* act as a proxy defined in Section 6 of version 3 of the license.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef BLUEZQT_ADAPTER_H
#define BLUEZQT_ADAPTER_H
#include <QObject>
#include <QList>
#include <QStringList>
#include "types.h"
#include "bluezqt_export.h"
namespace BluezQt
{
class Device;
class PendingCall;
/**
* Bluetooth adapter.
*
* This class represents a Bluetooth adapter.
*/
class BLUEZQT_EXPORT Adapter : public QObject
{
Q_OBJECT
Q_PROPERTY(QString ubi READ ubi)
Q_PROPERTY(QString address READ address)
Q_PROPERTY(QString name READ name WRITE setName NOTIFY nameChanged)
Q_PROPERTY(QString systemName READ systemName NOTIFY systemNameChanged)
Q_PROPERTY(quint32 adapterClass READ adapterClass NOTIFY adapterClassChanged)
Q_PROPERTY(bool powered READ isPowered WRITE setPowered NOTIFY poweredChanged)
Q_PROPERTY(bool discoverable READ isDiscoverable WRITE setDiscoverable NOTIFY discoverableChanged)
Q_PROPERTY(quint32 discoverableTimeout READ discoverableTimeout WRITE setDiscoverableTimeout NOTIFY discoverableTimeoutChanged)
Q_PROPERTY(bool pairable READ isPairable WRITE setPairable NOTIFY pairableChanged)
Q_PROPERTY(quint32 pairableTimeout READ pairableTimeout WRITE setPairableTimeout NOTIFY pairableTimeoutChanged)
Q_PROPERTY(bool discovering READ isDiscovering NOTIFY discoveringChanged)
Q_PROPERTY(QStringList uuids READ uuids NOTIFY uuidsChanged)
Q_PROPERTY(QString modalias READ modalias NOTIFY modaliasChanged)
Q_PROPERTY(QList<DevicePtr> devices READ devices)
public:
/**
* Destroys an Adapter object.
*/
~Adapter();
/**
* Returns a shared pointer from this.
*
* @return AdapterPtr
*/
AdapterPtr toSharedPtr() const;
/**
* Returns an UBI of the adapter.
*
* Example UBI: "/org/bluez/hci0"
*
* @return UBI of adapter
*/
QString ubi() const;
/**
* Returns an address of the adapter.
*
* Example address: "1C:E5:C3:BC:94:7E"
*
* @return address of adapter
*/
QString address() const;
/**
* Returns a name of the adapter.
*
* @return name of adapter
*/
QString name() const;
/**
* Sets the name of the adapter.
*
* @param name name of adapter
* @return void pending call
*/
PendingCall *setName(const QString &name);
/**
* Returns a system name (hostname) of the adapter.
*
* @return system name of adapter
*/
QString systemName() const;
/**
* Returns a class of the adapter.
*
* @return class of adapter
*/
quint32 adapterClass() const;
/**
* Returns whether the adapter is powered on.
*
* @return true if adapter is powered on
*/
bool isPowered() const;
/**
* Sets the powered state of the adapter.
*
* @param powered powered state
* @return void pending call
*/
PendingCall *setPowered(bool powered);
/**
* Returns whether the adapter is discoverable by other devices.
*
* @return true if adapter is discoverable
*/
bool isDiscoverable() const;
/**
* Sets the discoverable state of the adapter.
*
* @param discoverable discoverable state
* @return void pending call
*/
PendingCall *setDiscoverable(bool discoverable);
/**
* Returns the discoverable timeout in seconds of the adapter.
*
* Discoverable timeout defines how long the adapter stays in
* discoverable state after calling setDiscoverable(true).
*
* Timeout 0 means infinitely.
*
* @return discoverable timeout of adapter
*/
quint32 discoverableTimeout() const;
/**
* Sets the discoverable timeout of the adapter.
*
* @param timeout timeout in seconds
* @return void pending call
*/
PendingCall *setDiscoverableTimeout(quint32 timeout);
/**
* Returns whether the adapter is pairable with other devices.
*
* @return true if adapter is pairable
*/
bool isPairable() const;
/**
* Sets the pairable state of the adapter.
*
* @param pairable pairable state
* @return void pending call
*/
PendingCall *setPairable(bool pairable);
/**
* Returns the pairable timeout in seconds of the adapter.
*
* Pairable timeout defines how long the adapter stays in
* pairable state after calling setPairable(true).
*
* Timeout 0 means infinitely.
*
* @return pairable timeout of adapter
*/
quint32 pairableTimeout() const;
/**
* Sets the pairable timeout of the adapter.
*
* @param timeout timeout in seconds
* @return void pending call
*/
PendingCall *setPairableTimeout(quint32 timeout);
/**
* Returns whether the adapter is discovering for other devices
*
* @return true if adapter is discovering
*/
bool isDiscovering();
/**
* Returns UUIDs of supported services by the adapter.
*
* UUIDs will always be returned in uppercase.
*
* @return UUIDs of supported services
*/
QStringList uuids() const;
/**
* Returns local device ID in modalias format.
*
* @return adapter modalias
*/
QString modalias() const;
/**
* Returns list of devices known by the adapter.
*
* @return list of devices
*/
QList<DevicePtr> devices() const;
/**
* Returns a device for specified address.
*
* @param address address of device (eg. "40:79:6A:0C:39:75")
* @return null if there is no device with specified address
*/
DevicePtr deviceForAddress(const QString &address) const;
/**
* Starts device discovery.
*
* Possible errors: PendingCall::NotReady, PendingCall::Failed
*
* @return void pending call
* @see discoverableTimeout() const
*/
PendingCall *startDiscovery();
/**
* Stops device discovery.
*
* Possible errors: PendingCall::NotReady, PendingCall::Failed, PendingCall::NotAuthorized
*
* @return void pending call
*/
PendingCall *stopDiscovery();
/**
* Removes the specified device.
*
* It will also remove the pairing information.
*
* Possible errors: PendingCall::InvalidArguments, PendingCall::Failed
*
* @param device device to be removed
* @return void pending call
*/
PendingCall *removeDevice(DevicePtr device);
Q_SIGNALS:
/**
* Indicates that the adapter was removed.
*/
void adapterRemoved(AdapterPtr adapter);
/**
* Indicates that at least one of the adapter's properties have changed.
*/
void adapterChanged(AdapterPtr adapter);
/**
* Indicates that adapter's name have changed.
*/
void nameChanged(const QString &name);
/**
* Indicates that adapter's system name have changed.
*/
void systemNameChanged(const QString &systemName);
/**
* Indicates that adapter's class have changed.
*/
void adapterClassChanged(quint32 adapterClass);
/**
* Indicates that adapter's powered state have changed.
*/
void poweredChanged(bool powered);
/**
* Indicates that adapter's discoverable state have changed.
*/
void discoverableChanged(bool discoverable);
/**
* Indicates that adapter's discoverable timeout have changed.
*/
void discoverableTimeoutChanged(quint32 timeout);
/**
* Indicates that adapter's pairable state have changed.
*/
void pairableChanged(bool pairable);
/**
* Indicates that adapter's pairable timeout have changed.
*/
void pairableTimeoutChanged(quint32 timeout);
/**
* Indicates that adapter's discovering state have changed.
*/
void discoveringChanged(bool discovering);
/**
* Indicates that adapter's UUIDs have changed.
*/
void uuidsChanged(const QStringList &uuids);
/**
* Indicates that adapter's modalias have changed.
*/
void modaliasChanged(const QString &modalias);
/**
* Indicates that a new device was added (eg. found by discovery).
*/
void deviceAdded(DevicePtr device);
/**
* Indicates that a device was removed.
*/
void deviceRemoved(DevicePtr device);
/**
* Indicates that at least one of the device's properties have changed.
*/
void deviceChanged(DevicePtr device);
private:
explicit Adapter(const QString &path, const QVariantMap &properties);
class AdapterPrivate *const d;
friend class AdapterPrivate;
friend class ManagerPrivate;
friend class InitAdaptersJobPrivate;
};
} // namespace BluezQt
#endif // BLUEZQT_ADAPTER_H
|