代码拉取完成,页面将自动刷新
同步操作将从 韦东山/Qtmxapp-desktop 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef COMMON_H
#define COMMON_H
#include <QObject>
#include <QDebug>
#include <QProcess>
#include <QtQuick>
#include <QtCore/QFileInfo>
#include <QtCore/QUrl>
class GetSystemInfo: public QObject
{
Q_OBJECT
public:
GetSystemInfo(QObject *parent = nullptr);
virtual ~GetSystemInfo();
Q_INVOKABLE int read_cpu_percent();
Q_INVOKABLE int read_memory_percent();
Q_INVOKABLE QString read_memory_usage();
Q_INVOKABLE int read_memory_free();
Q_INVOKABLE QString read_system_version();
Q_INVOKABLE int read_system_runtime();
Q_INVOKABLE void get_wifi_info();
Q_INVOKABLE void set_net_info(QString net_info);
Q_INVOKABLE QString read_net_ip();
Q_INVOKABLE QString read_net_mac();
Q_INVOKABLE int get_net_status();
Q_INVOKABLE void set_date(QString date);
Q_INVOKABLE void wifi_open();
Q_INVOKABLE void wifi_close();
Q_INVOKABLE QString get_wifi_list();
Q_INVOKABLE void connect_wifi(QString essid_passwd);
Q_INVOKABLE void disconnect_wifi();
Q_INVOKABLE void shootScreenWindow(QQuickWindow *rootWindow);
Q_INVOKABLE QUrl fromUserInput(const QString& userInput);
// Q_INVOKABLE void wifiReady();
QString getWirelessInterfaceStatus(QString interface);
void parseIwlist(QString buffer);
void Start(int interval);
QProcess *process;
QProcess *wifi_process;
QProcess *msic_process;
int totalNew, idleNew, totalOld, idleOld;
int cpuPercent;
int memoryPercent;
int memoryAll;
int memoryUse;
int memoryFree;
QString memUsed;
QString memFree;
QString memTotal;
QString wifi_id;
QString wifi_status;
QTimer *timerCPU; //定时器获取CPU信息
QTimer *timerMemory; //定时器获取内存信息
QTimer *timerWifi; //定时器获取存储信息
public slots:
void ReadData();
void Wifi_ReadData();
void msic_ReadData();
void get_memory_info();
void get_cpu_info();
// void get_wifi_info();
signals:
void begin();
void wifiReady(QVariantList wifi_data);
void wifiConnected(QString wifi_essid_info);
};
#endif // COMMON_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。