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

蓝牙持续配对所有设备 task:20341 (cherry picked from commit d7c5842f96697d9dbf61b83a7e4f0e014b6ecaf2)
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
/*
|
|
* Copyright (C) 2016 ~ 2018 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: zhaolong <zhaolong@uniontech.com>
|
|
*
|
|
* Maintainer: zhaolong <zhaolong@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 "switchitem.h"
|
|
|
|
#include "QHBoxLayout"
|
|
|
|
extern const int ControlHeight = 35;
|
|
|
|
SwitchItem::SwitchItem(QWidget *parent)
|
|
: QWidget(parent)
|
|
, m_title(new QLabel(this))
|
|
, m_switchBtn(new DSwitchButton(this))
|
|
, m_default(false)
|
|
{
|
|
setFixedHeight(ControlHeight);
|
|
auto switchLayout = new QHBoxLayout(this);
|
|
switchLayout->setSpacing(0);
|
|
switchLayout->setMargin(0);
|
|
switchLayout->addSpacing(12);
|
|
switchLayout->addWidget(m_title);
|
|
switchLayout->addStretch();
|
|
switchLayout->addWidget(m_switchBtn);
|
|
switchLayout->addSpacing(12);
|
|
setLayout(switchLayout);
|
|
|
|
connect(m_switchBtn, &DSwitchButton::toggled, [&](bool change) {
|
|
m_checkState = change;
|
|
emit checkedChanged(change);
|
|
});
|
|
}
|
|
|
|
void SwitchItem::setChecked(const bool checked)
|
|
{
|
|
m_switchBtn->setChecked(checked);
|
|
m_checkState = checked;
|
|
}
|
|
|
|
void SwitchItem::setTitle(const QString &title)
|
|
{
|
|
m_title->setText(title);
|
|
}
|
|
|
|
//void SwitchItem::mousePressEvent(QMouseEvent *event)
|
|
//{
|
|
// emit clicked(m_adapterId);
|
|
// QWidget::mousePressEvent(event);
|
|
//}
|