summaryrefslogtreecommitdiff
path: root/noncore/net/opiestumbler/stationinfo.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opiestumbler/stationinfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opiestumbler/stationinfo.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/noncore/net/opiestumbler/stationinfo.h b/noncore/net/opiestumbler/stationinfo.h
new file mode 100644
index 0000000..f8798a6
--- a/dev/null
+++ b/noncore/net/opiestumbler/stationinfo.h
@@ -0,0 +1,42 @@
+#ifndef STATIONINFO_H
+#define STATIONINFO_H
+
+#include <qdialog.h>
+#include <qlabel.h>
+
+class QWidget;
+class QString;
+class QGroupBox;
+
+class StationInfo: public QDialog
+{
+ Q_OBJECT
+
+public:
+ StationInfo( const QString &essid, const QString &type, const QString &channel,
+ const QString &maxrate, const QString &level, const QString &encryption, const QString &address,
+ const QString &vendor, const QString &time,
+ QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
+
+protected:
+ QLabel *m_ssidLabel;
+ QLabel *m_typeLabel;
+ QLabel *m_channelLabel;
+ QLabel *m_maxRateLabel;
+ QLabel *m_levelLabel;
+ QLabel *m_encLabel;
+ QLabel *m_addrLabel;
+ QLabel *m_vendorLabel;
+ QLabel *m_timeLabel;
+ QLabel *m_ssid;
+ QLabel *m_type;
+ QLabel *m_channel;
+ QLabel *m_maxRate;
+ QLabel *m_level;
+ QLabel *m_encryption;
+ QLabel *m_address;
+ QLabel *m_vendor;
+ QLabel *m_lastTime;
+};
+
+#endif