mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
b7f6a89a3e
7b7cd11244
clang-tidy, qt: Force checks for headers in `src/qt` (Hennadii Stepanov)69eacf2c5e
clang-tidy, qt: Fix `modernize-use-default-member-init` in headers (Hennadii Stepanov) Pull request description: This PR split from bitcoin/bitcoin#26705 and contains only changes in `src/qt`. Effectively, it fixes the clang-tidy's `modernize-use-default-member-init` errors, and forces clang-tidy checks for all headers in the `src/qt` directory. ACKs for top commit: jarolrod: ACK7b7cd11244
Tree-SHA512: 79525bb0f31ae7cad88c781e55091a21467c0485ddc1ed03ad62e051480fda3b3710619ea11af480437edba3c6e038f7c40edc6b373e3a37408c006d11b34686
44 lines
1.1 KiB
C++
44 lines
1.1 KiB
C++
// Copyright (c) 2011-2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_QT_QVALIDATEDLINEEDIT_H
|
|
#define BITCOIN_QT_QVALIDATEDLINEEDIT_H
|
|
|
|
#include <QLineEdit>
|
|
|
|
/** 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.
|
|
*/
|
|
class QValidatedLineEdit : public QLineEdit
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QValidatedLineEdit(QWidget *parent);
|
|
void clear();
|
|
void setCheckValidator(const QValidator *v);
|
|
bool isValid();
|
|
|
|
protected:
|
|
void focusInEvent(QFocusEvent *evt) override;
|
|
void focusOutEvent(QFocusEvent *evt) override;
|
|
|
|
private:
|
|
bool valid{true};
|
|
const QValidator* checkValidator{nullptr};
|
|
|
|
public Q_SLOTS:
|
|
void setText(const QString&);
|
|
void setValid(bool valid);
|
|
void setEnabled(bool enabled);
|
|
|
|
Q_SIGNALS:
|
|
void validationDidChange(QValidatedLineEdit *validatedLineEdit);
|
|
|
|
private Q_SLOTS:
|
|
void markValid();
|
|
void checkValidity();
|
|
};
|
|
|
|
#endif // BITCOIN_QT_QVALIDATEDLINEEDIT_H
|