149 lines
5.3 KiB
C++
Executable File
149 lines
5.3 KiB
C++
Executable File
#include "leftsiderbarwidget.h"
|
|
#include <QDebug>
|
|
#include <QStyleOption>
|
|
#include <QPainter>
|
|
#include "../common/mydefine.h"
|
|
#include "component/myiconbutton.h"
|
|
#include "globalbackupinfo.h"
|
|
#include "gsettingswrapper.h"
|
|
|
|
#define PERSONALSIE_SCHEMA "org.ukui.control-center.personalise"
|
|
#define PERSONALSIE_TRAN_KEY "transparency"
|
|
#define CONTAIN_PERSONALSIE_TRAN_KEY "transparency"
|
|
|
|
LeftsiderbarWidget::LeftsiderbarWidget(QWidget *parent, StartMode mode)
|
|
: QWidget(parent)
|
|
{
|
|
m_parent = parent;
|
|
m_leftSideBarVLayout = new QVBoxLayout;
|
|
m_leftSideBarVLayout->setObjectName("m_leftSideBarVLayout");
|
|
m_leftSideBarVLayout->setContentsMargins(5,0,0,0);
|
|
m_leftSideBarVLayout->setSpacing(5);
|
|
setLayout(m_leftSideBarVLayout);
|
|
|
|
QWidget *titleWidget = new QWidget(this);
|
|
m_leftSideBarVLayout->addWidget(titleWidget);
|
|
|
|
QHBoxLayout * titleLayout = new QHBoxLayout;
|
|
m_mTitleIcon = new PixmapLabel;
|
|
m_mTitleIcon->setFixedSize(24, 24);
|
|
m_mTitleIcon->setUkuiIconSchema(THEME_YHKYLIN_BACKUP_TOOLS);
|
|
m_titleLabel = new MyLabel;
|
|
m_titleLabel->setDeplayText(tr("Backup & Restore"));
|
|
m_titleLabel->setToolTip(tr("Backup & Restore"));
|
|
m_titleLabel->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
|
|
titleWidget->setLayout(titleLayout);
|
|
titleLayout->addWidget(m_mTitleIcon);
|
|
titleLayout->addWidget(m_titleLabel);
|
|
m_leftSideBarVLayout->addSpacing(10);
|
|
|
|
// 功能列表
|
|
int funcNum = FuncTypeConverter::FunType::TOTALMODULES;
|
|
if (StartMode::livecd == mode) {
|
|
m_deplayFuncs << "BACKUP_SYSTEM" << "RESTORE_SYSTEM";
|
|
} else if (StartMode::std_user == mode) {
|
|
m_deplayFuncs << "BACKUP_DATA" << "RESTORE_DATA" << "OPERATION_LOG";
|
|
} else {
|
|
m_deplayFuncs << "BACKUP_SYSTEM" << "RESTORE_SYSTEM" << "BACKUP_DATA" << "RESTORE_DATA" << "OPERATION_LOG" << "GHOST_IMAGE";
|
|
}
|
|
|
|
m_funcGroup = new QButtonGroup(this);
|
|
FuncTypeConverter kvConverter;
|
|
for (int type = 0; type < funcNum; ++type) {
|
|
QString mnameString = kvConverter.keycodeTokeystring(type); //设置TEXT
|
|
if (!m_deplayFuncs.contains(mnameString))
|
|
continue ;
|
|
|
|
QString themeIconName = kvConverter.keycodeToThemeIconString(type);
|
|
QString mnamei18nString = kvConverter.keycodeTokeyi18nstring(type); //设置TEXT
|
|
|
|
MyIconButton *funcButton = new MyIconButton(this);
|
|
QString btnName = mnameString;
|
|
funcButton->setObjectName(btnName);
|
|
funcButton->setFixedSize(180, 40);
|
|
funcButton->setDesplayText(mnamei18nString);
|
|
QString defaultIconName(":/symbos/");
|
|
defaultIconName += themeIconName;
|
|
defaultIconName += ".png";
|
|
funcButton->setThemeIcon(themeIconName, defaultIconName);
|
|
funcButton->setToolTip(mnamei18nString);
|
|
funcButton->setCheckable(true);
|
|
connect(funcButton, &MyIconButton::clicked, [=](bool checked) {
|
|
if (checked)
|
|
emit this->selected(type);
|
|
});
|
|
|
|
// 設置無邊框,跟隨背景色
|
|
funcButton->setFlat(true);
|
|
m_funcGroup->addButton(funcButton, type);
|
|
m_leftSideBarVLayout->addWidget(funcButton);
|
|
}
|
|
|
|
connect(GlobelBackupInfo::inst().getGlobalSignals(), &GlobalSignals::busy, this, [=](bool isBusy) {
|
|
QList<QAbstractButton *> list = this->m_funcGroup->buttons();
|
|
bool enabled = !isBusy;
|
|
for (QAbstractButton * button : list) {
|
|
button->setEnabled(enabled);
|
|
}
|
|
});
|
|
|
|
m_leftSideBarVLayout->addSpacing(8);
|
|
m_leftSideBarVLayout->addStretch();
|
|
|
|
m_personalQgsettings = nullptr;
|
|
if (QGSettings::isSchemaInstalled(PERSONALSIE_SCHEMA)) {
|
|
m_personalQgsettings = new QGSettings(PERSONALSIE_SCHEMA, QByteArray(), this);
|
|
m_transparency = m_personalQgsettings->get(PERSONALSIE_TRAN_KEY).toDouble();
|
|
connect(m_personalQgsettings,&QGSettings::changed,this,[=](QString changedKey) { //监听透明度变化
|
|
if (changedKey == CONTAIN_PERSONALSIE_TRAN_KEY) {
|
|
m_transparency = m_personalQgsettings->get(PERSONALSIE_TRAN_KEY).toDouble();
|
|
// this->setWindowOpacity(m_transparency);
|
|
this->repaint();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
LeftsiderbarWidget::~LeftsiderbarWidget()
|
|
{
|
|
|
|
}
|
|
|
|
void LeftsiderbarWidget::setCheckedFunc(int func_type)
|
|
{
|
|
FuncTypeConverter kvConverter;
|
|
QString mnameString = kvConverter.keycodeTokeystring(func_type); //设置TEXT
|
|
if (!m_deplayFuncs.contains(mnameString))
|
|
return ;
|
|
|
|
QList<QAbstractButton *> list = this->m_funcGroup->buttons();
|
|
for (QAbstractButton * button : list) {
|
|
if (button->objectName() == mnameString) {
|
|
button->setChecked(true);
|
|
break ;
|
|
}
|
|
}
|
|
}
|
|
|
|
void LeftsiderbarWidget::paintEvent(QPaintEvent *event)
|
|
{
|
|
Q_UNUSED(event);
|
|
|
|
QStyleOption opt;
|
|
opt.init(this);
|
|
QPainter p(this);
|
|
p.setPen(Qt::NoPen);
|
|
QColor color = palette().color(QPalette::Window);
|
|
if (m_parent != nullptr) {
|
|
color = m_parent->palette().color(QPalette::Window);
|
|
}
|
|
color.setAlphaF(m_transparency);
|
|
QPalette pal(this->palette());
|
|
pal.setColor(QPalette::Window, QColor(color));
|
|
this->setPalette(pal);
|
|
QBrush brush = QBrush(color);
|
|
p.setBrush(brush);
|
|
p.drawRoundedRect(opt.rect,0,0);
|
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
|
|
}
|