188 lines
7.1 KiB
C++
188 lines
7.1 KiB
C++
#include "ui_dlgconnhidwifiwep.h"
|
|
#include "kylinheadfile.h"
|
|
|
|
DlgConnHidWifiWep::DlgConnHidWifiWep(int type, QWidget *parent) :
|
|
WepPwdOrCode(type),
|
|
QDialog(parent),
|
|
ui(new Ui::DlgConnHidWifiWep)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
this->setWindowFlags(Qt::FramelessWindowHint);
|
|
this->setStyleSheet("background-color:white;");
|
|
|
|
ui->lbBoder->setStyleSheet("QLabel{background-color:transparent;border:1px solid #297a97;}");
|
|
ui->lbUpback->setStyleSheet("QLabel{background-color:#f5f6f7;}");
|
|
ui->lbBottomback->setStyleSheet("QLabel{background-color:#f5f6f7;}");
|
|
ui->lbLeftup->setStyleSheet("QLabel{background-color:#266ab5;}");
|
|
ui->lbLeftupIcon->setStyleSheet("QLabel{background-image:url(:/res/h/add-hide-wifi.png);background-color:transparent;}");
|
|
ui->lbLeftupTitle->setStyleSheet("QLabel{font-size:12px;color:#ffffff;background-color:transparent;}");
|
|
ui->lbConn->setStyleSheet("QLabel{background-color:transparent;}");
|
|
ui->btnCancel->setStyleSheet("QPushButton{border:1px solid #aaaaaa;background-color:#f5f5f5;}"
|
|
"QPushButton:Hover{border:2px solid #629ee8;background-color:#eeeeee;}"
|
|
"QPushButton:Pressed{border:1px solid #aaaaaa;background-color:#d8d8d8;}");
|
|
ui->btnConnect->setStyleSheet("QPushButton{border:1px solid #aaaaaa;background-color:#f5f5f5;}"
|
|
"QPushButton:Hover{border:2px solid #629ee8;background-color:#eeeeee;}"
|
|
"QPushButton:Pressed{border:1px solid #aaaaaa;background-color:#d8d8d8;}");
|
|
ui->checkBoxPwd->setStyleSheet("QCheckBox::indicator {width: 18px; height: 9px;}"
|
|
"QCheckBox::indicator:checked {image: url(:/res/h/show-pwd.png);}"
|
|
"QCheckBox::indicator:unchecked {image: url(:/res/h/hide-pwd.png);}");
|
|
|
|
ui->lbLeftupTitle->setText(tr("Add hidden Wi-Fi")); //加入隐藏Wi-Fi
|
|
ui->lbConn->setText(tr("Connection")); //连接设置:
|
|
ui->lbNetName->setText(tr("Network name")); //网络名称:
|
|
ui->lbSecurity->setText(tr("Wi-Fi security")); //Wi-Fi 安全性:
|
|
ui->lbKey->setText(tr("Key")); //密钥:
|
|
ui->lbWEPindex->setText(tr("WEP index")); //WEP 检索:
|
|
ui->lbAuth->setText(tr("Authentication")); //认证:
|
|
ui->btnCancel->setText(tr("Cancel")); //取消
|
|
ui->btnConnect->setText(tr("Connect")); //连接
|
|
|
|
ui->cbxConn->addItem(tr("C_reate…")); //新建...
|
|
system("nmcli connection show>/tmp/kylin-nm-connshow");
|
|
QFile file("/tmp/kylin-nm-connshow");
|
|
if(!file.open(QIODevice::ReadOnly | QIODevice::Text)){
|
|
qDebug()<<"Can't open the file!";
|
|
}
|
|
QString txt = file.readAll();
|
|
QStringList txtLine = txt.split("\n");
|
|
file.close();
|
|
foreach (QString line, txtLine) {
|
|
if(line.indexOf("wifi") != -1){
|
|
QStringList subLine = line.split(" ");
|
|
ui->cbxConn->addItem(subLine[0]);
|
|
}
|
|
}
|
|
ui->cbxConn->setCurrentIndex(0);
|
|
|
|
ui->cbxSecurity->addItem(tr("None")); //无
|
|
ui->cbxSecurity->addItem(tr("WPA & WPA2 Personal")); //WPA 及 WPA2 个人
|
|
ui->cbxSecurity->addItem(tr("WEP 40/128-bit Key (Hex or ASCII)")); //WEP 40/128 位密钥(十六进制或ASCII)
|
|
ui->cbxSecurity->addItem(tr("WEP 128-bit Passphrase")); //WEP 128 位密码句
|
|
ui->cbxSecurity->addItem("LEAP");
|
|
ui->cbxSecurity->addItem(tr("Dynamic WEP (802.1X)")); //动态 WEP (802.1x)
|
|
ui->cbxSecurity->addItem(tr("WPA & WPA2 Enterprise")); //WPA 及 WPA2 企业
|
|
if (WepPwdOrCode == 0) {
|
|
ui->cbxSecurity->setCurrentIndex(2);
|
|
} else if (WepPwdOrCode == 1) {
|
|
ui->cbxSecurity->setCurrentIndex(3);
|
|
}
|
|
connect(ui->cbxSecurity,SIGNAL(currentIndexChanged(QString)),this,SLOT(changeDialog()));
|
|
|
|
ui->cbxWEPindex->addItem(tr("1(default)")); //1(默认)
|
|
ui->cbxWEPindex->addItem("2");
|
|
ui->cbxWEPindex->addItem("3");
|
|
ui->cbxWEPindex->addItem("4");
|
|
ui->cbxWEPindex->setCurrentIndex(0);
|
|
|
|
ui->cbxAuth->addItem(tr("Open System")); //开放式系统
|
|
ui->cbxAuth->addItem(tr("Shared Key")); //共享密钥
|
|
ui->cbxAuth->setCurrentIndex(0);
|
|
|
|
ui->btnConnect->setEnabled(false);
|
|
|
|
this->setFixedSize(432,471);
|
|
}
|
|
|
|
DlgConnHidWifiWep::~DlgConnHidWifiWep()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void DlgConnHidWifiWep::mousePressEvent(QMouseEvent *event){
|
|
if(event->button() == Qt::LeftButton){
|
|
this->isPress = true;
|
|
this->winPos = this->pos();
|
|
this->dragPos = event->globalPos();
|
|
event->accept();
|
|
}
|
|
}
|
|
void DlgConnHidWifiWep::mouseReleaseEvent(QMouseEvent *event){
|
|
this->isPress = false;
|
|
this->setWindowOpacity(1);
|
|
}
|
|
void DlgConnHidWifiWep::mouseMoveEvent(QMouseEvent *event){
|
|
if(this->isPress){
|
|
this->move(this->winPos - (this->dragPos - event->globalPos()));
|
|
this->setWindowOpacity(0.9);
|
|
event->accept();
|
|
}
|
|
}
|
|
|
|
void DlgConnHidWifiWep::changeDialog()
|
|
{
|
|
if(ui->cbxSecurity->currentIndex()==0){
|
|
QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifi *connHidWifi = new DlgConnHidWifi(0);
|
|
connHidWifi->show();
|
|
} else if(ui->cbxSecurity->currentIndex()==1) {
|
|
QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiWpa *connHidWifiWpa = new DlgConnHidWifiWpa(0);
|
|
connHidWifiWpa->show();
|
|
} else if(ui->cbxSecurity->currentIndex()==2) {
|
|
if (WepPwdOrCode == 1) {
|
|
ui->cbxSecurity->setCurrentIndex(2);
|
|
WepPwdOrCode = 0;
|
|
}
|
|
} else if(ui->cbxSecurity->currentIndex()==3) {
|
|
if (WepPwdOrCode == 0) {
|
|
ui->cbxSecurity->setCurrentIndex(3);
|
|
WepPwdOrCode = 1;
|
|
}
|
|
} else if(ui->cbxSecurity->currentIndex()==4) {
|
|
QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiLeap *connHidWifiLeap = new DlgConnHidWifiLeap();
|
|
connHidWifiLeap->show();
|
|
} else if(ui->cbxSecurity->currentIndex()==5) {
|
|
QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiSecTls *connHidWifiSecTls = new DlgConnHidWifiSecTls(0);
|
|
connHidWifiSecTls->show();
|
|
} else {
|
|
QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiSecTls *connHidWifiSecTls = new DlgConnHidWifiSecTls(1);
|
|
connHidWifiSecTls->show();
|
|
}
|
|
}
|
|
|
|
void DlgConnHidWifiWep::on_btnCancel_clicked()
|
|
{
|
|
this->close();
|
|
}
|
|
|
|
void DlgConnHidWifiWep::on_btnConnect_clicked()
|
|
{
|
|
this->close();
|
|
}
|
|
|
|
void DlgConnHidWifiWep::on_checkBoxPwd_stateChanged(int arg1)
|
|
{
|
|
if (arg1 == 0) {
|
|
ui->leKey->setEchoMode(QLineEdit::Password);
|
|
} else {
|
|
ui->leKey->setEchoMode(QLineEdit::Normal);
|
|
}
|
|
}
|
|
|
|
void DlgConnHidWifiWep::on_leKey_textEdited(const QString &arg1)
|
|
{
|
|
if (ui->leNetName->text() == "" || ui->leKey->text() == ""){
|
|
ui->btnConnect->setEnabled(false);
|
|
} else {
|
|
ui->btnConnect->setEnabled(true);
|
|
}
|
|
}
|
|
|
|
void DlgConnHidWifiWep::on_leNetName_textEdited(const QString &arg1)
|
|
{
|
|
if (ui->leNetName->text() == "" || ui->leKey->text() == ""){
|
|
ui->btnConnect->setEnabled(false);
|
|
} else {
|
|
ui->btnConnect->setEnabled(true);
|
|
}
|
|
}
|