2017-09-18 14:33:44 +08:00
|
|
|
/*
|
2018-02-07 11:52:47 +08:00
|
|
|
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
|
2017-09-18 14:33:44 +08:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2016-06-24 11:32:25 +08:00
|
|
|
#ifndef PLUGINPROXYINTERFACE_H
|
|
|
|
#define PLUGINPROXYINTERFACE_H
|
|
|
|
|
2016-06-27 14:33:21 +08:00
|
|
|
#include "constants.h"
|
|
|
|
|
2016-06-24 11:32:25 +08:00
|
|
|
#include <QtCore>
|
|
|
|
|
|
|
|
class PluginsItemInterface;
|
|
|
|
class PluginProxyInterface
|
|
|
|
{
|
|
|
|
public:
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemAdded
|
|
|
|
/// add a new dock item
|
|
|
|
/// if itemkey of this plugin inter already exist, the new item
|
|
|
|
/// will be ignored, so if you need to add multiple item, you need
|
|
|
|
/// to ensure all itemKey is different.
|
|
|
|
/// \param itemInter
|
|
|
|
/// your plugin interface
|
|
|
|
/// \param itemKey
|
|
|
|
/// your item unique key
|
|
|
|
///
|
2016-06-24 11:32:25 +08:00
|
|
|
virtual void itemAdded(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemUpdate
|
|
|
|
/// update(repaint) spec item
|
|
|
|
/// \param itemInter
|
|
|
|
/// \param itemKey
|
|
|
|
///
|
2016-06-28 10:06:04 +08:00
|
|
|
virtual void itemUpdate(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemRemoved
|
|
|
|
/// remove spec item, if spec item is not exist, dock will to nothing.
|
|
|
|
/// dock will NOT delete your object, you should manage memory by your self.
|
|
|
|
/// \param itemInter
|
|
|
|
/// \param itemKey
|
|
|
|
///
|
2016-06-28 17:48:02 +08:00
|
|
|
virtual void itemRemoved(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
2016-09-19 14:11:18 +08:00
|
|
|
/// \brief requestContextMenu
|
|
|
|
/// request show context menu
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
2016-09-19 14:11:18 +08:00
|
|
|
virtual void requestContextMenu(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
|
2018-11-08 11:39:26 +08:00
|
|
|
|
|
|
|
///
|
|
|
|
/// \brief saveValue
|
|
|
|
/// save module config to .config/deepin/dde-dock.conf
|
|
|
|
///
|
|
|
|
virtual void saveValue(PluginsItemInterface * const itemInter, const QString &itemKey, const QVariant &value) = 0;
|
|
|
|
|
|
|
|
///
|
|
|
|
/// \brief getValue
|
|
|
|
/// return value from .config/deepin/dde-dock.conf
|
|
|
|
///
|
|
|
|
virtual const QVariant getValue(PluginsItemInterface *const itemInter, const QString &itemKey, const QVariant& failback = QVariant()) = 0;
|
2016-06-24 11:32:25 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PLUGINPROXYINTERFACE_H
|