2022-07-05 10:13:48 +08:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
|
|
|
* Copyright (C) 2022 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 2 of the License, 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
2021-10-27 12:28:16 +08:00
|
|
|
#ifndef MOBILEHOTSPOTWIDGET_H
|
|
|
|
#define MOBILEHOTSPOTWIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QComboBox>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QCheckBox>
|
|
|
|
|
|
|
|
#include <QTranslator>
|
|
|
|
#include <QApplication>
|
2022-07-04 13:45:35 +08:00
|
|
|
#include <QTimer>
|
2021-10-27 12:28:16 +08:00
|
|
|
|
|
|
|
#include <QDBusMessage>
|
|
|
|
#include <QDBusObjectPath>
|
|
|
|
#include <QDBusInterface>
|
|
|
|
#include <QDBusReply>
|
|
|
|
#include <QDBusMetaType>
|
2022-07-04 13:45:35 +08:00
|
|
|
#include <QScrollArea>
|
2021-10-27 12:28:16 +08:00
|
|
|
|
|
|
|
#include "titlelabel.h"
|
2022-05-27 10:48:16 +08:00
|
|
|
#include "kwidget.h"
|
|
|
|
#include "kswitchbutton.h"
|
2022-06-10 15:06:05 +08:00
|
|
|
#include "kpasswordedit.h"
|
2022-07-04 13:45:35 +08:00
|
|
|
#include "connectdevlistitem.h"
|
|
|
|
#include "blacklistpage.h"
|
|
|
|
#include "connectdevpage.h"
|
2022-05-27 10:48:16 +08:00
|
|
|
|
|
|
|
using namespace kdk;
|
2021-10-27 12:28:16 +08:00
|
|
|
|
|
|
|
class MobileHotspotWidget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit MobileHotspotWidget(QWidget *parent = nullptr);
|
|
|
|
~MobileHotspotWidget();
|
|
|
|
|
|
|
|
private:
|
2022-07-06 09:16:31 +08:00
|
|
|
QFrame *m_hotspotFrame = nullptr;
|
2021-10-27 12:28:16 +08:00
|
|
|
QFrame *m_switchFrame = nullptr; //开关
|
|
|
|
QFrame *m_ApNameFrame = nullptr; //wifi名称
|
|
|
|
QFrame *m_passwordFrame = nullptr; //密码
|
|
|
|
QFrame *m_freqBandFrame = nullptr; //频带
|
|
|
|
QFrame *m_interfaceFrame = nullptr; //网卡
|
|
|
|
|
2022-05-27 10:48:16 +08:00
|
|
|
KSwitchButton *m_switchBtn;
|
2021-10-27 12:28:16 +08:00
|
|
|
|
|
|
|
TitleLabel *m_hotspotTitleLabel;
|
|
|
|
QLabel *m_switchLabel;
|
|
|
|
QLabel *m_apNameLabel;
|
|
|
|
QLabel *m_pwdLabel;
|
2022-06-28 17:28:15 +08:00
|
|
|
QLabel *m_pwdHintLabel;
|
2021-10-27 12:28:16 +08:00
|
|
|
QLabel *m_freqBandLabel;
|
|
|
|
QLabel *m_interfaceLabel;
|
|
|
|
|
|
|
|
QFrame *switchAndApNameLine;
|
|
|
|
QFrame *apNameAndPwdLine;
|
|
|
|
QFrame *pwdAndfreqBandLine;
|
|
|
|
QFrame *freqBandAndInterfaceLine;
|
|
|
|
|
2022-07-04 13:45:35 +08:00
|
|
|
QVBoxLayout *m_Vlayout;
|
2021-10-27 12:28:16 +08:00
|
|
|
|
|
|
|
QLineEdit *m_apNameLine;
|
2022-06-10 15:06:05 +08:00
|
|
|
KPasswordEdit *m_pwdNameLine;
|
2021-10-27 12:28:16 +08:00
|
|
|
|
|
|
|
QComboBox *m_freqBandComboBox;
|
|
|
|
QComboBox *m_interfaceComboBox;
|
|
|
|
|
|
|
|
QDBusInterface *m_interface = nullptr;
|
|
|
|
|
|
|
|
QString m_interfaceName = "";
|
|
|
|
|
|
|
|
QGSettings *m_switchGsettings = nullptr;
|
|
|
|
|
|
|
|
QString m_uuid = "";
|
|
|
|
QString m_hostName = "";
|
|
|
|
|
2022-07-07 09:20:34 +08:00
|
|
|
void resetFrameSize();
|
2021-10-27 12:28:16 +08:00
|
|
|
void initUI();
|
|
|
|
void initDbusConnect();
|
|
|
|
void initInterfaceInfo();
|
|
|
|
void getApInfo();
|
|
|
|
bool getApInfoBySsid(QString devName, QString ssid, QStringList &info);
|
|
|
|
void setSwitchFrame();
|
|
|
|
void setApNameFrame();
|
|
|
|
void setPasswordFrame();
|
|
|
|
void setFreqBandFrame();
|
|
|
|
void setInterFaceFrame();
|
|
|
|
|
|
|
|
void setUiEnabled(bool enable);
|
|
|
|
void setWidgetHidden(bool isHidden);
|
|
|
|
|
|
|
|
void showDesktopNotify(const QString &message);
|
|
|
|
|
|
|
|
void updateBandCombox();
|
|
|
|
|
|
|
|
QString getHostName();
|
|
|
|
|
|
|
|
bool eventFilter(QObject *watched, QEvent *event);
|
|
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
|
|
|
|
QFrame* myLine();
|
|
|
|
|
2022-07-04 13:45:35 +08:00
|
|
|
QDBusInterface *m_activePathInterface = nullptr;
|
|
|
|
QDBusInterface *m_settingPathInterface = nullptr;
|
|
|
|
|
|
|
|
ConnectdevPage * m_connectDevPage = nullptr;
|
|
|
|
BlacklistPage *m_blacklistPage = nullptr;
|
|
|
|
|
|
|
|
QString getActivePathByUuid();
|
|
|
|
QString getSettingPathByUuid();
|
|
|
|
void initNmDbus();
|
|
|
|
void initActivePathInterface(QString path);
|
|
|
|
void deleteActivePathInterface();
|
|
|
|
void initSettingPathInterface(QString path);
|
|
|
|
void deleteSettingPathInterface();
|
|
|
|
void initConnectDevPage();
|
|
|
|
void initBlackListPage();
|
|
|
|
|
2021-10-27 12:28:16 +08:00
|
|
|
signals:
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onActivateFailed(QString errorMessage);
|
|
|
|
void onDeactivateFailed(QString errorMessage);
|
|
|
|
//设备插拔
|
|
|
|
void onDeviceStatusChanged();
|
|
|
|
void onDeviceNameChanged(QString oldName, QString newName, int type);
|
|
|
|
//热点断开
|
|
|
|
void onHotspotDeactivated(QString devName, QString ssid);
|
|
|
|
//热点连接
|
2022-07-04 13:45:35 +08:00
|
|
|
void onHotspotActivated(QString devName, QString ssid, QString uuid, QString activePath, QString settingPath);
|
2021-10-27 12:28:16 +08:00
|
|
|
|
|
|
|
void onGsettingChanged(const QString &key);
|
|
|
|
|
|
|
|
void onActiveConnectionChanged(QString deviceName, QString ssid, QString uuid, int status);
|
|
|
|
|
2021-11-19 11:05:38 +08:00
|
|
|
void onApLineEditTextEdit(QString text);
|
2021-10-27 12:28:16 +08:00
|
|
|
|
2022-06-30 14:58:47 +08:00
|
|
|
void onPwdTextChanged();
|
2021-10-27 12:28:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MOBILEHOTSPOTWIDGET_H
|