380 lines
14 KiB
C++
380 lines
14 KiB
C++
/*
|
|
* Copyright (C) 2023, KylinSoft Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
#include "dlgconnhidwifi.h"
|
|
#include "kylinheadfile.h"
|
|
#include "ui_dlgconnhidwifi.h"
|
|
#include "src/backthread.h"
|
|
#include "src/kylinnm.h"
|
|
#include "src/kylin-dbus-interface.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <QStandardItemModel>
|
|
#include <QDir>
|
|
|
|
DlgConnHidWifi::DlgConnHidWifi(int type, KylinNM *mainWindow, QWidget *parent) :
|
|
isUsed(type),
|
|
QDialog(parent),
|
|
ui(new Ui::DlgConnHidWifi())
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
this->setWindowFlags(Qt::FramelessWindowHint);
|
|
this->setAttribute(Qt::WA_TranslucentBackground);
|
|
//需要添加 void paintEvent(QPaintEvent *event) 函数
|
|
|
|
QPainterPath path;
|
|
auto rect = this->rect();
|
|
rect.adjust(1, 1, -1, -1);
|
|
path.addRoundedRect(rect, 6, 6);
|
|
setProperty("blurRegion", QRegion(path.toFillPolygon().toPolygon()));
|
|
|
|
KylinDBus mkylindbus;
|
|
QString strTrans;
|
|
strTrans = QString::number(1, 10, 2);
|
|
QString sty = "QWidget{border-radius:6px;background-color:rgba(255,255,255,1);border:1px solid rgba(255, 255, 255, 1);}";
|
|
this->setStyleSheet(sty);
|
|
//this->setStyleSheet("QWidget{border-radius:6px;background-color:rgba(19,19,20,0.7);border:1px solid rgba(255, 255, 255, 0.05);}");
|
|
|
|
MyQss objQss;
|
|
|
|
ui->lbBoder->setStyleSheet("QLabel{border-radius:6px;background-color:rgba(19,19,20,0.95);border:1px solid rgba(255, 255, 255, 0.05);}");
|
|
ui->lbBoder->hide();
|
|
ui->lbLeftupTitle->setStyleSheet("QLabel{border:0px;font-size:20px;color:rgba(255,255,255,0.97);background-color:transparent;}");
|
|
ui->lbConn->setStyleSheet(objQss.labelQss);
|
|
ui->lbNetName->setStyleSheet(objQss.labelQss);
|
|
ui->lbSecurity->setStyleSheet(objQss.labelQss);
|
|
|
|
ui->cbxConn->setStyleSheet(objQss.cbxQss);
|
|
ui->cbxConn->setView(new QListView());
|
|
ui->leNetName->setStyleSheet(objQss.leQss);
|
|
ui->cbxSecurity->setStyleSheet(objQss.cbxQss);
|
|
ui->cbxSecurity->setView(new QListView());
|
|
|
|
ui->btnConnect->setStyleSheet(objQss.btnConnQss);
|
|
ui->btnCancel->setStyleSheet(objQss.btnCancelQss);
|
|
ui->lineUp->setStyleSheet(objQss.lineQss);
|
|
ui->lineDown->setStyleSheet(objQss.lineQss);
|
|
|
|
ui->lbLeftupTitle->setText(tr("Add Hidden Wi-Fi")); //加入隐藏Wi-Fi
|
|
ui->lbConn->setText(tr("Connection")); //连接设置:
|
|
ui->lbNetName->setText(tr("Wi-Fi name")); //网络名称:
|
|
ui->lbSecurity->setText(tr("Wi-Fi security")); //Wi-Fi安全性:
|
|
ui->btnCancel->setText(tr("Cancel")); //取消
|
|
ui->btnConnect->setText(tr("Connect")); //连接
|
|
|
|
ui->cbxConn->addItem(tr("C_reate…")); //新建...
|
|
QString tmpPath = "/tmp/kylin-nm-connshow-" + QDir::home().dirName();
|
|
QString cmd = "nmcli connection show>" + tmpPath;
|
|
int status = system(cmd.toUtf8().data());
|
|
if (status != 0){ syslog(LOG_ERR, "execute 'nmcli connection show' in function 'DlgConnHidWifi' failed");}
|
|
QFile file(tmpPath);
|
|
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 || line.indexOf("802-11-wireless") != -1) {
|
|
QStringList subLine = line.split(" ");
|
|
ui->cbxConn->addItem(subLine[0]);
|
|
}
|
|
}
|
|
ui->cbxConn->setCurrentIndex(0);
|
|
connect(ui->cbxConn,SIGNAL(currentIndexChanged(QString)),this,SLOT(changeWindow()));
|
|
|
|
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 企业
|
|
ui->cbxSecurity->setCurrentIndex(0);
|
|
connect(ui->cbxSecurity,SIGNAL(currentIndexChanged(QString)),this,SLOT(changeDialog()));
|
|
|
|
if (isUsed == 0){
|
|
ui->btnConnect->setEnabled(false);
|
|
}else{
|
|
ui->cbxConn->setCurrentIndex(isUsed);
|
|
ui->leNetName->setText(ui->cbxConn->currentText());
|
|
ui->lbNetName->setEnabled(false);
|
|
ui->leNetName->setEnabled(false);
|
|
ui->lbSecurity->setEnabled(false);
|
|
ui->cbxSecurity->setEnabled(false);
|
|
ui->btnConnect->setEnabled(true);
|
|
}
|
|
|
|
this->setFixedSize(432,358);
|
|
|
|
this->mw = mainWindow;
|
|
|
|
/**解决锁屏设置 X11BypassWindowManagerHint 属性导致QCombox弹框异常的问题---START----
|
|
** 手动绑定下拉框视图和下拉框
|
|
**/
|
|
ui->cbxConn->view()->setWindowFlags(Qt::Popup | Qt::X11BypassWindowManagerHint);
|
|
ui->cbxConn->view()->setParent(this);
|
|
ui->cbxConn->view()->hide();
|
|
ui->cbxConn->installEventFilter(this);
|
|
|
|
ui->cbxSecurity->view()->setWindowFlags(Qt::Popup | Qt::X11BypassWindowManagerHint);
|
|
ui->cbxSecurity->view()->setParent(this);
|
|
ui->cbxSecurity->view()->hide();
|
|
ui->cbxSecurity->installEventFilter(this);
|
|
|
|
connect(ui->cbxConn->view(), &QAbstractItemView::pressed, this, [=](QModelIndex index){
|
|
Q_EMIT ui->cbxConn->setCurrentIndex(index.row());
|
|
ui->cbxConn->view()->hide();
|
|
});
|
|
|
|
connect(ui->cbxSecurity->view(), &QAbstractItemView::pressed, this, [=](QModelIndex index){
|
|
ui->cbxSecurity->view()->hide();
|
|
Q_EMIT ui->cbxSecurity->setCurrentIndex(index.row());
|
|
});
|
|
|
|
ui->cbxConn->view()->setGeometry(QRect(ui->cbxConn->geometry().left(), ui->cbxConn->geometry().bottom(), ui->cbxConn->view()->width(), ui->cbxConn->view()->height()));
|
|
ui->cbxSecurity->view()->setGeometry(QRect(ui->cbxSecurity->geometry().left(), ui->cbxSecurity->geometry().bottom(), ui->cbxSecurity->view()->width(), ui->cbxSecurity->view()->height()));
|
|
/**解决锁屏设置 X11BypassWindowManagerHint 属性导致QCombox弹框异常的问题---END----
|
|
** 手动绑定下拉框视图和下拉框
|
|
**/
|
|
}
|
|
|
|
DlgConnHidWifi::~DlgConnHidWifi()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
/**解决锁屏设置 X11BypassWindowManagerHint 属性导致QCombox弹框异常的问题---START----
|
|
** 手动绑定下拉框视图和下拉框
|
|
**/
|
|
bool DlgConnHidWifi::eventFilter(QObject *obj, QEvent *ev)
|
|
{
|
|
if(ev->type() == QEvent::MouseButtonPress)
|
|
{
|
|
if(obj == ui->cbxConn)
|
|
{
|
|
ui->cbxConn->view()->setVisible(!ui->cbxConn->view()->isVisible());
|
|
if(ui->cbxConn->view()->isVisible())
|
|
ui->cbxConn->view()->setFocus();
|
|
} else if (obj == ui->cbxSecurity)
|
|
{
|
|
ui->cbxSecurity->view()->setVisible(!ui->cbxSecurity->view()->isVisible());
|
|
if(ui->cbxSecurity->view()->isVisible())
|
|
ui->cbxSecurity->view()->setFocus();
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
/**解决锁屏设置 X11BypassWindowManagerHint 属性导致QCombox弹框异常的问题---END----
|
|
** 手动绑定下拉框视图和下拉框
|
|
**/
|
|
|
|
void DlgConnHidWifi::mousePressEvent(QMouseEvent *event){
|
|
if(event->button() == Qt::LeftButton){
|
|
this->isPress = true;
|
|
this->winPos = this->pos();
|
|
this->dragPos = event->globalPos();
|
|
event->accept();
|
|
}
|
|
}
|
|
void DlgConnHidWifi::mouseReleaseEvent(QMouseEvent *event){
|
|
this->isPress = false;
|
|
}
|
|
void DlgConnHidWifi::mouseMoveEvent(QMouseEvent *event){
|
|
if(this->isPress){
|
|
this->move(this->winPos - (this->dragPos - event->globalPos()));
|
|
event->accept();
|
|
}
|
|
}
|
|
|
|
//切换到其他Wi-Fi安全类型
|
|
void DlgConnHidWifi::changeDialog()
|
|
{
|
|
if(ui->cbxSecurity->currentIndex()==0){
|
|
qDebug()<<"it's not need to change dialog";
|
|
} else if(ui->cbxSecurity->currentIndex()==1) {
|
|
// QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiWpa *connHidWifiWpa = new DlgConnHidWifiWpa(0, mw, this->parentWidget());
|
|
connHidWifiWpa->show();
|
|
connect(connHidWifiWpa, SIGNAL(reSetWifiList() ), mw, SLOT(on_btnWifiList_clicked()) );
|
|
} else if(ui->cbxSecurity->currentIndex()==2) {
|
|
// QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiWep *connHidWifiWep = new DlgConnHidWifiWep(0,this->parentWidget());
|
|
connHidWifiWep->show();
|
|
} else if(ui->cbxSecurity->currentIndex()==3) {
|
|
// QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiWep *connHidWifiWep = new DlgConnHidWifiWep(1,this->parentWidget());
|
|
connHidWifiWep->show();
|
|
} else if(ui->cbxSecurity->currentIndex()==4) {
|
|
// QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiLeap *connHidWifiLeap = new DlgConnHidWifiLeap(this->parentWidget());
|
|
connHidWifiLeap->show();
|
|
} else if(ui->cbxSecurity->currentIndex()==5) {
|
|
// QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiSecTls *connHidWifiSecTls = new DlgConnHidWifiSecTls(0,this->parentWidget());
|
|
connHidWifiSecTls->show();
|
|
} else {
|
|
// QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiSecTls *connHidWifiSecTls = new DlgConnHidWifiSecTls(1,this->parentWidget());
|
|
connHidWifiSecTls->show();
|
|
}
|
|
}
|
|
|
|
//同一 Wi-Fi安全类型的窗口变换
|
|
void DlgConnHidWifi::changeWindow(){
|
|
if (ui->cbxConn->currentIndex() == 0){
|
|
isUsed = ui->cbxConn->currentIndex();
|
|
ui->cbxConn->setCurrentIndex(0);
|
|
ui->leNetName->setText("");
|
|
ui->lbNetName->setEnabled(true);
|
|
ui->leNetName->setEnabled(true);
|
|
ui->lbSecurity->setEnabled(true);
|
|
ui->cbxSecurity->setEnabled(true);
|
|
ui->btnConnect->setEnabled(false);
|
|
}else if (ui->cbxConn->currentIndex() >= 1){
|
|
QString tmpPath = "/tmp/kylin-nm-connshow-" + QDir::home().dirName();
|
|
QString name = ui->cbxConn->currentText();
|
|
QString currStr = "nmcli connection show \"" + name.replace("\"","\\\"") + "\" >" + tmpPath;
|
|
|
|
int status = system(currStr.toUtf8().data());
|
|
if (status != 0){ syslog(LOG_ERR, "execute 'nmcli connection show' in function 'changeWindow' failed");}
|
|
|
|
QFile file(tmpPath);
|
|
if(!file.open(QIODevice::ReadOnly | QIODevice::Text)){
|
|
qDebug()<<"Can't open the file!";
|
|
}
|
|
QString txt = file.readAll();
|
|
file.close();
|
|
if (txt.indexOf("802-11-wireless-security.key-mgmt:") != -1){
|
|
// QApplication::setQuitOnLastWindowClosed(false);
|
|
this->hide();
|
|
DlgConnHidWifiWpa *connHidWifiWpa = new DlgConnHidWifiWpa(ui->cbxConn->currentIndex(), mw, this->parentWidget());
|
|
connHidWifiWpa->show();
|
|
connect(connHidWifiWpa, SIGNAL(reSetWifiList() ), mw, SLOT(on_btnWifiList_clicked()) );
|
|
}else {
|
|
isUsed = ui->cbxConn->currentIndex();
|
|
ui->leNetName->setText(ui->cbxConn->currentText());
|
|
ui->lbNetName->setEnabled(false);
|
|
ui->leNetName->setEnabled(false);
|
|
ui->lbSecurity->setEnabled(false);
|
|
ui->cbxSecurity->setEnabled(false);
|
|
ui->btnConnect->setEnabled(true);
|
|
}
|
|
}
|
|
}
|
|
|
|
void DlgConnHidWifi::on_btnCancel_clicked()
|
|
{
|
|
this->close();
|
|
}
|
|
|
|
void DlgConnHidWifi::on_btnConnect_clicked()
|
|
{
|
|
QThread *t = new QThread();
|
|
connect(t, SIGNAL(finished()), t, SLOT(deleteLater()));
|
|
connect(t, SIGNAL(started()), this, SLOT(slotStartLoading()));
|
|
connect(this, SIGNAL(stopSignal()), t, SLOT(quit()));
|
|
t->start();
|
|
|
|
QString wifiName = ui->leNetName->text();
|
|
BackThread *bt = new BackThread();
|
|
strWifiname = wifiName;
|
|
//点击连接按钮以连接隐藏WiFi
|
|
if (isUsed == 0) {
|
|
int x = 0;
|
|
do {
|
|
sleep(1);
|
|
QString tmpPath = "/tmp/kylin-nm-btoutput-" + QDir::home().dirName();
|
|
QString cmd = "nmcli device wifi connect \"" + wifiName.replace("\"","\\\"") + "\" password '' hidden yes > " + tmpPath;
|
|
|
|
int status = system(cmd.toUtf8().data());
|
|
if (status != 0)
|
|
syslog(LOG_ERR, "execute 'nmcli device wifi connect' in function 'on_btnConnect_clicked' failed");
|
|
|
|
QFile file(tmpPath);
|
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
qDebug()<<"Can't open the file!"<<endl;
|
|
}
|
|
QString text = file.readAll();
|
|
file.close();
|
|
if (text.indexOf("Scanning not allowed") != -1) {
|
|
x = 1;
|
|
} else {
|
|
x = 0;
|
|
}
|
|
} while(x);
|
|
|
|
connect(this, SIGNAL(execSecConn()), this,SLOT(on_execSecConn() ));
|
|
QTimer::singleShot(5*1000, this, SLOT(on_execSecConn() ));
|
|
} else {
|
|
bt->execConnWifi(wifiName);
|
|
connect(this, SIGNAL(sendMessage()), this,SLOT(emitSignal() ));
|
|
QTimer::singleShot(4*1000, this, SLOT(emitSignal() ));
|
|
}
|
|
this->close();
|
|
}
|
|
|
|
void DlgConnHidWifi::on_leNetName_textEdited(const QString &arg1)
|
|
{
|
|
if (ui->leNetName->text() == ""){
|
|
ui->btnConnect->setEnabled(false);
|
|
} else {
|
|
ui->btnConnect->setEnabled(true);
|
|
}
|
|
}
|
|
|
|
void DlgConnHidWifi::slotStartLoading()
|
|
{
|
|
mw->startLoading();
|
|
}
|
|
|
|
void DlgConnHidWifi::on_execSecConn()
|
|
{
|
|
QString name = strWifiname;
|
|
QString str = "nmcli device wifi connect \"" + name.replace("\"","\\\"") + "\" password ''";
|
|
int status = system(str.toUtf8().data());
|
|
if (status != 0){ syslog(LOG_ERR, "execute 'nmcli device wifi connect' in function 'on_execSecConn' failed");}
|
|
connect(this, SIGNAL(sendMessage()), this,SLOT(emitSignal() ));
|
|
QTimer::singleShot(3*1000, this, SLOT(emitSignal() ));
|
|
}
|
|
|
|
void DlgConnHidWifi::emitSignal()
|
|
{
|
|
emit reSetWifiList();
|
|
mw->stopLoading();
|
|
emit this->stopSignal();
|
|
}
|
|
|
|
void DlgConnHidWifi::paintEvent(QPaintEvent *event)
|
|
{
|
|
QStyleOption opt;
|
|
opt.init(this);
|
|
QPainter p(this);
|
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
|
|
QWidget::paintEvent(event);
|
|
}
|