mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-03 00:15:21 +00:00

音量调节幅度为2%,这里的控件上次修改时漏掉了 亮度调节也有类似的问题,一并修复 Log: 修复音量调节控件幅度不正确的问题 Influence: 音量控件调节幅度 Bug: https://pms.uniontech.com/bug-view-172417.html Change-Id: I945698a16b8ad19dee8d22e71cc639ca68204946
74 lines
2.9 KiB
C++
74 lines
2.9 KiB
C++
/*
|
|
* Copyright (C) 2021 ~ 2022 Uniontech Software Technology Co.,Ltd.
|
|
*
|
|
* Author: zhaoyingzhen <zhaoyingzhen@uniontech.com>
|
|
*
|
|
* Maintainer: zhaoyingzhen <zhaoyingzhen@uniontech.com>
|
|
*
|
|
* 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 "brightnessadjwidget.h"
|
|
#include "brightnessmodel.h"
|
|
#include "slidercontainer.h"
|
|
#include "imageutil.h"
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
const int ItemSpacing = 5;
|
|
|
|
BrightnessAdjWidget::BrightnessAdjWidget(QWidget *parent)
|
|
: QWidget(parent)
|
|
, m_mainLayout(new QVBoxLayout(this))
|
|
, m_brightnessModel(new BrightnessModel(this))
|
|
{
|
|
m_mainLayout->setMargin(0);
|
|
m_mainLayout->setSpacing(ItemSpacing);
|
|
|
|
loadBrightnessItem();
|
|
}
|
|
|
|
void BrightnessAdjWidget::loadBrightnessItem()
|
|
{
|
|
QList<BrightMonitor *> monitors = m_brightnessModel->monitors();
|
|
int itemHeight = monitors.count() > 1 ? 56 : 30;
|
|
|
|
for (BrightMonitor *monitor : monitors) {
|
|
SliderContainer *sliderContainer = new SliderContainer(this);
|
|
if (monitors.count() > 1)
|
|
sliderContainer->setTitle(monitor->name());
|
|
|
|
QPixmap leftPixmap = ImageUtil::loadSvg(":/icons/resources/brightnesslow", QSize(20, 20));
|
|
QPixmap rightPixmap = ImageUtil::loadSvg(":/icons/resources/brightnesshigh", QSize(20, 20));
|
|
sliderContainer->setIcon(SliderContainer::IconPosition::LeftIcon,leftPixmap, QSize(), 12);
|
|
sliderContainer->setIcon(SliderContainer::IconPosition::RightIcon, rightPixmap, QSize(), 12);
|
|
// 需求要求调节范围是10%-100%,且调节幅度为1%
|
|
sliderContainer->setRange(10, 100);
|
|
sliderContainer->setPageStep(1);
|
|
sliderContainer->setFixedWidth(310);
|
|
sliderContainer->setFixedHeight(itemHeight);
|
|
sliderContainer->updateSliderValue(monitor->brightness());
|
|
|
|
SliderProxyStyle *proxy = new SliderProxyStyle(SliderProxyStyle::Normal);
|
|
sliderContainer->setSliderProxyStyle(proxy);
|
|
m_mainLayout->addWidget(sliderContainer);
|
|
|
|
connect(monitor, &BrightMonitor::brightnessChanged, sliderContainer, &SliderContainer::updateSliderValue);
|
|
connect(sliderContainer, &SliderContainer::sliderValueChanged, monitor, &BrightMonitor::setBrightness);
|
|
}
|
|
|
|
QMargins margins = this->contentsMargins();
|
|
setFixedHeight(margins.top() + margins.bottom() + monitors.count() * itemHeight + monitors.count() * ItemSpacing);
|
|
}
|
|
|