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

任务栏电源配置原来管理gsetting配置替换成dconfig配置 Log: 修复控制中心设置的电源选项任务栏未生效的问题 Bug: https://github.com/linuxdeepin/developer-center/issues/3768 Influence: 任务栏电池信息显示
77 lines
2.3 KiB
C++
77 lines
2.3 KiB
C++
// Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef POWERPLUGIN_H
|
|
#define POWERPLUGIN_H
|
|
|
|
#include "pluginsiteminterface.h"
|
|
#include "powerstatuswidget.h"
|
|
#include "dbus/dbuspower.h"
|
|
|
|
#include "org_deepin_dde_systempower1.h"
|
|
|
|
#include <QLabel>
|
|
|
|
using SystemPowerInter = org::deepin::dde::Power1;
|
|
|
|
DCORE_BEGIN_NAMESPACE
|
|
class DConfig;
|
|
DCORE_END_NAMESPACE
|
|
|
|
namespace Dock {
|
|
class TipsWidget;
|
|
}
|
|
class PowerPlugin : public QObject, PluginsItemInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(PluginsItemInterface)
|
|
Q_PLUGIN_METADATA(IID "com.deepin.dock.PluginsItemInterface" FILE "power.json")
|
|
|
|
public:
|
|
explicit PowerPlugin(QObject *parent = nullptr);
|
|
|
|
const QString pluginName() const override;
|
|
const QString pluginDisplayName() const override;
|
|
void init(PluginProxyInterface *proxyInter) override;
|
|
bool pluginIsAllowDisable() override { return true; }
|
|
QWidget *itemWidget(const QString &itemKey) override;
|
|
QWidget *itemTipsWidget(const QString &itemKey) override;
|
|
const QString itemCommand(const QString &itemKey) override;
|
|
void invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked) override;
|
|
void refreshIcon(const QString &itemKey) override;
|
|
int itemSortKey(const QString &itemKey) override;
|
|
void setSortKey(const QString &itemKey, const int order) override;
|
|
QIcon icon(const DockPart &dockPart, DGuiApplicationHelper::ColorType themeType) override;
|
|
PluginFlags flags() const override;
|
|
|
|
private:
|
|
void updateBatteryVisible();
|
|
void loadPlugin();
|
|
void onGSettingsChanged(const QString &key);
|
|
void initUi();
|
|
void initConnection();
|
|
|
|
private slots:
|
|
void refreshTipsData();
|
|
void onThemeTypeChanged(DGuiApplicationHelper::ColorType themeType);
|
|
|
|
private:
|
|
bool m_pluginLoaded;
|
|
bool m_showTimeToFull;
|
|
|
|
QScopedPointer<PowerStatusWidget> m_powerStatusWidget;
|
|
QScopedPointer<Dock::TipsWidget> m_tipsLabel;
|
|
|
|
SystemPowerInter *m_systemPowerInter;
|
|
DBusPower *m_powerInter;
|
|
Dtk::Core::DConfig *m_dconfig; // 配置
|
|
QTimer *m_preChargeTimer;
|
|
QWidget *m_quickPanel;
|
|
QLabel *m_imageLabel;
|
|
QLabel *m_labelText;
|
|
};
|
|
|
|
#endif // POWERPLUGIN_H
|