1 | /* |
2 | SPDX-FileCopyrightText: 2012-2013 Jan Grulich <jgrulich@redhat.com> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
5 | */ |
6 | |
7 | #ifndef NETWORKMANAGERQT_BLUETOOTH_SETTING_H |
8 | #define NETWORKMANAGERQT_BLUETOOTH_SETTING_H |
9 | |
10 | #include "setting.h" |
11 | #include <networkmanagerqt/networkmanagerqt_export.h> |
12 | |
13 | #include <QString> |
14 | |
15 | namespace NetworkManager |
16 | { |
17 | class BluetoothSettingPrivate; |
18 | |
19 | /** |
20 | * Represents bluetooth setting |
21 | */ |
22 | class NETWORKMANAGERQT_EXPORT BluetoothSetting : public Setting |
23 | { |
24 | public: |
25 | typedef QSharedPointer<BluetoothSetting> Ptr; |
26 | typedef QList<Ptr> List; |
27 | enum ProfileType { |
28 | Unknown = 0, |
29 | Dun, |
30 | Panu, |
31 | }; |
32 | |
33 | BluetoothSetting(); |
34 | explicit BluetoothSetting(const Ptr &other); |
35 | ~BluetoothSetting() override; |
36 | |
37 | QString name() const override; |
38 | |
39 | void setBluetoothAddress(const QByteArray &address); |
40 | QByteArray bluetoothAddress() const; |
41 | |
42 | void setProfileType(ProfileType type); |
43 | ProfileType profileType() const; |
44 | |
45 | void fromMap(const QVariantMap &setting) override; |
46 | |
47 | QVariantMap toMap() const override; |
48 | |
49 | protected: |
50 | BluetoothSettingPrivate *d_ptr; |
51 | |
52 | private: |
53 | Q_DECLARE_PRIVATE(BluetoothSetting) |
54 | }; |
55 | |
56 | NETWORKMANAGERQT_EXPORT QDebug operator<<(QDebug dbg, const BluetoothSetting &setting); |
57 | |
58 | } |
59 | |
60 | #endif // NETWORKMANAGERQT_SETTINGS_BLUETOOTH_H |
61 | |