mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
116 lines
3.7 KiB
C++
116 lines
3.7 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/>.
|
||
*/
|
||
|
||
#ifndef SHUTDOWNPLUGIN_H
|
||
#define SHUTDOWNPLUGIN_H
|
||
|
||
#include "pluginsiteminterface.h"
|
||
#include "shutdownwidget.h"
|
||
#include "../widgets/tipswidget.h"
|
||
#include "./dbus/dbuslogin1manager.h"
|
||
|
||
#include <QLabel>
|
||
|
||
class ShutdownPlugin : public QObject, PluginsItemInterface
|
||
{
|
||
Q_OBJECT
|
||
Q_INTERFACES(PluginsItemInterface)
|
||
Q_PLUGIN_METADATA(IID "com.deepin.dock.PluginsItemInterface" FILE "shutdown.json")
|
||
|
||
public:
|
||
explicit ShutdownPlugin(QObject *parent = nullptr);
|
||
|
||
const QString pluginName() const override;
|
||
const QString pluginDisplayName() const override;
|
||
void init(PluginProxyInterface *proxyInter) override;
|
||
|
||
void pluginStateSwitched() override;
|
||
bool pluginIsAllowDisable() override { return true; }
|
||
bool pluginIsDisable() override;
|
||
|
||
QWidget *itemWidget(const QString &itemKey) override;
|
||
QWidget *itemTipsWidget(const QString &itemKey) override;
|
||
const QString itemCommand(const QString &itemKey) override;
|
||
const QString itemContextMenu(const QString &itemKey) override;
|
||
void invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked) override;
|
||
void displayModeChanged(const Dock::DisplayMode displayMode) override;
|
||
|
||
int itemSortKey(const QString &itemKey) override;
|
||
void setSortKey(const QString &itemKey, const int order) override;
|
||
|
||
void pluginSettingsChanged() override;
|
||
|
||
// 休眠待机配置,保持和sessionshell一致
|
||
const QStringList session_ui_configs {
|
||
"/etc/lightdm/lightdm-deepin-greeter.conf",
|
||
"/etc/deepin/dde-session-ui.conf",
|
||
"/usr/share/dde-session-ui/dde-session-ui.conf"
|
||
};
|
||
template <typename T>
|
||
T findValueByQSettings(const QStringList &configFiles,
|
||
const QString &group,
|
||
const QString &key,
|
||
const QVariant &failback)
|
||
{
|
||
for (const QString &path : configFiles) {
|
||
QSettings settings(path, QSettings::IniFormat);
|
||
if (!group.isEmpty()) {
|
||
settings.beginGroup(group);
|
||
}
|
||
|
||
const QVariant& v = settings.value(key);
|
||
if (v.isValid()) {
|
||
T t = v.value<T>();
|
||
return t;
|
||
}
|
||
}
|
||
|
||
return failback.value<T>();
|
||
}
|
||
|
||
template <typename T>
|
||
T valueByQSettings(const QString & group,
|
||
const QString & key,
|
||
const QVariant &failback) {
|
||
return findValueByQSettings<T>(session_ui_configs,
|
||
group,
|
||
key,
|
||
failback);
|
||
}
|
||
|
||
std::pair<bool, qint64> checkIsPartitionType(const QStringList &list);
|
||
qint64 get_power_image_size();
|
||
|
||
private:
|
||
void loadPlugin();
|
||
bool checkSwap();
|
||
void refreshPluginItemsVisible();
|
||
|
||
private:
|
||
bool m_pluginLoaded;
|
||
|
||
ShutdownWidget *m_shutdownWidget;
|
||
TipsWidget *m_tipsLabel;
|
||
DBusLogin1Manager* m_login1Inter;
|
||
};
|
||
|
||
#endif // SHUTDOWNPLUGIN_H
|