fix clear() (clear red/invalid status)

This commit is contained in:
Wladimir J. van der Laan 2011-07-22 17:06:37 +02:00
parent 174b3eddc0
commit 73cd5e5212
5 changed files with 16 additions and 1 deletions

View File

@ -55,6 +55,12 @@ void BitcoinAmountField::setText(const QString &text)
} }
} }
void BitcoinAmountField::clear()
{
amount->clear();
decimals->clear();
}
bool BitcoinAmountField::validate() bool BitcoinAmountField::validate()
{ {
bool valid = true; bool valid = true;

View File

@ -18,6 +18,8 @@ public:
void setText(const QString &text); void setText(const QString &text);
QString text() const; QString text() const;
void clear();
bool validate(); bool validate();
// Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907) // Qt messes up the tab chain by default in some cases (issue http://bugreports.qt.nokia.com/browse/QTBUG-10907)
// Hence we have to set it up manually // Hence we have to set it up manually

View File

@ -35,3 +35,9 @@ void QValidatedLineEdit::markValid()
{ {
setValid(true); setValid(true);
} }
void QValidatedLineEdit::clear()
{
setValid(true);
QLineEdit::clear();
}

View File

@ -10,6 +10,7 @@ class QValidatedLineEdit : public QLineEdit
Q_OBJECT Q_OBJECT
public: public:
explicit QValidatedLineEdit(QWidget *parent = 0); explicit QValidatedLineEdit(QWidget *parent = 0);
void clear();
protected: protected:
void focusInEvent(QFocusEvent *evt); void focusInEvent(QFocusEvent *evt);

View File

@ -68,7 +68,7 @@ void SendCoinsEntry::clear()
{ {
ui->payTo->clear(); ui->payTo->clear();
ui->addAsLabel->clear(); ui->addAsLabel->clear();
ui->payAmount->setText(QString()); ui->payAmount->clear();
ui->payTo->setFocus(); ui->payTo->setFocus();
} }