1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
|
// This file is generated by kconfig_compiler from 802-11-wireless.kcfg.
// All changes you do to this file will be lost.
#ifndef KNM_WIRELESSSETTING_H
#define KNM_WIRELESSSETTING_H
#include <kglobal.h>
#include <kdebug.h>
#include <kcoreconfigskeleton.h>
#include "setting.h"
#include "knminternals_export.h"
namespace Knm {
class KNMINTERNALS_EXPORT WirelessSetting : public Setting
{
public:
class EnumMode
{
public:
enum type { infrastructure, adhoc, COUNT };
};
class EnumBand
{
public:
enum type { a, bg, COUNT };
};
WirelessSetting( );
~WirelessSetting();
QString name() const;
bool hasSecrets() const;
/**
Set SSID
*/
void setSsid( const QByteArray & v )
{
mSsid = v;
}
/**
Get SSID
*/
QByteArray ssid() const
{
return mSsid;
}
/**
Set Mode
*/
void setMode( int v )
{
mMode = v;
}
/**
Get Mode
*/
int mode() const
{
return mMode;
}
/**
Set Band
*/
void setBand( int v )
{
mBand = v;
}
/**
Get Band
*/
int band() const
{
return mBand;
}
/**
Set Channel
*/
void setChannel( uint v )
{
mChannel = v;
}
/**
Get Channel
*/
uint channel() const
{
return mChannel;
}
/**
Set BSSID
*/
void setBssid( const QByteArray & v )
{
mBssid = v;
}
/**
Get BSSID
*/
QByteArray bssid() const
{
return mBssid;
}
/**
Set Data rate
*/
void setRate( uint v )
{
mRate = v;
}
/**
Get Data rate
*/
uint rate() const
{
return mRate;
}
/**
Set Transmit power
*/
void setTxpower( uint v )
{
mTxpower = v;
}
/**
Get Transmit power
*/
uint txpower() const
{
return mTxpower;
}
/**
Set MAC Address
*/
void setMacaddress( const QByteArray & v )
{
mMacaddress = v;
}
/**
Get MAC Address
*/
QByteArray macaddress() const
{
return mMacaddress;
}
/**
Set MTU
*/
void setMtu( uint v )
{
mMtu = v;
}
/**
Get MTU
*/
uint mtu() const
{
return mMtu;
}
/**
Set Seen BSSIDs
*/
void setSeenbssids( const QStringList & v )
{
mSeenbssids = v;
}
/**
Get Seen BSSIDs
*/
QStringList seenbssids() const
{
return mSeenbssids;
}
/**
Set security
*/
void setSecurity( const QString & v )
{
mSecurity = v;
}
/**
Get security
*/
QString security() const
{
return mSecurity;
}
protected:
// 802-11-wireless
QByteArray mSsid;
int mMode;
int mBand;
uint mChannel;
QByteArray mBssid;
uint mRate;
uint mTxpower;
QByteArray mMacaddress;
uint mMtu;
QStringList mSeenbssids;
QString mSecurity;
private:
};
}
#endif
|