| 20 | } |
| 21 | |
| 22 | void CFrmParameterFreeRDP::Init() |
| 23 | { |
| 24 | ui->cbEnable->setChecked(m_Para->getEnable()); |
| 25 | ui->lePort->setText(QString::number(m_Para->getPort())); |
| 26 | ui->lePassword->setText(m_Para->getPassword()); |
| 27 | |
| 28 | ui->cbAuthentication->setChecked(m_Para->getAuthentication()); |
| 29 | ui->cbMayInteract->setChecked(m_Para->getMayInteract()); |
| 30 | ui->cbMayView->setChecked(m_Para->getMayView()); |
| 31 | |
| 32 | ui->cbTlsSecurity->setChecked(m_Para->getTlsSecurity()); |
| 33 | ui->cbRdpSecurity->setChecked(m_Para->getRdpSecurity()); |
| 34 | ui->cbNlaSecurity->setChecked(m_Para->getNlaSecurity()); |
| 35 | ui->cbNlaExtSecurity->setChecked(m_Para->getNlaExtSecurity()); |
| 36 | ui->leSamFile->setText(m_Para->getSamFile()); |
| 37 | } |
| 38 | |
| 39 | void CFrmParameterFreeRDP::slotAccept() |
| 40 | { |
nothing calls this directly
no test coverage detected