Added WirelessManager, a port of wpa_supplicant.
[AROS.git] / workbench / network / WirelessManager / wpa_supplicant / wpa_gui-qt4 / stringquery.h
blob1b68217c765f57ad3c660bc07a1255e570b3feb2
1 /*
2 * wpa_gui - StringQuery class
3 * Copyright (c) 2009, Atheros Communications
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #ifndef STRINGQUERY_H
16 #define STRINGQUERY_H
18 #include <QDialog>
19 #include <QLineEdit>
20 #include <QGridLayout>
22 class StringQuery : public QDialog
24 Q_OBJECT
26 public:
27 StringQuery(QString label);
28 QString get_string();
30 private:
31 QLineEdit *edit;
34 #endif /* STRINGQUERY_H */