remove @EAP_LDFLAGS@, no longer exists
[mech_eap.orig] / libeap / wpa_supplicant / wpa_gui-qt4 / stringquery.cpp
diff --git a/libeap/wpa_supplicant/wpa_gui-qt4/stringquery.cpp b/libeap/wpa_supplicant/wpa_gui-qt4/stringquery.cpp
new file mode 100644 (file)
index 0000000..1ca98d9
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * wpa_gui - StringQuery class
+ * Copyright (c) 2009, Atheros Communications
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * Alternatively, this software may be distributed under the terms of BSD
+ * license.
+ *
+ * See README and COPYING for more details.
+ */
+
+#include <cstdio>
+#include <QLabel>
+
+#include "stringquery.h"
+
+
+StringQuery::StringQuery(QString label)
+{
+       edit = new QLineEdit;
+       edit->setFocus();
+       QGridLayout *layout = new QGridLayout;
+       layout->addWidget(new QLabel(label), 0, 0);
+       layout->addWidget(edit, 0, 1);
+       setLayout(layout);
+
+       connect(edit, SIGNAL(returnPressed()), this, SLOT(accept()));
+}
+
+
+QString StringQuery::get_string()
+{
+       return edit->text();
+}