m_validator = new QRegExpValidator(QRegExp("^(?![0-9]+$)[a-zA-Z0-9]{30}"));
m_pwdLine = new QLineEdit(m_main_widget);
m_pwdLine->setValidator(m_validator);
m_pwdLine->setPlaceholderText(tr("請輸入密碼!"));
m_pwdLine->setEchoMode(QLineEdit::Password);//輸入的密碼以圓點顯示