00001 /* 00002 * wpa_gui - StringQuery class 00003 * Copyright (c) 2009, Atheros Communications 00004 * 00005 * This program is free software; you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License version 2 as 00007 * published by the Free Software Foundation. 00008 * 00009 * Alternatively, this software may be distributed under the terms of BSD 00010 * license. 00011 * 00012 * See README and COPYING for more details. 00013 */ 00014 00015 #ifndef STRINGQUERY_H 00016 #define STRINGQUERY_H 00017 00018 #include <QDialog> 00019 #include <QLineEdit> 00020 #include <QGridLayout> 00021 00022 class StringQuery : public QDialog 00023 { 00024 Q_OBJECT 00025 00026 public: 00027 StringQuery(QString label); 00028 QString get_string(); 00029 00030 private: 00031 QLineEdit *edit; 00032 }; 00033 00034 #endif /* STRINGQUERY_H */