dogecoin/src/qt/qvalidatedlineedit.h

30 lines
580 B
C
Raw Normal View History

2011-07-16 19:01:05 +02:00
#ifndef QVALIDATEDLINEEDIT_H
#define QVALIDATEDLINEEDIT_H
#include <QLineEdit>
2011-11-13 13:19:52 +01:00
/** Line edit that can be marked as "invalid" to show input validation feedback. When marked as invalid,
it will get a red background until it is focused.
*/
2011-07-16 19:01:05 +02:00
class QValidatedLineEdit : public QLineEdit
{
Q_OBJECT
public:
explicit QValidatedLineEdit(QWidget *parent = 0);
2011-07-22 17:06:37 +02:00
void clear();
2011-07-16 19:01:05 +02:00
protected:
void focusInEvent(QFocusEvent *evt);
private:
bool valid;
public slots:
void setValid(bool valid);
private slots:
void markValid();
};
#endif // QVALIDATEDLINEEDIT_H