not quite so much needs to be delayed to the init() function
[personal-kdebase.git] / workspace / libs / solid / control / backends / fakenet / fakeaccesspoint.h
blob1515087a74de617401d5a65fe4526b4c2b456afb
1 /*
2 Copyright 2008 Will Stephenson <wstephenson@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) version 3, or any
8 later version accepted by the membership of KDE e.V. (or its
9 successor approved by the membership of KDE e.V.), which shall
10 act as a proxy defined in Section 6 of version 3 of the license.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef FAKE_ACCESS_POINT_H
22 #define FAKE_ACCESS_POINT_H
24 #include <solid/control/ifaces/wirelessaccesspoint.h>
26 #include <QString>
27 #include <QVariant>
29 #include <kdemacros.h>
31 class KDE_EXPORT FakeAccessPoint : public Solid::Control::Ifaces::AccessPoint
33 Q_OBJECT
34 Q_INTERFACES(Solid::Control::Ifaces::AccessPoint)
35 public:
36 FakeAccessPoint(const QMap<QString,QVariant> & propsMap, QObject * parent = 0 );
37 ~FakeAccessPoint();
38 QString uni() const;
39 Solid::Control::AccessPoint::Capabilities capabilities() const;
40 Solid::Control::AccessPoint::WpaFlags wpaFlags() const;
41 Solid::Control::AccessPoint::WpaFlags rsnFlags() const;
42 QString ssid() const;
43 uint frequency() const;
44 QString hardwareAddress() const;
45 uint maxBitRate() const;
46 Solid::Control::WirelessNetworkInterface::OperationMode mode() const;
47 int signalStrength() const;
48 signals:
49 void ssidChanged(const QString &);
50 void frequencyChanged(uint);
51 void signalStrengthChanged(int strength);
52 void bitRateChanged(int bitrate);
53 void wpaFlagsChanged(Solid::Control::AccessPoint::WpaFlags flags);
54 void rsnFlagsChanged(Solid::Control::AccessPoint::WpaFlags flags);
55 private:
56 Solid::Control::AccessPoint::WpaFlags wpaPropsToFlags( const QString & property ) const;
57 QMap<QString,QVariant> mPropertyMap;
58 QString mUni;
62 #endif