Qt實(shí)現(xiàn)密碼顯示按鈕
本文實(shí)例為大家分享了Qt實(shí)現(xiàn)密碼顯示按鈕的具體代碼,供大家參考,具體內(nèi)容如下
PasswordLineEdit.h
#ifndef PASSWORDLINEEDIT_H
#define PASSWORDLINEEDIT_H
#include <QAction>
#include <QLineEdit>
#include <QToolButton>
class PasswordLineEdit : public QLineEdit {
public:
? PasswordLineEdit(QWidget *parent = nullptr);
private slots:
? void onPressed();
? void onReleased();
protected:
? void enterEvent(QEvent *event);
? void leaveEvent(QEvent *event);
? void focusInEvent(QFocusEvent *event);
? void focusOutEvent(QFocusEvent *event);
private:
? QToolButton *button;
};
#endif // PASSWORDLINEEDIT_HPasswordLineEdit.cpp
#include "passwordlineedit.h"
PasswordLineEdit::PasswordLineEdit(QWidget *parent) : QLineEdit(parent)
{
? ? setEchoMode(QLineEdit::Password);
? ? QAction *action = addAction(QIcon(":/eyeOff"), QLineEdit::TrailingPosition);
? ? button = qobject_cast<QToolButton *>(action->associatedWidgets().last());
? ? button->hide();
? ? button->setCursor(QCursor(Qt::PointingHandCursor));
? ? connect(button, &QToolButton::pressed, this, &PasswordLineEdit::onPressed);
? ? connect(button, &QToolButton::released, this, &PasswordLineEdit::onReleased);
}
void PasswordLineEdit::onPressed()
{
? ? QToolButton *button = qobject_cast<QToolButton *>(sender());
? ? button->setIcon(QIcon(":/eyeOn"));
? ? setEchoMode(QLineEdit::Normal);
}
void PasswordLineEdit::onReleased()
{
? ? QToolButton *button = qobject_cast<QToolButton *>(sender());
? ? button->setIcon(QIcon(":/eyeOff"));
? ? setEchoMode(QLineEdit::Password);
}
void PasswordLineEdit::enterEvent(QEvent *event)
{
? ? button->show();
? ? QLineEdit::enterEvent(event);
}
void PasswordLineEdit::leaveEvent(QEvent *event)
{
? ? button->hide();
? ? QLineEdit::leaveEvent(event);
}
void PasswordLineEdit::focusInEvent(QFocusEvent *event)
{
? ? button->show();
? ? QLineEdit::focusInEvent(event);
}
void PasswordLineEdit::focusOutEvent(QFocusEvent *event)
{
? ? button->hide();
? ? QLineEdit::focusOutEvent(event);
}main.cpp
#include "passwordlineedit.h"
#include <QApplication>
#include <QFormLayout>
int main(int argc, char *argv[])
{
? ? QApplication a(argc, argv);
? ? QWidget w;
? ? PasswordLineEdit *w1 = new PasswordLineEdit;
? ? QLineEdit *w2 = new QLineEdit;
? ? QFormLayout *lay = new QFormLayout(&w);
? ? lay->addRow("PasswordLineEdit: ", w1);
? ? lay->addRow("QLineEdit: ", w2);
? ? w.show();
? ? return a.exec();
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
一文掌握C++ const與constexpr及區(qū)別
C++ 11標(biāo)準(zhǔn)中,const 用于為修飾的變量添加“只讀”屬性而 constexpr關(guān)鍵字則用于指明其后是一個(gè)常量,編譯器在編譯程序時(shí)可以順帶將其結(jié)果計(jì)算出來,而無需等到程序運(yùn)行階段,這樣的優(yōu)化極大地提高了程序的執(zhí)行效率,本文重點(diǎn)介紹C++ const與constexpr區(qū)別介紹,一起看看吧2024-02-02
C++?const與constexpr區(qū)別小結(jié)
C++11標(biāo)準(zhǔn)中,const用于為修飾的變量添加只讀屬性,而constexpr關(guān)鍵字則用于指明其后是一個(gè)常量,本文主要介紹了C++?const與constexpr區(qū)別小結(jié),感興趣的可以了解一下2024-03-03
C++動(dòng)態(tài)規(guī)劃中關(guān)于背包問題講解
可能有些讀者有接觸過動(dòng)態(tài)規(guī)劃,可能也有一些讀者以前完全不知道動(dòng)態(tài)規(guī)劃這個(gè)東西,別擔(dān)心,我這篇文章會(huì)為讀者做一個(gè)入門,好讓讀者掌握這個(gè)重要的知識點(diǎn)2023-03-03
基于C語言實(shí)現(xiàn)的aes256加密算法示例
這篇文章主要介紹了基于C語言實(shí)現(xiàn)的aes256加密算法,結(jié)合具體實(shí)例形式詳細(xì)分析了C語言實(shí)現(xiàn)的aes256加密算法實(shí)現(xiàn)步驟與使用技巧,需要的朋友可以參考下2017-02-02
由static_cast和dynamic_cast到C++對象占用內(nèi)存的全面分析
下面小編就為大家?guī)硪黄蓅tatic_cast和dynamic_cast到C++對象占用內(nèi)存的全面分析。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2017-01-01
vscode+platformIO開發(fā)stm32f4的實(shí)現(xiàn)
這篇文章主要介紹了vscode+platformIO開發(fā)stm32f4的實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-05-05

