libsolidcontrol
fakewirelessnetworkinterface.h
Go to the documentation of this file.00001 /* 00002 Copyright 2008 Will Stephenson <wstephenson@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Lesser General Public 00006 License as published by the Free Software Foundation; either 00007 version 2.1 of the License, or (at your option) version 3, or any 00008 later version accepted by the membership of KDE e.V. (or its 00009 successor approved by the membership of KDE e.V.), which shall 00010 act as a proxy defined in Section 6 of version 3 of the license. 00011 00012 This library is distributed in the hope that it will be useful, 00013 but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 Lesser General Public License for more details. 00016 00017 You should have received a copy of the GNU Lesser General Public 00018 License along with this library. If not, see <http://www.gnu.org/licenses/>. 00019 */ 00020 00021 #ifndef FAKE_WIRELESS_NETWORK_INTERFACE_H 00022 #define FAKE_WIRELESS_NETWORK_INTERFACE_H 00023 00024 #include "fakenetworkinterface.h" 00025 #include <solid/control/ifaces/wirelessnetworkinterface.h> 00026 #include <QString> 00027 #include <QMap> 00028 #include <QVariant> 00029 00030 class FakeAccessPoint; 00031 #include <kdemacros.h> 00032 00033 class KDE_EXPORT FakeWirelessNetworkInterface : public FakeNetworkInterface, virtual public Solid::Control::Ifaces::WirelessNetworkInterface 00034 { 00035 Q_OBJECT 00036 Q_INTERFACES(Solid::Control::Ifaces::WirelessNetworkInterface) 00037 friend class FakeNetworkManager; 00038 public: 00039 FakeWirelessNetworkInterface(const QMap<QString, QVariant> & propertyMap, QObject * parent = 0); 00040 ~FakeWirelessNetworkInterface(); 00041 MacAddressList accessPoints() const; 00042 QString activeAccessPoint() const; 00043 QString hardwareAddress() const; 00044 Solid::Control::WirelessNetworkInterface::OperationMode mode() const; 00045 int bitRate() const; 00046 Solid::Control::WirelessNetworkInterface::Capabilities wirelessCapabilities() const; 00047 QObject * createAccessPoint(const QString & uni); 00048 signals: 00049 void bitRateChanged(int bitrate); 00050 void activeAccessPointChanged(const QString &); 00051 void modeChanged(Solid::Control::WirelessNetworkInterface::OperationMode); 00052 void accessPointAppeared(const QString &); 00053 void accessPointDisappeared(const QString &); 00054 protected: 00055 void injectAccessPoint( FakeAccessPoint * ap ); 00056 private: 00057 QMap<QString, FakeAccessPoint *> mAccessPoints; 00058 00059 }; 00060 00061 #endif 00062