mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00

merge sound, shutdown, network plugins to system-tray Change-Id: Iab7aef4c56d3e1c24b408c323ef03a8276ff43f2
121 lines
3.5 KiB
C++
121 lines
3.5 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 "devicecontrolwidget.h"
|
|
#include "horizontalseperator.h"
|
|
#include "../widgets/tipswidget.h"
|
|
|
|
#include <DHiDPIHelper>
|
|
#include <QTimer>
|
|
#include <QHBoxLayout>
|
|
#include <QDebug>
|
|
#include <QEvent>
|
|
|
|
DWIDGET_USE_NAMESPACE
|
|
|
|
DeviceControlWidget::DeviceControlWidget(QWidget *parent)
|
|
: QWidget(parent)
|
|
{
|
|
m_deviceName = new TipsWidget;
|
|
m_deviceName->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);
|
|
|
|
m_switchBtn = new DSwitchButton;
|
|
|
|
const QPixmap pixmap = DHiDPIHelper::loadNxPixmap(":/wireless/resources/wireless/refresh_normal.svg");
|
|
|
|
m_loadingIndicator = new DLoadingIndicator;
|
|
m_loadingIndicator->setImageSource(pixmap);
|
|
m_loadingIndicator->setLoading(false);
|
|
m_loadingIndicator->setSmooth(true);
|
|
m_loadingIndicator->setAniDuration(1000);
|
|
m_loadingIndicator->setAniEasingCurve(QEasingCurve::InOutCirc);
|
|
m_loadingIndicator->installEventFilter(this);
|
|
m_loadingIndicator->setFixedSize(pixmap.size() / devicePixelRatioF());
|
|
|
|
QHBoxLayout *infoLayout = new QHBoxLayout;
|
|
infoLayout->addWidget(m_deviceName);
|
|
infoLayout->addStretch();
|
|
infoLayout->addWidget(m_loadingIndicator);
|
|
infoLayout->addSpacing(10);
|
|
infoLayout->addWidget(m_switchBtn);
|
|
infoLayout->setSpacing(0);
|
|
infoLayout->setContentsMargins(20, 0, 5, 0);
|
|
|
|
// m_seperator = new HorizontalSeperator;
|
|
// m_seperator->setFixedHeight(1);
|
|
// m_seperator->setColor(Qt::black);
|
|
|
|
QVBoxLayout *centralLayout = new QVBoxLayout;
|
|
centralLayout->addStretch();
|
|
centralLayout->addLayout(infoLayout);
|
|
centralLayout->addStretch();
|
|
// centralLayout->addWidget(m_seperator);
|
|
centralLayout->setMargin(0);
|
|
centralLayout->setSpacing(0);
|
|
|
|
setLayout(centralLayout);
|
|
setFixedHeight(30);
|
|
|
|
connect(m_switchBtn, &DSwitchButton::checkedChanged, this, &DeviceControlWidget::enableButtonToggled);
|
|
}
|
|
|
|
void DeviceControlWidget::setDeviceName(const QString &name)
|
|
{
|
|
m_deviceName->setText(name);
|
|
}
|
|
|
|
void DeviceControlWidget::setDeviceEnabled(const bool enable)
|
|
{
|
|
m_switchBtn->blockSignals(true);
|
|
m_switchBtn->setChecked(enable);
|
|
m_loadingIndicator->setVisible(enable);
|
|
m_switchBtn->blockSignals(false);
|
|
}
|
|
|
|
bool DeviceControlWidget::eventFilter(QObject *watched, QEvent *event)
|
|
{
|
|
if (watched == m_loadingIndicator) {
|
|
if (event->type() == QEvent::MouseButtonPress) {
|
|
if (!m_loadingIndicator->loading()) {
|
|
refreshNetwork();
|
|
}
|
|
}
|
|
}
|
|
|
|
return QWidget::eventFilter(watched, event);
|
|
}
|
|
|
|
void DeviceControlWidget::refreshNetwork()
|
|
{
|
|
emit requestRefresh();
|
|
|
|
m_loadingIndicator->setLoading(true);
|
|
|
|
QTimer::singleShot(1000, this, [=] {
|
|
m_loadingIndicator->setLoading(false);
|
|
});
|
|
}
|
|
|
|
//void DeviceControlWidget::setSeperatorVisible(const bool visible)
|
|
//{
|
|
// m_seperator->setVisible(visible);
|
|
//}
|