summaryrefslogtreecommitdiff
path: root/noncore/net/opiestumbler/stationinfo.h
Unidiff
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 @@
1#ifndef STATIONINFO_H
2#define STATIONINFO_H
3
4#include <qdialog.h>
5#include <qlabel.h>
6
7class QWidget;
8class QString;
9class QGroupBox;
10
11class StationInfo: public QDialog
12{
13 Q_OBJECT
14
15public:
16 StationInfo( const QString &essid, const QString &type, const QString &channel,
17 const QString &maxrate, const QString &level, const QString &encryption, const QString &address,
18 const QString &vendor, const QString &time,
19 QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
20
21protected:
22 QLabel *m_ssidLabel;
23 QLabel *m_typeLabel;
24 QLabel *m_channelLabel;
25 QLabel *m_maxRateLabel;
26 QLabel *m_levelLabel;
27 QLabel *m_encLabel;
28 QLabel *m_addrLabel;
29 QLabel *m_vendorLabel;
30 QLabel *m_timeLabel;
31 QLabel *m_ssid;
32 QLabel *m_type;
33 QLabel *m_channel;
34 QLabel *m_maxRate;
35 QLabel *m_level;
36 QLabel *m_encryption;
37 QLabel *m_address;
38 QLabel *m_vendor;
39 QLabel *m_lastTime;
40};
41
42#endif