00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
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