kylin-nm/src/ksimplenm.h

67 lines
2.0 KiB
C
Raw Normal View History

/*
2020-06-23 12:01:21 +08:00
* Copyright (C) 2020 Tianjin KYLIN Information Technology 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/&gt;.
*
*/
#ifndef KSIMPLENM_H
#define KSIMPLENM_H
#include <sys/syslog.h>
#include <QObject>
#include <QProcess>
#include <QDebug>
class KSimpleNM : public QObject
{
Q_OBJECT
public:
explicit KSimpleNM(QObject *parent = nullptr);
2021-01-09 19:49:25 +08:00
~KSimpleNM();
QProcess *runProcessLan;
2021-01-10 09:32:59 +08:00
QProcess *runProcessWifi;
QProcess *runProcessConn;
2021-01-09 19:49:25 +08:00
QString shellOutputLan;
2021-01-10 09:32:59 +08:00
QString shellOutputWifi;
QString shellOutputConn;
2020-05-28 20:02:25 +08:00
bool isExecutingGetLanList = false; //是否正在执行获取有线网列表
bool isExecutingGetWifiList = false; //是否正在执行获取无线网列表
bool isUseOldLanSlist = false; //是否应该要用上一次获取的有线列表
2021-01-09 19:15:35 +08:00
bool isUseOldWifiSlist = false; //是否应该要用上一次获取的有线列表
void execGetLanList();
2021-05-18 20:57:10 +08:00
void execGetWifiList(const QString& wname, const bool& isHuaweiPc = false);
void execGetConnList();
signals:
void getLanListFinished(QStringList slist);
void getWifiListFinished(QStringList slist);
void getConnListFinished(QStringList slist);
void requestRevalueUpdateWifi();
public slots:
2021-01-09 19:49:25 +08:00
void readProcessLan();
2021-01-10 09:32:59 +08:00
void readProcessWifi();
void readProcessConn();
2021-01-09 19:49:25 +08:00
void finishedProcessLan(int msg);
2021-01-10 09:32:59 +08:00
void finishedProcessWifi(int msg);
void finishedProcessConn(int msg);
};
#endif // KSIMPLENM_H