00001 #ifndef STATIONINFO_H
00002 #define STATIONINFO_H
00003
00004 #include <qdialog.h>
00005 #include <qlabel.h>
00006
00007 class QWidget;
00008 class QString;
00009 class QGroupBox;
00010
00011 class StationInfo: public QDialog
00012 {
00013 Q_OBJECT
00014
00015 public:
00016 StationInfo( const QString &essid, const QString &type, const QString &channel,
00017 const QString &maxrate, const QString &level, const QString &encryption, const QString &address,
00018 const QString &vendor, const QString &time,
00019 QWidget* parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 );
00020
00021 protected:
00022 QLabel *m_ssidLabel;
00023 QLabel *m_typeLabel;
00024 QLabel *m_channelLabel;
00025 QLabel *m_maxRateLabel;
00026 QLabel *m_levelLabel;
00027 QLabel *m_encLabel;
00028 QLabel *m_addrLabel;
00029 QLabel *m_vendorLabel;
00030 QLabel *m_timeLabel;
00031 QLabel *m_ssid;
00032 QLabel *m_type;
00033 QLabel *m_channel;
00034 QLabel *m_maxRate;
00035 QLabel *m_level;
00036 QLabel *m_encryption;
00037 QLabel *m_address;
00038 QLabel *m_vendor;
00039 QLabel *m_lastTime;
00040 };
00041
00042 #endif