2009-09-10 13:43:08 +02:00
|
|
|
/*
|
|
|
|
* wpa_gui - StringQuery class
|
|
|
|
* Copyright (c) 2009, Atheros Communications
|
|
|
|
*
|
2012-02-11 15:31:36 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2009-09-10 13:43:08 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef STRINGQUERY_H
|
|
|
|
#define STRINGQUERY_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QGridLayout>
|
|
|
|
|
|
|
|
class StringQuery : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
StringQuery(QString label);
|
|
|
|
QString get_string();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QLineEdit *edit;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* STRINGQUERY_H */
|