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

https://github.com/linuxdeepin/internal-discussion/issues/1074 Change-Id: I25c4a52b87de2ef4ff0ce942dd298ac3c8e06f7a
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
#ifndef HOMEMONITORPLUGIN_H
|
|
#define HOMEMONITORPLUGIN_H
|
|
|
|
#include "informationwidget.h"
|
|
|
|
#include <QObject>
|
|
|
|
#include <dde-dock/pluginsiteminterface.h>
|
|
|
|
class HomeMonitorPlugin : public QObject, PluginsItemInterface
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(PluginsItemInterface)
|
|
Q_PLUGIN_METADATA(IID "com.deepin.dock.PluginsItemInterface" FILE "home_monitor.json")
|
|
|
|
public:
|
|
explicit HomeMonitorPlugin(QObject *parent = nullptr);
|
|
|
|
const QString pluginDisplayName() const override;
|
|
const QString pluginName() const override;
|
|
void init(PluginProxyInterface *proxyInter) override;
|
|
|
|
QWidget *itemWidget(const QString &itemKey) override;
|
|
QWidget *itemTipsWidget(const QString &itemKey) override;
|
|
QWidget *itemPopupApplet(const QString &itemKey) override;
|
|
|
|
bool pluginIsAllowDisable() override;
|
|
bool pluginIsDisable() override;
|
|
void pluginStateSwitched() override;
|
|
|
|
const QString itemContextMenu(const QString &itemKey) override;
|
|
void invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked) override;
|
|
|
|
private:
|
|
InformationWidget *m_pluginWidget;
|
|
QLabel *m_tipsWidget;
|
|
QLabel *m_appletWidget;
|
|
};
|
|
|
|
#endif // HOMEMONITORPLUGIN_H
|