blob: d3ea71aa5a679cd7dfd689bc7335030b271b13da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef QUERYDIALOG_H
#define QUERYDIALOG_H
#include "ui_querydialog.h"
#include <QDialog>
#include <QLineEdit>
#include <QString>
class QueryDialog : public QDialog {
public:
QueryDialog(QWidget *parent);
void setLabelText(const QString &text);
void setTextEchoMode(QLineEdit::EchoMode mode);
QString textValue();
private:
Ui_QueryDialog ui;
QLineEdit::EchoMode mode;
};
#endif
|