2018-12-21 17:28:21 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
|
|
|
*
|
|
|
|
* Author: listenerri <listenerri@gmail.com>
|
|
|
|
*
|
|
|
|
* Maintainer: listenerri <listenerri@gmail.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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ONBOARDPLUGIN_H
|
|
|
|
#define ONBOARDPLUGIN_H
|
|
|
|
|
|
|
|
#include "pluginsiteminterface.h"
|
|
|
|
#include "onboarditem.h"
|
|
|
|
|
|
|
|
#include <QLabel>
|
2021-05-25 13:05:45 +08:00
|
|
|
#include <QScopedPointer>
|
|
|
|
|
2020-06-29 15:35:51 +08:00
|
|
|
namespace Dock {
|
|
|
|
class TipsWidget;
|
|
|
|
}
|
2018-12-21 17:28:21 +08:00
|
|
|
class OnboardPlugin : public QObject, PluginsItemInterface
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_INTERFACES(PluginsItemInterface)
|
|
|
|
Q_PLUGIN_METADATA(IID "com.deepin.dock.PluginsItemInterface" FILE "onboard.json")
|
|
|
|
|
|
|
|
public:
|
2020-06-13 19:19:30 +08:00
|
|
|
explicit OnboardPlugin(QObject *parent = nullptr);
|
2018-12-21 17:28:21 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
void invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked) override;
|
|
|
|
void displayModeChanged(const Dock::DisplayMode displayMode) override;
|
|
|
|
|
2020-06-13 19:19:30 +08:00
|
|
|
int itemSortKey(const QString &itemKey) override;
|
|
|
|
void setSortKey(const QString &itemKey, const int order) override;
|
2018-12-21 17:28:21 +08:00
|
|
|
|
2019-01-30 18:00:46 +08:00
|
|
|
void pluginSettingsChanged() override;
|
2022-12-02 15:41:34 +08:00
|
|
|
QIcon icon(const DockPart &dockPart, DGuiApplicationHelper::ColorType themeType) override;
|
|
|
|
PluginMode status() const override;
|
2022-11-09 02:31:27 +00:00
|
|
|
QString description() const override;
|
2019-01-30 18:00:46 +08:00
|
|
|
|
2018-12-21 17:28:21 +08:00
|
|
|
private:
|
|
|
|
void loadPlugin();
|
2019-01-30 18:00:46 +08:00
|
|
|
void refreshPluginItemsVisible();
|
2018-12-21 17:28:21 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_pluginLoaded;
|
2020-03-07 14:35:12 +08:00
|
|
|
bool m_startupState;
|
2018-12-21 17:28:21 +08:00
|
|
|
|
2021-05-25 13:05:45 +08:00
|
|
|
QScopedPointer<OnboardItem> m_onboardItem;
|
|
|
|
QScopedPointer<Dock::TipsWidget> m_tipsLabel;
|
2018-12-21 17:28:21 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ONBOARDPLUGIN_H
|