summaryrefslogtreecommitdiff
path: root/noncore/net/opiestumbler/stumblersettings.h
authorskyhusker <skyhusker>2005-04-20 10:25:20 (UTC)
committer skyhusker <skyhusker>2005-04-20 10:25:20 (UTC)
commite439d0e6eaa6704a8b1b89ea32aa8a0520738a04 (patch) (unidiff)
tree18c8b1eba5e1836f757765e4204d638500aa79f2 /noncore/net/opiestumbler/stumblersettings.h
parentf6b9c85c09692f298ffa5ee95e1f171a9e158502 (diff)
downloadopie-e439d0e6eaa6704a8b1b89ea32aa8a0520738a04.zip
opie-e439d0e6eaa6704a8b1b89ea32aa8a0520738a04.tar.gz
opie-e439d0e6eaa6704a8b1b89ea32aa8a0520738a04.tar.bz2
First commit of OpieStumbler, an application which performs wireless networks scanning using Wireless Extensions
Diffstat (limited to 'noncore/net/opiestumbler/stumblersettings.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opiestumbler/stumblersettings.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/noncore/net/opiestumbler/stumblersettings.h b/noncore/net/opiestumbler/stumblersettings.h
new file mode 100644
index 0000000..997fc85
--- a/dev/null
+++ b/noncore/net/opiestumbler/stumblersettings.h
@@ -0,0 +1,22 @@
1#ifndef STUMBLERSETTINGS_H
2#define STUMBLERSETTINGS_H
3
4#include <qdialog.h>
5
6class Config;
7class QLineEdit;
8
9class StumblerSettings: public QDialog {
10
11public:
12 StumblerSettings(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags f = 0);
13 ~StumblerSettings();
14
15protected slots:
16 void accept();
17protected:
18 Config *m_config;
19 QLineEdit *m_interface;
20};
21
22#endif