├── .git-blame-ignore-revs ├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── CMakeLists.txt ├── KF6BluezQtConfig.cmake.in ├── LICENSES ├── CC0-1.0.txt ├── LGPL-2.1-only.txt ├── LGPL-2.1-or-later.txt ├── LGPL-3.0-only.txt └── LicenseRef-KDE-Accepted-LGPL.txt ├── README.md ├── autotests ├── CMakeLists.txt ├── adaptertest.cpp ├── adaptertest.h ├── agentmanagertest.cpp ├── agentmanagertest.h ├── autotests.cpp ├── autotests.h ├── batterytest.cpp ├── batterytest.h ├── devicetest.cpp ├── devicetest.h ├── fakebluez │ ├── CMakeLists.txt │ ├── adapterinterface.cpp │ ├── adapterinterface.h │ ├── agentmanager.cpp │ ├── agentmanager.h │ ├── batteryinterface.cpp │ ├── batteryinterface.h │ ├── deviceinterface.cpp │ ├── deviceinterface.h │ ├── devicemanager.cpp │ ├── devicemanager.h │ ├── fakebluez.cpp │ ├── fakebluez.h │ ├── gattcharacteristicinterface.cpp │ ├── gattcharacteristicinterface.h │ ├── gattdescriptorinterface.cpp │ ├── gattdescriptorinterface.h │ ├── gattmanagerinterface.cpp │ ├── gattmanagerinterface.h │ ├── gattserviceinterface.cpp │ ├── gattserviceinterface.h │ ├── inputinterface.cpp │ ├── inputinterface.h │ ├── leadvertisingmanagerinterface.cpp │ ├── leadvertisingmanagerinterface.h │ ├── main.cpp │ ├── mediainterface.cpp │ ├── mediainterface.h │ ├── mediaplayerinterface.cpp │ ├── mediaplayerinterface.h │ ├── mediatransportinterface.cpp │ ├── mediatransportinterface.h │ ├── obexagentmanager.cpp │ ├── obexagentmanager.h │ ├── obexclient.cpp │ ├── obexclient.h │ ├── object.cpp │ ├── object.h │ ├── objectmanager.cpp │ ├── objectmanager.h │ ├── profilemanager.cpp │ ├── profilemanager.h │ ├── testinterface.cpp │ └── testinterface.h ├── gattcharacteristicremotetest.cpp ├── gattcharacteristicremotetest.h ├── gattdescriptorremotetest.cpp ├── gattdescriptorremotetest.h ├── gattmanagertest.cpp ├── gattmanagertest.h ├── gattserviceremotetest.cpp ├── gattserviceremotetest.h ├── inputtest.cpp ├── inputtest.h ├── interfaces │ ├── org.bluez.Adapter1.xml │ ├── org.bluez.Battery1.xml │ ├── org.bluez.Device1.xml │ ├── org.bluez.GattCharacteristic1.xml │ ├── org.bluez.GattDescriptor1.xml │ ├── org.bluez.GattService1.xml │ ├── org.bluez.Input1.xml │ ├── org.bluez.MediaPlayer1.xml │ ├── org.bluez.MediaTransport1.xml │ └── org.freedesktop.DBus.Properties.xml ├── jobstest.cpp ├── jobstest.h ├── leadvertisingmanagertest.cpp ├── leadvertisingmanagertest.h ├── managertest.cpp ├── managertest.h ├── mediaplayertest.cpp ├── mediaplayertest.h ├── mediatest.cpp ├── mediatest.h ├── mediatransporttest.cpp ├── mediatransporttest.h ├── obexmanagertest.cpp ├── obexmanagertest.h ├── qml │ ├── tst_adapter.qml │ ├── tst_device.qml │ ├── tst_input.qml │ ├── tst_manager.qml │ └── tst_mediaplayer.qml └── qmltests.cpp ├── docs └── Doxyfile.local ├── metainfo.yaml ├── src ├── CMakeLists.txt ├── a2dp-codecs.c ├── a2dp-codecs.h ├── adapter.cpp ├── adapter.h ├── adapter_p.cpp ├── adapter_p.h ├── agent.cpp ├── agent.h ├── agentadaptor.cpp ├── agentadaptor.h ├── battery.cpp ├── battery.h ├── battery_p.h ├── bluezqt-index.qdoc ├── bluezqt.qdoc ├── bluezqt.qdocconf ├── bluezqt_dbustypes.h ├── device.cpp ├── device.h ├── device_p.cpp ├── device_p.h ├── devicesmodel.cpp ├── devicesmodel.h ├── gattapplication.cpp ├── gattapplication.h ├── gattapplication_p.cpp ├── gattapplication_p.h ├── gattcharacteristic.cpp ├── gattcharacteristic.h ├── gattcharacteristic_p.cpp ├── gattcharacteristic_p.h ├── gattcharacteristicadaptor.cpp ├── gattcharacteristicadaptor.h ├── gattcharacteristicremote.cpp ├── gattcharacteristicremote.h ├── gattcharacteristicremote_p.cpp ├── gattcharacteristicremote_p.h ├── gattdescriptor.cpp ├── gattdescriptor.h ├── gattdescriptor_p.cpp ├── gattdescriptor_p.h ├── gattdescriptoradaptor.cpp ├── gattdescriptoradaptor.h ├── gattdescriptorremote.cpp ├── gattdescriptorremote.h ├── gattdescriptorremote_p.cpp ├── gattdescriptorremote_p.h ├── gattmanager.cpp ├── gattmanager.h ├── gattmanager_p.cpp ├── gattmanager_p.h ├── gattservice.cpp ├── gattservice.h ├── gattservice_p.cpp ├── gattservice_p.h ├── gattserviceadaptor.cpp ├── gattserviceadaptor.h ├── gattserviceremote.cpp ├── gattserviceremote.h ├── gattserviceremote_p.cpp ├── gattserviceremote_p.h ├── imports │ ├── CMakeLists.txt │ ├── DevicesModel.qml │ ├── bluezqtextensionplugin.cpp │ ├── bluezqtextensionplugin.h │ ├── declarativeadapter.cpp │ ├── declarativeadapter.h │ ├── declarativebattery.cpp │ ├── declarativebattery.h │ ├── declarativedevice.cpp │ ├── declarativedevice.h │ ├── declarativedevicesmodel.cpp │ ├── declarativedevicesmodel.h │ ├── declarativeinput.cpp │ ├── declarativeinput.h │ ├── declarativemanager.cpp │ ├── declarativemanager.h │ ├── declarativemediaplayer.cpp │ └── declarativemediaplayer.h ├── initmanagerjob.cpp ├── initmanagerjob.h ├── initobexmanagerjob.cpp ├── initobexmanagerjob.h ├── input.cpp ├── input.h ├── input_p.h ├── interfaces │ ├── org.bluez.Adapter1.xml │ ├── org.bluez.AgentManager1.xml │ ├── org.bluez.Battery1.xml │ ├── org.bluez.Device1.xml │ ├── org.bluez.GattCharacteristic1.xml │ ├── org.bluez.GattDescriptor1.xml │ ├── org.bluez.GattManager1.xml │ ├── org.bluez.GattService1.xml │ ├── org.bluez.LEAdvertisement1.xml │ ├── org.bluez.LEAdvertisingManager1.xml │ ├── org.bluez.Media1.xml │ ├── org.bluez.MediaEndpoint1.xml │ ├── org.bluez.MediaPlayer1.xml │ ├── org.bluez.MediaTransport1.xml │ ├── org.bluez.ProfileManager1.xml │ ├── org.bluez.obex.AgentManager1.xml │ ├── org.bluez.obex.Client1.xml │ ├── org.bluez.obex.FileTransfer1.xml │ ├── org.bluez.obex.ObjectPush1.xml │ ├── org.bluez.obex.Session1.xml │ ├── org.bluez.obex.Transfer1.xml │ ├── org.freedesktop.DBus.ObjectManager.xml │ └── org.freedesktop.DBus.Properties.xml ├── job.cpp ├── job.h ├── job_p.h ├── leadvertisement.cpp ├── leadvertisement.h ├── leadvertisement_p.cpp ├── leadvertisement_p.h ├── leadvertisementadaptor.cpp ├── leadvertisementadaptor.h ├── leadvertisingmanager.cpp ├── leadvertisingmanager.h ├── leadvertisingmanager_p.h ├── macros.h ├── manager.cpp ├── manager.h ├── manager_p.cpp ├── manager_p.h ├── media.cpp ├── media.h ├── media_p.h ├── mediaendpoint.cpp ├── mediaendpoint.h ├── mediaendpoint_p.cpp ├── mediaendpoint_p.h ├── mediaendpointadaptor.cpp ├── mediaendpointadaptor.h ├── mediaplayer.cpp ├── mediaplayer.h ├── mediaplayer_p.cpp ├── mediaplayer_p.h ├── mediaplayertrack.cpp ├── mediaplayertrack.h ├── mediatransport.cpp ├── mediatransport.h ├── mediatransport_p.cpp ├── mediatransport_p.h ├── mediatypes.h ├── obexagent.cpp ├── obexagent.h ├── obexagentadaptor.cpp ├── obexagentadaptor.h ├── obexfiletransfer.cpp ├── obexfiletransfer.h ├── obexfiletransferentry.cpp ├── obexfiletransferentry.h ├── obexmanager.cpp ├── obexmanager.h ├── obexmanager_p.cpp ├── obexmanager_p.h ├── obexobjectpush.cpp ├── obexobjectpush.h ├── obexsession.cpp ├── obexsession.h ├── obexsession_p.h ├── obextransfer.cpp ├── obextransfer.h ├── obextransfer_p.h ├── objectmanageradaptor.cpp ├── objectmanageradaptor.h ├── pendingcall.cpp ├── pendingcall.h ├── profile.cpp ├── profile.h ├── profile_p.h ├── profileadaptor.cpp ├── profileadaptor.h ├── request.cpp ├── request.h ├── rfkill.cpp ├── rfkill.h ├── rfkill_p.h ├── services.h ├── tpendingcall.h ├── types.h ├── utils.cpp └── utils.h ├── tests ├── CMakeLists.txt ├── adaptersreceiver.cpp ├── adaptersreceiver.h ├── chatprofile.cpp ├── chatprofile.h ├── devicereceiver.cpp ├── devicereceiver.h ├── leserver.cpp ├── leserver.h ├── mediaendpointconnector.cpp └── mediaendpointconnector.h └── tools └── bluezapi2qt ├── BluezApiParser.cpp ├── BluezApiParser.h ├── CMakeLists.txt ├── Comment.cpp ├── Comment.h ├── CppGenerator.cpp ├── CppGenerator.h ├── Interface.cpp ├── Interface.h ├── Method.cpp ├── Method.h ├── Methods.cpp ├── Methods.h ├── Parameter.cpp ├── Parameter.h ├── Properties.cpp ├── Properties.h ├── Property.cpp ├── Property.h ├── TODO ├── TypeAnnotation.cpp ├── TypeAnnotation.h ├── XmlGenerator.cpp ├── XmlGenerator.h └── main.cpp /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /KF6BluezQtConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/KF6BluezQtConfig.cmake.in -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/LICENSES/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/LICENSES/LGPL-2.1-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/LICENSES/LGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-KDE-Accepted-LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/README.md -------------------------------------------------------------------------------- /autotests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/CMakeLists.txt -------------------------------------------------------------------------------- /autotests/adaptertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/adaptertest.cpp -------------------------------------------------------------------------------- /autotests/adaptertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/adaptertest.h -------------------------------------------------------------------------------- /autotests/agentmanagertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/agentmanagertest.cpp -------------------------------------------------------------------------------- /autotests/agentmanagertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/agentmanagertest.h -------------------------------------------------------------------------------- /autotests/autotests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/autotests.cpp -------------------------------------------------------------------------------- /autotests/autotests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/autotests.h -------------------------------------------------------------------------------- /autotests/batterytest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/batterytest.cpp -------------------------------------------------------------------------------- /autotests/batterytest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/batterytest.h -------------------------------------------------------------------------------- /autotests/devicetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/devicetest.cpp -------------------------------------------------------------------------------- /autotests/devicetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/devicetest.h -------------------------------------------------------------------------------- /autotests/fakebluez/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/CMakeLists.txt -------------------------------------------------------------------------------- /autotests/fakebluez/adapterinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/adapterinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/adapterinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/adapterinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/agentmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/agentmanager.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/agentmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/agentmanager.h -------------------------------------------------------------------------------- /autotests/fakebluez/batteryinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/batteryinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/batteryinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/batteryinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/deviceinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/deviceinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/deviceinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/deviceinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/devicemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/devicemanager.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/devicemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/devicemanager.h -------------------------------------------------------------------------------- /autotests/fakebluez/fakebluez.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/fakebluez.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/fakebluez.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/fakebluez.h -------------------------------------------------------------------------------- /autotests/fakebluez/gattcharacteristicinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/gattcharacteristicinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/gattcharacteristicinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/gattcharacteristicinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/gattdescriptorinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/gattdescriptorinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/gattdescriptorinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/gattdescriptorinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/gattmanagerinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/gattmanagerinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/gattmanagerinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/gattmanagerinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/gattserviceinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/gattserviceinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/gattserviceinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/gattserviceinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/inputinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/inputinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/inputinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/inputinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/leadvertisingmanagerinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/leadvertisingmanagerinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/leadvertisingmanagerinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/leadvertisingmanagerinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/main.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/mediainterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/mediainterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/mediainterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/mediainterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/mediaplayerinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/mediaplayerinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/mediaplayerinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/mediaplayerinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/mediatransportinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/mediatransportinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/mediatransportinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/mediatransportinterface.h -------------------------------------------------------------------------------- /autotests/fakebluez/obexagentmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/obexagentmanager.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/obexagentmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/obexagentmanager.h -------------------------------------------------------------------------------- /autotests/fakebluez/obexclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/obexclient.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/obexclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/obexclient.h -------------------------------------------------------------------------------- /autotests/fakebluez/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/object.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/object.h -------------------------------------------------------------------------------- /autotests/fakebluez/objectmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/objectmanager.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/objectmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/objectmanager.h -------------------------------------------------------------------------------- /autotests/fakebluez/profilemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/profilemanager.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/profilemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/profilemanager.h -------------------------------------------------------------------------------- /autotests/fakebluez/testinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/testinterface.cpp -------------------------------------------------------------------------------- /autotests/fakebluez/testinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/fakebluez/testinterface.h -------------------------------------------------------------------------------- /autotests/gattcharacteristicremotetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/gattcharacteristicremotetest.cpp -------------------------------------------------------------------------------- /autotests/gattcharacteristicremotetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/gattcharacteristicremotetest.h -------------------------------------------------------------------------------- /autotests/gattdescriptorremotetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/gattdescriptorremotetest.cpp -------------------------------------------------------------------------------- /autotests/gattdescriptorremotetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/gattdescriptorremotetest.h -------------------------------------------------------------------------------- /autotests/gattmanagertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/gattmanagertest.cpp -------------------------------------------------------------------------------- /autotests/gattmanagertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/gattmanagertest.h -------------------------------------------------------------------------------- /autotests/gattserviceremotetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/gattserviceremotetest.cpp -------------------------------------------------------------------------------- /autotests/gattserviceremotetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/gattserviceremotetest.h -------------------------------------------------------------------------------- /autotests/inputtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/inputtest.cpp -------------------------------------------------------------------------------- /autotests/inputtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/inputtest.h -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.Adapter1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.Adapter1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.Battery1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.Battery1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.Device1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.Device1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.GattCharacteristic1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.GattCharacteristic1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.GattDescriptor1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.GattDescriptor1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.GattService1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.GattService1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.Input1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.Input1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.MediaPlayer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.MediaPlayer1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.bluez.MediaTransport1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.bluez.MediaTransport1.xml -------------------------------------------------------------------------------- /autotests/interfaces/org.freedesktop.DBus.Properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/interfaces/org.freedesktop.DBus.Properties.xml -------------------------------------------------------------------------------- /autotests/jobstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/jobstest.cpp -------------------------------------------------------------------------------- /autotests/jobstest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/jobstest.h -------------------------------------------------------------------------------- /autotests/leadvertisingmanagertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/leadvertisingmanagertest.cpp -------------------------------------------------------------------------------- /autotests/leadvertisingmanagertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/leadvertisingmanagertest.h -------------------------------------------------------------------------------- /autotests/managertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/managertest.cpp -------------------------------------------------------------------------------- /autotests/managertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/managertest.h -------------------------------------------------------------------------------- /autotests/mediaplayertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/mediaplayertest.cpp -------------------------------------------------------------------------------- /autotests/mediaplayertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/mediaplayertest.h -------------------------------------------------------------------------------- /autotests/mediatest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/mediatest.cpp -------------------------------------------------------------------------------- /autotests/mediatest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/mediatest.h -------------------------------------------------------------------------------- /autotests/mediatransporttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/mediatransporttest.cpp -------------------------------------------------------------------------------- /autotests/mediatransporttest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/mediatransporttest.h -------------------------------------------------------------------------------- /autotests/obexmanagertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/obexmanagertest.cpp -------------------------------------------------------------------------------- /autotests/obexmanagertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/obexmanagertest.h -------------------------------------------------------------------------------- /autotests/qml/tst_adapter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/qml/tst_adapter.qml -------------------------------------------------------------------------------- /autotests/qml/tst_device.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/qml/tst_device.qml -------------------------------------------------------------------------------- /autotests/qml/tst_input.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/qml/tst_input.qml -------------------------------------------------------------------------------- /autotests/qml/tst_manager.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/qml/tst_manager.qml -------------------------------------------------------------------------------- /autotests/qml/tst_mediaplayer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/qml/tst_mediaplayer.qml -------------------------------------------------------------------------------- /autotests/qmltests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/autotests/qmltests.cpp -------------------------------------------------------------------------------- /docs/Doxyfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/docs/Doxyfile.local -------------------------------------------------------------------------------- /metainfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/metainfo.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/a2dp-codecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/a2dp-codecs.c -------------------------------------------------------------------------------- /src/a2dp-codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/a2dp-codecs.h -------------------------------------------------------------------------------- /src/adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/adapter.cpp -------------------------------------------------------------------------------- /src/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/adapter.h -------------------------------------------------------------------------------- /src/adapter_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/adapter_p.cpp -------------------------------------------------------------------------------- /src/adapter_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/adapter_p.h -------------------------------------------------------------------------------- /src/agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/agent.cpp -------------------------------------------------------------------------------- /src/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/agent.h -------------------------------------------------------------------------------- /src/agentadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/agentadaptor.cpp -------------------------------------------------------------------------------- /src/agentadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/agentadaptor.h -------------------------------------------------------------------------------- /src/battery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/battery.cpp -------------------------------------------------------------------------------- /src/battery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/battery.h -------------------------------------------------------------------------------- /src/battery_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/battery_p.h -------------------------------------------------------------------------------- /src/bluezqt-index.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/bluezqt-index.qdoc -------------------------------------------------------------------------------- /src/bluezqt.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/bluezqt.qdoc -------------------------------------------------------------------------------- /src/bluezqt.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/bluezqt.qdocconf -------------------------------------------------------------------------------- /src/bluezqt_dbustypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/bluezqt_dbustypes.h -------------------------------------------------------------------------------- /src/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/device.cpp -------------------------------------------------------------------------------- /src/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/device.h -------------------------------------------------------------------------------- /src/device_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/device_p.cpp -------------------------------------------------------------------------------- /src/device_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/device_p.h -------------------------------------------------------------------------------- /src/devicesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/devicesmodel.cpp -------------------------------------------------------------------------------- /src/devicesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/devicesmodel.h -------------------------------------------------------------------------------- /src/gattapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattapplication.cpp -------------------------------------------------------------------------------- /src/gattapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattapplication.h -------------------------------------------------------------------------------- /src/gattapplication_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattapplication_p.cpp -------------------------------------------------------------------------------- /src/gattapplication_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattapplication_p.h -------------------------------------------------------------------------------- /src/gattcharacteristic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristic.cpp -------------------------------------------------------------------------------- /src/gattcharacteristic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristic.h -------------------------------------------------------------------------------- /src/gattcharacteristic_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristic_p.cpp -------------------------------------------------------------------------------- /src/gattcharacteristic_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristic_p.h -------------------------------------------------------------------------------- /src/gattcharacteristicadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristicadaptor.cpp -------------------------------------------------------------------------------- /src/gattcharacteristicadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristicadaptor.h -------------------------------------------------------------------------------- /src/gattcharacteristicremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristicremote.cpp -------------------------------------------------------------------------------- /src/gattcharacteristicremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristicremote.h -------------------------------------------------------------------------------- /src/gattcharacteristicremote_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristicremote_p.cpp -------------------------------------------------------------------------------- /src/gattcharacteristicremote_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattcharacteristicremote_p.h -------------------------------------------------------------------------------- /src/gattdescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptor.cpp -------------------------------------------------------------------------------- /src/gattdescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptor.h -------------------------------------------------------------------------------- /src/gattdescriptor_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptor_p.cpp -------------------------------------------------------------------------------- /src/gattdescriptor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptor_p.h -------------------------------------------------------------------------------- /src/gattdescriptoradaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptoradaptor.cpp -------------------------------------------------------------------------------- /src/gattdescriptoradaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptoradaptor.h -------------------------------------------------------------------------------- /src/gattdescriptorremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptorremote.cpp -------------------------------------------------------------------------------- /src/gattdescriptorremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptorremote.h -------------------------------------------------------------------------------- /src/gattdescriptorremote_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptorremote_p.cpp -------------------------------------------------------------------------------- /src/gattdescriptorremote_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattdescriptorremote_p.h -------------------------------------------------------------------------------- /src/gattmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattmanager.cpp -------------------------------------------------------------------------------- /src/gattmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattmanager.h -------------------------------------------------------------------------------- /src/gattmanager_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattmanager_p.cpp -------------------------------------------------------------------------------- /src/gattmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattmanager_p.h -------------------------------------------------------------------------------- /src/gattservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattservice.cpp -------------------------------------------------------------------------------- /src/gattservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattservice.h -------------------------------------------------------------------------------- /src/gattservice_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattservice_p.cpp -------------------------------------------------------------------------------- /src/gattservice_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattservice_p.h -------------------------------------------------------------------------------- /src/gattserviceadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattserviceadaptor.cpp -------------------------------------------------------------------------------- /src/gattserviceadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattserviceadaptor.h -------------------------------------------------------------------------------- /src/gattserviceremote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattserviceremote.cpp -------------------------------------------------------------------------------- /src/gattserviceremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattserviceremote.h -------------------------------------------------------------------------------- /src/gattserviceremote_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattserviceremote_p.cpp -------------------------------------------------------------------------------- /src/gattserviceremote_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/gattserviceremote_p.h -------------------------------------------------------------------------------- /src/imports/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/CMakeLists.txt -------------------------------------------------------------------------------- /src/imports/DevicesModel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/DevicesModel.qml -------------------------------------------------------------------------------- /src/imports/bluezqtextensionplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/bluezqtextensionplugin.cpp -------------------------------------------------------------------------------- /src/imports/bluezqtextensionplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/bluezqtextensionplugin.h -------------------------------------------------------------------------------- /src/imports/declarativeadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativeadapter.cpp -------------------------------------------------------------------------------- /src/imports/declarativeadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativeadapter.h -------------------------------------------------------------------------------- /src/imports/declarativebattery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativebattery.cpp -------------------------------------------------------------------------------- /src/imports/declarativebattery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativebattery.h -------------------------------------------------------------------------------- /src/imports/declarativedevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativedevice.cpp -------------------------------------------------------------------------------- /src/imports/declarativedevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativedevice.h -------------------------------------------------------------------------------- /src/imports/declarativedevicesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativedevicesmodel.cpp -------------------------------------------------------------------------------- /src/imports/declarativedevicesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativedevicesmodel.h -------------------------------------------------------------------------------- /src/imports/declarativeinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativeinput.cpp -------------------------------------------------------------------------------- /src/imports/declarativeinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativeinput.h -------------------------------------------------------------------------------- /src/imports/declarativemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativemanager.cpp -------------------------------------------------------------------------------- /src/imports/declarativemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativemanager.h -------------------------------------------------------------------------------- /src/imports/declarativemediaplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativemediaplayer.cpp -------------------------------------------------------------------------------- /src/imports/declarativemediaplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/imports/declarativemediaplayer.h -------------------------------------------------------------------------------- /src/initmanagerjob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/initmanagerjob.cpp -------------------------------------------------------------------------------- /src/initmanagerjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/initmanagerjob.h -------------------------------------------------------------------------------- /src/initobexmanagerjob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/initobexmanagerjob.cpp -------------------------------------------------------------------------------- /src/initobexmanagerjob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/initobexmanagerjob.h -------------------------------------------------------------------------------- /src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/input.cpp -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/input.h -------------------------------------------------------------------------------- /src/input_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/input_p.h -------------------------------------------------------------------------------- /src/interfaces/org.bluez.Adapter1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.Adapter1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.AgentManager1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.AgentManager1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.Battery1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.Battery1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.Device1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.Device1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.GattCharacteristic1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.GattCharacteristic1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.GattDescriptor1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.GattDescriptor1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.GattManager1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.GattManager1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.GattService1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.GattService1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.LEAdvertisement1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.LEAdvertisement1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.LEAdvertisingManager1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.LEAdvertisingManager1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.Media1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.Media1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.MediaEndpoint1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.MediaEndpoint1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.MediaPlayer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.MediaPlayer1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.MediaTransport1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.MediaTransport1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.ProfileManager1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.ProfileManager1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.obex.AgentManager1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.obex.AgentManager1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.obex.Client1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.obex.Client1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.obex.FileTransfer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.obex.FileTransfer1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.obex.ObjectPush1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.obex.ObjectPush1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.obex.Session1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.obex.Session1.xml -------------------------------------------------------------------------------- /src/interfaces/org.bluez.obex.Transfer1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.bluez.obex.Transfer1.xml -------------------------------------------------------------------------------- /src/interfaces/org.freedesktop.DBus.ObjectManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.freedesktop.DBus.ObjectManager.xml -------------------------------------------------------------------------------- /src/interfaces/org.freedesktop.DBus.Properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/interfaces/org.freedesktop.DBus.Properties.xml -------------------------------------------------------------------------------- /src/job.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/job.cpp -------------------------------------------------------------------------------- /src/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/job.h -------------------------------------------------------------------------------- /src/job_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/job_p.h -------------------------------------------------------------------------------- /src/leadvertisement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisement.cpp -------------------------------------------------------------------------------- /src/leadvertisement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisement.h -------------------------------------------------------------------------------- /src/leadvertisement_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisement_p.cpp -------------------------------------------------------------------------------- /src/leadvertisement_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisement_p.h -------------------------------------------------------------------------------- /src/leadvertisementadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisementadaptor.cpp -------------------------------------------------------------------------------- /src/leadvertisementadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisementadaptor.h -------------------------------------------------------------------------------- /src/leadvertisingmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisingmanager.cpp -------------------------------------------------------------------------------- /src/leadvertisingmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisingmanager.h -------------------------------------------------------------------------------- /src/leadvertisingmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/leadvertisingmanager_p.h -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/manager.cpp -------------------------------------------------------------------------------- /src/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/manager.h -------------------------------------------------------------------------------- /src/manager_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/manager_p.cpp -------------------------------------------------------------------------------- /src/manager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/manager_p.h -------------------------------------------------------------------------------- /src/media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/media.cpp -------------------------------------------------------------------------------- /src/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/media.h -------------------------------------------------------------------------------- /src/media_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/media_p.h -------------------------------------------------------------------------------- /src/mediaendpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaendpoint.cpp -------------------------------------------------------------------------------- /src/mediaendpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaendpoint.h -------------------------------------------------------------------------------- /src/mediaendpoint_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaendpoint_p.cpp -------------------------------------------------------------------------------- /src/mediaendpoint_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaendpoint_p.h -------------------------------------------------------------------------------- /src/mediaendpointadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaendpointadaptor.cpp -------------------------------------------------------------------------------- /src/mediaendpointadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaendpointadaptor.h -------------------------------------------------------------------------------- /src/mediaplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaplayer.cpp -------------------------------------------------------------------------------- /src/mediaplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaplayer.h -------------------------------------------------------------------------------- /src/mediaplayer_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaplayer_p.cpp -------------------------------------------------------------------------------- /src/mediaplayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaplayer_p.h -------------------------------------------------------------------------------- /src/mediaplayertrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaplayertrack.cpp -------------------------------------------------------------------------------- /src/mediaplayertrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediaplayertrack.h -------------------------------------------------------------------------------- /src/mediatransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediatransport.cpp -------------------------------------------------------------------------------- /src/mediatransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediatransport.h -------------------------------------------------------------------------------- /src/mediatransport_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediatransport_p.cpp -------------------------------------------------------------------------------- /src/mediatransport_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediatransport_p.h -------------------------------------------------------------------------------- /src/mediatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/mediatypes.h -------------------------------------------------------------------------------- /src/obexagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexagent.cpp -------------------------------------------------------------------------------- /src/obexagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexagent.h -------------------------------------------------------------------------------- /src/obexagentadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexagentadaptor.cpp -------------------------------------------------------------------------------- /src/obexagentadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexagentadaptor.h -------------------------------------------------------------------------------- /src/obexfiletransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexfiletransfer.cpp -------------------------------------------------------------------------------- /src/obexfiletransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexfiletransfer.h -------------------------------------------------------------------------------- /src/obexfiletransferentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexfiletransferentry.cpp -------------------------------------------------------------------------------- /src/obexfiletransferentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexfiletransferentry.h -------------------------------------------------------------------------------- /src/obexmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexmanager.cpp -------------------------------------------------------------------------------- /src/obexmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexmanager.h -------------------------------------------------------------------------------- /src/obexmanager_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexmanager_p.cpp -------------------------------------------------------------------------------- /src/obexmanager_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexmanager_p.h -------------------------------------------------------------------------------- /src/obexobjectpush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexobjectpush.cpp -------------------------------------------------------------------------------- /src/obexobjectpush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexobjectpush.h -------------------------------------------------------------------------------- /src/obexsession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexsession.cpp -------------------------------------------------------------------------------- /src/obexsession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexsession.h -------------------------------------------------------------------------------- /src/obexsession_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obexsession_p.h -------------------------------------------------------------------------------- /src/obextransfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obextransfer.cpp -------------------------------------------------------------------------------- /src/obextransfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obextransfer.h -------------------------------------------------------------------------------- /src/obextransfer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/obextransfer_p.h -------------------------------------------------------------------------------- /src/objectmanageradaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/objectmanageradaptor.cpp -------------------------------------------------------------------------------- /src/objectmanageradaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/objectmanageradaptor.h -------------------------------------------------------------------------------- /src/pendingcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/pendingcall.cpp -------------------------------------------------------------------------------- /src/pendingcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/pendingcall.h -------------------------------------------------------------------------------- /src/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/profile.cpp -------------------------------------------------------------------------------- /src/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/profile.h -------------------------------------------------------------------------------- /src/profile_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/profile_p.h -------------------------------------------------------------------------------- /src/profileadaptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/profileadaptor.cpp -------------------------------------------------------------------------------- /src/profileadaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/profileadaptor.h -------------------------------------------------------------------------------- /src/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/request.cpp -------------------------------------------------------------------------------- /src/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/request.h -------------------------------------------------------------------------------- /src/rfkill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/rfkill.cpp -------------------------------------------------------------------------------- /src/rfkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/rfkill.h -------------------------------------------------------------------------------- /src/rfkill_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/rfkill_p.h -------------------------------------------------------------------------------- /src/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/services.h -------------------------------------------------------------------------------- /src/tpendingcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/tpendingcall.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/types.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/src/utils.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/adaptersreceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/adaptersreceiver.cpp -------------------------------------------------------------------------------- /tests/adaptersreceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/adaptersreceiver.h -------------------------------------------------------------------------------- /tests/chatprofile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/chatprofile.cpp -------------------------------------------------------------------------------- /tests/chatprofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/chatprofile.h -------------------------------------------------------------------------------- /tests/devicereceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/devicereceiver.cpp -------------------------------------------------------------------------------- /tests/devicereceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/devicereceiver.h -------------------------------------------------------------------------------- /tests/leserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/leserver.cpp -------------------------------------------------------------------------------- /tests/leserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/leserver.h -------------------------------------------------------------------------------- /tests/mediaendpointconnector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/mediaendpointconnector.cpp -------------------------------------------------------------------------------- /tests/mediaendpointconnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tests/mediaendpointconnector.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/BluezApiParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/BluezApiParser.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/BluezApiParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/BluezApiParser.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bluezapi2qt/Comment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Comment.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/Comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Comment.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/CppGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/CppGenerator.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/CppGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/CppGenerator.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Interface.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Interface.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/Method.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Method.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/Method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Method.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/Methods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Methods.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/Methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Methods.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/Parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Parameter.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Parameter.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Properties.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Properties.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Property.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/Property.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/TODO: -------------------------------------------------------------------------------- 1 | - Finish C++ generators 2 | - Add multiline method parsing 3 | -------------------------------------------------------------------------------- /tools/bluezapi2qt/TypeAnnotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/TypeAnnotation.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/TypeAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/TypeAnnotation.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/XmlGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/XmlGenerator.cpp -------------------------------------------------------------------------------- /tools/bluezapi2qt/XmlGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/XmlGenerator.h -------------------------------------------------------------------------------- /tools/bluezapi2qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KDE/bluez-qt/HEAD/tools/bluezapi2qt/main.cpp --------------------------------------------------------------------------------