perf(plugins): 调整控制面板界面单网卡显示(story#18148)
This commit is contained in:
parent
389ebb35de
commit
a771281f6b
|
@ -83,6 +83,16 @@ NetConnect::NetConnect() : mFirstLoad(true) {
|
||||||
|
|
||||||
pluginName = tr("LAN");
|
pluginName = tr("LAN");
|
||||||
pluginType = NETWORK;
|
pluginType = NETWORK;
|
||||||
|
|
||||||
|
m_interface = new QDBusInterface("com.kylin.network",
|
||||||
|
"/com/kylin/network",
|
||||||
|
"com.kylin.network",
|
||||||
|
QDBusConnection::sessionBus());
|
||||||
|
if(!m_interface->isValid()) {
|
||||||
|
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
||||||
|
}
|
||||||
|
updatePluginShowSettings();
|
||||||
|
connect(m_interface, SIGNAL(deviceStatusChanged()), this, SLOT(updatePluginShowSettings()),Qt::QueuedConnection);
|
||||||
}
|
}
|
||||||
|
|
||||||
NetConnect::~NetConnect() {
|
NetConnect::~NetConnect() {
|
||||||
|
@ -110,6 +120,7 @@ QWidget *NetConnect::pluginUi() {
|
||||||
pluginWidget = new QWidget;
|
pluginWidget = new QWidget;
|
||||||
pluginWidget->setAttribute(Qt::WA_DeleteOnClose);
|
pluginWidget->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
ui->setupUi(pluginWidget);
|
ui->setupUi(pluginWidget);
|
||||||
|
|
||||||
m_interface = new QDBusInterface("com.kylin.network",
|
m_interface = new QDBusInterface("com.kylin.network",
|
||||||
"/com/kylin/network",
|
"/com/kylin/network",
|
||||||
"com.kylin.network",
|
"com.kylin.network",
|
||||||
|
@ -117,6 +128,9 @@ QWidget *NetConnect::pluginUi() {
|
||||||
if(!m_interface->isValid()) {
|
if(!m_interface->isValid()) {
|
||||||
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
qDBusRegisterMetaType<QVector<QStringList>>();
|
||||||
|
|
||||||
initSearchText();
|
initSearchText();
|
||||||
initComponent();
|
initComponent();
|
||||||
}
|
}
|
||||||
|
@ -130,7 +144,54 @@ const QString NetConnect::name() const {
|
||||||
|
|
||||||
bool NetConnect::isEnable() const
|
bool NetConnect::isEnable() const
|
||||||
{
|
{
|
||||||
return true;
|
//get isEnable
|
||||||
|
QDBusInterface dbus("com.kylin.network", "/com/kylin/network",
|
||||||
|
"com.kylin.network",
|
||||||
|
QDBusConnection::sessionBus());
|
||||||
|
if (!dbus.isValid()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
QMap<QString,bool> map;
|
||||||
|
QDBusReply<QVariantMap> reply = dbus.call(QStringLiteral("getDeviceListAndEnabled"),0);
|
||||||
|
if(!reply.isValid())
|
||||||
|
{
|
||||||
|
qWarning() << "[NetConnect]getWiredDeviceList error:" << reply.error().message();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariantMap::const_iterator item = reply.value().cbegin();
|
||||||
|
while (item != reply.value().cend()) {
|
||||||
|
map.insert(item.key(), item.value().toBool());
|
||||||
|
item ++;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool isEnabled = !map.isEmpty();
|
||||||
|
|
||||||
|
const QByteArray schema("org.ukui.control-center.plugins");
|
||||||
|
if (QGSettings::isSchemaInstalled(schema)) {
|
||||||
|
return isEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
//get gsettings
|
||||||
|
QGSettings *showSettings;
|
||||||
|
QString path("/org/ukui/control-center/plugins/netconnect/");
|
||||||
|
showSettings = new QGSettings(schema, path.toUtf8());
|
||||||
|
|
||||||
|
QVariant enabledState = showSettings->get("show");
|
||||||
|
|
||||||
|
//set gsettings
|
||||||
|
if (!enabledState.isValid() || enabledState.isNull()) {
|
||||||
|
qWarning() << "QGSettins get plugin show status error";
|
||||||
|
} else {
|
||||||
|
if (enabledState.toBool() != isEnabled) {
|
||||||
|
showSettings->set("show", isEnabled);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
delete showSettings;
|
||||||
|
showSettings = nullptr;
|
||||||
|
|
||||||
|
return isEnabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -154,7 +215,8 @@ void NetConnect::initSearchText() {
|
||||||
ui->detailBtn->setText(tr("Advanced settings"));
|
ui->detailBtn->setText(tr("Advanced settings"));
|
||||||
ui->titleLabel->setText(tr("LAN"));
|
ui->titleLabel->setText(tr("LAN"));
|
||||||
//~ contents_path /netconnect/open
|
//~ contents_path /netconnect/open
|
||||||
ui->openLabel->setText(tr("open"));
|
tr("open");
|
||||||
|
ui->openLabel->setText(tr("LAN"));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool NetConnect::eventFilter(QObject *w, QEvent *e) {
|
bool NetConnect::eventFilter(QObject *w, QEvent *e) {
|
||||||
|
@ -934,3 +996,8 @@ QMap<QString, QList<QStringList>> NetConnect::getWiredList()
|
||||||
}
|
}
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NetConnect::updatePluginShowSettings()
|
||||||
|
{
|
||||||
|
isEnable();
|
||||||
|
}
|
||||||
|
|
|
@ -156,6 +156,9 @@ private slots:
|
||||||
|
|
||||||
void onDeviceStatusChanged();
|
void onDeviceStatusChanged();
|
||||||
void onDeviceNameChanged(QString, QString, int);
|
void onDeviceNameChanged(QString, QString, int);
|
||||||
|
|
||||||
|
//更新控制面板插件Gsetting show
|
||||||
|
void updatePluginShowSettings();
|
||||||
};
|
};
|
||||||
|
|
||||||
Q_DECLARE_METATYPE(QList<QDBusObjectPath>);
|
Q_DECLARE_METATYPE(QList<QDBusObjectPath>);
|
||||||
|
|
|
@ -139,6 +139,15 @@ WlanConnect::WlanConnect() : m_firstLoad(true) {
|
||||||
|
|
||||||
pluginName = tr("WLAN");
|
pluginName = tr("WLAN");
|
||||||
pluginType = NETWORK;
|
pluginType = NETWORK;
|
||||||
|
|
||||||
|
m_interface = new QDBusInterface("com.kylin.network", "/com/kylin/network",
|
||||||
|
"com.kylin.network",
|
||||||
|
QDBusConnection::sessionBus());
|
||||||
|
if(!m_interface->isValid()) {
|
||||||
|
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
||||||
|
}
|
||||||
|
updatePluginShowSettings();
|
||||||
|
connect(m_interface, SIGNAL(wirelessDeviceStatusChanged()), this, SLOT(updatePluginShowSettings()), Qt::QueuedConnection);
|
||||||
}
|
}
|
||||||
|
|
||||||
WlanConnect::~WlanConnect()
|
WlanConnect::~WlanConnect()
|
||||||
|
@ -167,13 +176,14 @@ QWidget *WlanConnect::pluginUi() {
|
||||||
pluginWidget->setAttribute(Qt::WA_DeleteOnClose);
|
pluginWidget->setAttribute(Qt::WA_DeleteOnClose);
|
||||||
ui->setupUi(pluginWidget);
|
ui->setupUi(pluginWidget);
|
||||||
qDBusRegisterMetaType<QVector<QStringList>>();
|
qDBusRegisterMetaType<QVector<QStringList>>();
|
||||||
qDBusRegisterMetaType<QStringList>();
|
qDBusRegisterMetaType<QStringList>();
|
||||||
m_interface = new QDBusInterface("com.kylin.network", "/com/kylin/network",
|
m_interface = new QDBusInterface("com.kylin.network", "/com/kylin/network",
|
||||||
"com.kylin.network",
|
"com.kylin.network",
|
||||||
QDBusConnection::sessionBus());
|
QDBusConnection::sessionBus());
|
||||||
if(!m_interface->isValid()) {
|
if(!m_interface->isValid()) {
|
||||||
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
qWarning() << qPrintable(QDBusConnection::sessionBus().lastError().message());
|
||||||
}
|
}
|
||||||
|
|
||||||
initSearchText();
|
initSearchText();
|
||||||
initComponent();
|
initComponent();
|
||||||
}
|
}
|
||||||
|
@ -187,7 +197,61 @@ const QString WlanConnect::name() const {
|
||||||
|
|
||||||
bool WlanConnect::isEnable() const
|
bool WlanConnect::isEnable() const
|
||||||
{
|
{
|
||||||
return true;
|
//get isEnable
|
||||||
|
QDBusInterface dbus("com.kylin.network", "/com/kylin/network",
|
||||||
|
"com.kylin.network",
|
||||||
|
QDBusConnection::sessionBus());
|
||||||
|
if (!dbus.isValid()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
QMap<QString,bool> map;
|
||||||
|
QDBusReply<QVariantMap> reply = dbus.call(QStringLiteral("getDeviceListAndEnabled"), 1);
|
||||||
|
if(!reply.isValid())
|
||||||
|
{
|
||||||
|
qWarning() << "[NetConnect]getWiredDeviceList error:" << reply.error().message();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariantMap::const_iterator item = reply.value().cbegin();
|
||||||
|
while (item != reply.value().cend()) {
|
||||||
|
map.insert(item.key(), item.value().toBool());
|
||||||
|
item ++;
|
||||||
|
}
|
||||||
|
//筛选已托管(managed)网卡
|
||||||
|
QStringList list;
|
||||||
|
QMap<QString, bool>::iterator iters;
|
||||||
|
for (iters = map.begin(); iters != map.end(); ++iters) {
|
||||||
|
if (iters.value() == true) {
|
||||||
|
list << iters.key();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool isEnabled = !list.isEmpty();
|
||||||
|
|
||||||
|
const QByteArray schema("org.ukui.control-center.plugins");
|
||||||
|
if (QGSettings::isSchemaInstalled(schema)) {
|
||||||
|
return isEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
//get gsettings
|
||||||
|
QGSettings *showSettings;
|
||||||
|
QString path("/org/ukui/control-center/plugins/wlanconnect/");
|
||||||
|
showSettings = new QGSettings(schema, path.toUtf8());
|
||||||
|
|
||||||
|
QVariant enabledState = showSettings->get("show");
|
||||||
|
|
||||||
|
//set gsettings
|
||||||
|
if (!enabledState.isValid() || enabledState.isNull()) {
|
||||||
|
qWarning() << "QGSettins get plugin show status error";
|
||||||
|
} else {
|
||||||
|
if (enabledState.toBool() != isEnabled) {
|
||||||
|
showSettings->set("show", isEnabled);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
delete showSettings;
|
||||||
|
showSettings = nullptr;
|
||||||
|
|
||||||
|
return isEnabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -211,7 +275,8 @@ void WlanConnect::initSearchText() {
|
||||||
ui->detailBtn->setText(tr("Advanced settings"));
|
ui->detailBtn->setText(tr("Advanced settings"));
|
||||||
ui->titleLabel->setText(tr("WLAN"));
|
ui->titleLabel->setText(tr("WLAN"));
|
||||||
//~ contents_path /wlanconnect/open
|
//~ contents_path /wlanconnect/open
|
||||||
ui->openLabel->setText(tr("open"));
|
tr("open");
|
||||||
|
ui->openLabel->setText(tr("WLAN"));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool WlanConnect::eventFilter(QObject *w, QEvent *e) {
|
bool WlanConnect::eventFilter(QObject *w, QEvent *e) {
|
||||||
|
@ -1133,3 +1198,8 @@ QMap<QString, QList<QStringList>> WlanConnect::getWirelessList()
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void WlanConnect::updatePluginShowSettings()
|
||||||
|
{
|
||||||
|
isEnable();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -194,6 +194,7 @@ private slots:
|
||||||
|
|
||||||
void reScan();
|
void reScan();
|
||||||
|
|
||||||
|
//更新控制面板插件Gsetting show
|
||||||
|
void updatePluginShowSettings();
|
||||||
};
|
};
|
||||||
#endif // WLANCONNECT_H
|
#endif // WLANCONNECT_H
|
||||||
|
|
Loading…
Reference in New Issue