mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00
192 lines
5.6 KiB
C++
192 lines
5.6 KiB
C++
/*
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: sbw <sbw@sbw.so>
|
|
*
|
|
* Maintainer: sbw <sbw@sbw.so>
|
|
*
|
|
* 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 of the License, or
|
|
* 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 "constants.h"
|
|
#include "wireditem.h"
|
|
#include "util/imageutil.h"
|
|
|
|
#include <QPainter>
|
|
#include <QMouseEvent>
|
|
#include <QIcon>
|
|
#include <QApplication>
|
|
|
|
WiredItem::WiredItem(const QString &path)
|
|
: DeviceItem(path),
|
|
|
|
m_connected(false),
|
|
m_itemTips(new QLabel(this)),
|
|
m_delayTimer(new QTimer(this))
|
|
{
|
|
// QIcon::setThemeName("deepin");
|
|
|
|
m_delayTimer->setSingleShot(false);
|
|
m_delayTimer->setInterval(200);
|
|
|
|
m_itemTips->setObjectName("wired-" + path);
|
|
m_itemTips->setVisible(false);
|
|
m_itemTips->setStyleSheet("color:white;"
|
|
"padding:0px 3px;");
|
|
|
|
connect(m_delayTimer, &QTimer::timeout, this, &WiredItem::reloadIcon);
|
|
|
|
connect(m_networkManager, &NetworkManager::globalNetworkStateChanged, m_delayTimer, static_cast<void (QTimer::*)()>(&QTimer::start));
|
|
connect(m_networkManager, &NetworkManager::deviceChanged, this, &WiredItem::deviceStateChanged);
|
|
connect(m_networkManager, &NetworkManager::networkStateChanged, m_delayTimer, static_cast<void (QTimer::*)()>(&QTimer::start));
|
|
connect(m_networkManager, &NetworkManager::activeConnectionChanged, this, &WiredItem::activeConnectionChanged);
|
|
}
|
|
|
|
NetworkDevice::NetworkType WiredItem::type() const
|
|
{
|
|
return NetworkDevice::Wired;
|
|
}
|
|
|
|
NetworkDevice::NetworkState WiredItem::state() const
|
|
{
|
|
return m_connected ? NetworkDevice::Activated : NetworkDevice::Disconnected;
|
|
}
|
|
|
|
QWidget *WiredItem::itemPopup()
|
|
{
|
|
m_itemTips->setText(tr("Unknow"));
|
|
|
|
do {
|
|
if (!m_connected)
|
|
{
|
|
m_itemTips->setText(tr("No Network"));
|
|
break;
|
|
}
|
|
|
|
const QJsonObject info = m_networkManager->deviceConnInfo(m_devicePath);
|
|
if (!info.contains("Ip4"))
|
|
break;
|
|
const QJsonObject ipv4 = info.value("Ip4").toObject();
|
|
if (!ipv4.contains("Address"))
|
|
break;
|
|
m_itemTips->setText(tr("Wired connection: %1").arg(ipv4.value("Address").toString()));
|
|
} while (false);
|
|
|
|
return m_itemTips;
|
|
}
|
|
|
|
const QString WiredItem::itemCommand() const
|
|
{
|
|
return "dbus-send --print-reply --dest=com.deepin.dde.ControlCenter /com/deepin/dde/ControlCenter com.deepin.dde.ControlCenter.ShowModule \"string:network\"";
|
|
}
|
|
|
|
void WiredItem::paintEvent(QPaintEvent *e)
|
|
{
|
|
QWidget::paintEvent(e);
|
|
|
|
QPainter painter(this);
|
|
const auto ratio = qApp->devicePixelRatio();
|
|
const int x = rect().center().x() - m_icon.rect().center().x() / ratio;
|
|
const int y = rect().center().y() - m_icon.rect().center().y() / ratio;
|
|
painter.drawPixmap(x, y, m_icon);
|
|
}
|
|
|
|
void WiredItem::resizeEvent(QResizeEvent *e)
|
|
{
|
|
DeviceItem::resizeEvent(e);
|
|
|
|
m_delayTimer->start();
|
|
}
|
|
|
|
void WiredItem::mousePressEvent(QMouseEvent *e)
|
|
{
|
|
if (e->button() != Qt::RightButton)
|
|
return QWidget::mousePressEvent(e);
|
|
|
|
const QPoint p(e->pos() - rect().center());
|
|
if (p.manhattanLength() < std::min(width(), height()) * 0.8 * 0.5)
|
|
{
|
|
emit requestContextMenu();
|
|
return;
|
|
}
|
|
|
|
return QWidget::mousePressEvent(e);
|
|
}
|
|
|
|
void WiredItem::refreshIcon()
|
|
{
|
|
m_delayTimer->start();
|
|
}
|
|
|
|
void WiredItem::reloadIcon()
|
|
{
|
|
Q_ASSERT(sender() == m_delayTimer);
|
|
|
|
const Dock::DisplayMode displayMode = qApp->property(PROP_DISPLAY_MODE).value<Dock::DisplayMode>();
|
|
|
|
QString iconName = "network-";
|
|
if (!m_connected)
|
|
{
|
|
NetworkDevice::NetworkState devState = m_networkManager->deviceState(m_devicePath);
|
|
|
|
if (devState < NetworkDevice::Disconnected)
|
|
iconName.append("error");
|
|
else
|
|
iconName.append("offline");
|
|
} else {
|
|
NetworkManager::GlobalNetworkState gState = m_networkManager->globalNetworkState();
|
|
|
|
if (gState == NetworkManager::Connecting) {
|
|
m_delayTimer->start();
|
|
const quint64 index = QDateTime::currentMSecsSinceEpoch() / 200;
|
|
const int num = (index % 5) + 1;
|
|
m_icon = QPixmap(QString(":/wired/resources/wired/network-wired-symbolic-connecting%1.svg").arg(num));
|
|
update();
|
|
return;
|
|
}
|
|
|
|
if (gState == NetworkManager::ConnectedGlobal)
|
|
iconName.append("online");
|
|
else
|
|
iconName.append("idle");
|
|
}
|
|
|
|
m_delayTimer->stop();
|
|
|
|
if (displayMode == Dock::Efficient)
|
|
iconName.append("-symbolic");
|
|
|
|
const auto ratio = qApp->devicePixelRatio();
|
|
const int size = displayMode == Dock::Efficient ? 16 : std::min(width(), height()) * 0.8;
|
|
m_icon = QIcon::fromTheme(iconName).pixmap(size * ratio, size * ratio);
|
|
m_icon.setDevicePixelRatio(ratio);
|
|
update();
|
|
}
|
|
|
|
void WiredItem::activeConnectionChanged()
|
|
{
|
|
// if (path != m_devicePath)
|
|
// return;
|
|
|
|
m_connected = m_networkManager->activeDeviceSet().contains(m_devicePath);
|
|
m_delayTimer->start();
|
|
}
|
|
|
|
void WiredItem::deviceStateChanged(const NetworkDevice &device)
|
|
{
|
|
if (device.path() != m_devicePath)
|
|
return;
|
|
m_delayTimer->start();
|
|
}
|