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-15 17:44:38 +08:00
|
|
|
#ifndef PLUGINSITEMINTERFACE_H
|
|
|
|
#define PLUGINSITEMINTERFACE_H
|
|
|
|
|
2016-06-24 11:32:25 +08:00
|
|
|
#include "pluginproxyinterface.h"
|
|
|
|
|
|
|
|
#include <QIcon>
|
2016-06-16 17:48:19 +08:00
|
|
|
#include <QtCore>
|
|
|
|
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief The PluginsItemInterface class
|
|
|
|
/// the dock plugins item interface, all dock plugins should
|
|
|
|
/// inheirt this class and override all pure virtual function.
|
|
|
|
///
|
2016-06-15 17:44:38 +08:00
|
|
|
class PluginsItemInterface
|
|
|
|
{
|
|
|
|
public:
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief ~PluginsItemInterface
|
2017-04-07 15:10:29 +08:00
|
|
|
/// DON'T try to delete m_proxyInter.
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
2016-06-15 17:44:38 +08:00
|
|
|
virtual ~PluginsItemInterface() {}
|
2016-06-16 16:56:21 +08:00
|
|
|
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief pluginName
|
|
|
|
/// tell dock the unique plugin id
|
|
|
|
/// \return
|
|
|
|
///
|
2016-06-28 14:23:30 +08:00
|
|
|
virtual const QString pluginName() const = 0;
|
2017-10-23 10:06:36 +08:00
|
|
|
virtual const QString pluginDisplayName() const { return QString(); }
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief init
|
|
|
|
/// init your plugins, you need to save proxyInter to m_proxyInter
|
|
|
|
/// member variable. but you shouldn't free this pointer.
|
|
|
|
/// \param proxyInter
|
2017-04-07 15:10:29 +08:00
|
|
|
/// DON'T try to delete this pointer.
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
2016-06-24 11:32:25 +08:00
|
|
|
virtual void init(PluginProxyInterface *proxyInter) = 0;
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemWidget
|
|
|
|
/// your plugin item widget, each item should have a unique key.
|
|
|
|
/// \param itemKey
|
|
|
|
/// your widget' unqiue key.
|
|
|
|
/// \return
|
|
|
|
///
|
2016-07-13 17:16:22 +08:00
|
|
|
virtual QWidget *itemWidget(const QString &itemKey) = 0;
|
|
|
|
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemTipsWidget
|
|
|
|
/// override this function if your item want to have a tips.
|
|
|
|
/// the tips will shown when user hover your item.
|
|
|
|
/// nullptr will be ignored.
|
|
|
|
/// \param itemKey
|
|
|
|
/// \return
|
|
|
|
///
|
2016-07-13 17:16:22 +08:00
|
|
|
virtual QWidget *itemTipsWidget(const QString &itemKey) {Q_UNUSED(itemKey); return nullptr;}
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemPopupApplet
|
|
|
|
/// override this function if your item wants to have an popup applet.
|
|
|
|
/// the popup applet will shown when user click your item.
|
|
|
|
///
|
|
|
|
/// Tips:
|
|
|
|
/// dock should receive mouse press/release event to check user mouse operate,
|
|
|
|
/// if your item filter mouse event, this function will not be called.
|
|
|
|
/// so if you override mouse event and want to use popup applet, you
|
|
|
|
/// should pass event to your parent use QWidget::someEvent(e);
|
|
|
|
/// \param itemKey
|
|
|
|
/// \return
|
|
|
|
///
|
2016-07-13 17:16:22 +08:00
|
|
|
virtual QWidget *itemPopupApplet(const QString &itemKey) {Q_UNUSED(itemKey); return nullptr;}
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemCommand
|
|
|
|
/// execute spec command when user clicked your item.
|
|
|
|
/// ensure your command do not get user input.
|
|
|
|
///
|
|
|
|
/// empty string will be ignored.
|
|
|
|
/// \param itemKey
|
|
|
|
/// \return
|
|
|
|
///
|
2016-07-13 17:16:22 +08:00
|
|
|
virtual const QString itemCommand(const QString &itemKey) {Q_UNUSED(itemKey); return QString();}
|
2016-06-24 11:32:25 +08:00
|
|
|
|
2016-09-19 14:11:18 +08:00
|
|
|
///
|
|
|
|
/// \brief itemContextMenu
|
|
|
|
/// context menu is shown when RequestPopupMenu called.
|
|
|
|
/// \param itemKey
|
|
|
|
/// \return
|
|
|
|
///
|
|
|
|
virtual const QString itemContextMenu(const QString &itemKey) {Q_UNUSED(itemKey); return QString();}
|
|
|
|
///
|
|
|
|
/// \brief invokedMenuItem
|
|
|
|
/// call if context menu item is clicked
|
|
|
|
/// \param itemKey
|
|
|
|
/// \param itemId
|
|
|
|
/// menu item id
|
|
|
|
/// \param checked
|
|
|
|
///
|
|
|
|
virtual void invokedMenuItem(const QString &itemKey, const QString &menuId, const bool checked) {Q_UNUSED(itemKey); Q_UNUSED(menuId); Q_UNUSED(checked);}
|
|
|
|
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemSortKey
|
|
|
|
/// tell dock where your item wants to put on.
|
|
|
|
///
|
|
|
|
/// this index is start from 1 and
|
|
|
|
/// 0 for left side
|
|
|
|
/// -1 for right side
|
|
|
|
/// \param itemKey
|
|
|
|
/// \return
|
|
|
|
///
|
2016-09-06 14:51:11 +08:00
|
|
|
virtual int itemSortKey(const QString &itemKey) {Q_UNUSED(itemKey); return 1;}
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief setSortKey
|
|
|
|
/// save your item new position
|
|
|
|
/// sort key will be changed when plugins order
|
|
|
|
/// changed(by user drag-drop)
|
|
|
|
/// \param itemKey
|
|
|
|
/// \param order
|
|
|
|
///
|
2016-06-30 20:05:51 +08:00
|
|
|
virtual void setSortKey(const QString &itemKey, const int order) {Q_UNUSED(itemKey); Q_UNUSED(order);}
|
2016-06-24 14:59:56 +08:00
|
|
|
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemAllowContainer
|
|
|
|
/// tell dock is your item allow to move into container
|
|
|
|
///
|
|
|
|
/// if your item placed into container, popup tips and popup
|
|
|
|
/// applet will be disabled.
|
|
|
|
/// \param itemKey
|
|
|
|
/// \return
|
|
|
|
///
|
2016-08-15 14:11:19 +08:00
|
|
|
virtual bool itemAllowContainer(const QString &itemKey) {Q_UNUSED(itemKey); return false;}
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief itemIsInContainer
|
|
|
|
/// tell dock your item is in container, this function
|
|
|
|
/// called at item init and if your item enable container.
|
|
|
|
/// \param itemKey
|
|
|
|
/// \return
|
|
|
|
///
|
2016-08-15 14:11:19 +08:00
|
|
|
virtual bool itemIsInContainer(const QString &itemKey) {Q_UNUSED(itemKey); return false;}
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief setItemIsInContainer
|
|
|
|
/// save your item new state.
|
|
|
|
/// this function called when user drag out your item from
|
|
|
|
/// container or user drop item into container(if your item
|
|
|
|
/// allow drop into container).
|
|
|
|
/// \param itemKey
|
|
|
|
/// \param container
|
|
|
|
///
|
2016-08-15 14:11:19 +08:00
|
|
|
virtual void setItemIsInContainer(const QString &itemKey, const bool container) {Q_UNUSED(itemKey); Q_UNUSED(container);}
|
|
|
|
|
2017-10-23 10:06:36 +08:00
|
|
|
virtual bool pluginIsAllowDisable() { return false; }
|
|
|
|
virtual bool pluginIsDisable() { return false; }
|
|
|
|
virtual void pluginStateSwitched() {}
|
|
|
|
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief displayModeChanged
|
|
|
|
/// override this function to receive display mode changed signal
|
|
|
|
/// \param displayMode
|
|
|
|
///
|
2016-07-13 17:16:22 +08:00
|
|
|
virtual void displayModeChanged(const Dock::DisplayMode displayMode) {Q_UNUSED(displayMode);}
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief positionChanged
|
|
|
|
/// override this function to receive dock position changed signal
|
|
|
|
/// \param position
|
|
|
|
///
|
2016-07-13 17:16:22 +08:00
|
|
|
virtual void positionChanged(const Dock::Position position) {Q_UNUSED(position);}
|
|
|
|
|
2017-03-20 10:36:18 +08:00
|
|
|
///
|
2018-12-04 16:05:15 +08:00
|
|
|
/// \brief refreshIcon
|
|
|
|
/// refresh item icon, its triggered when system icon theme changed.
|
2017-03-20 10:36:18 +08:00
|
|
|
/// \param itemKey
|
|
|
|
/// item key
|
|
|
|
///
|
2018-12-04 16:05:15 +08:00
|
|
|
virtual void refreshIcon(const QString &itemKey) { Q_UNUSED(itemKey); }
|
2017-03-20 10:36:18 +08:00
|
|
|
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief displayMode
|
|
|
|
/// get current dock display mode
|
|
|
|
/// \return
|
|
|
|
///
|
2016-08-15 14:11:19 +08:00
|
|
|
inline Dock::DisplayMode displayMode() const
|
2016-06-28 10:06:04 +08:00
|
|
|
{
|
|
|
|
return qApp->property(PROP_DISPLAY_MODE).value<Dock::DisplayMode>();
|
|
|
|
}
|
|
|
|
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief position
|
|
|
|
/// get current dock position
|
|
|
|
/// \return
|
|
|
|
///
|
2016-08-15 14:11:19 +08:00
|
|
|
inline Dock::Position position() const
|
2016-06-28 10:06:04 +08:00
|
|
|
{
|
|
|
|
return qApp->property(PROP_POSITION).value<Dock::Position>();
|
|
|
|
}
|
|
|
|
|
2019-01-30 17:49:17 +08:00
|
|
|
///
|
|
|
|
/// \brief settingsChanged
|
|
|
|
/// override this function to receive plugin settings changed signal(DeepinSync)
|
|
|
|
///
|
|
|
|
virtual void pluginSettingsChanged() {}
|
|
|
|
|
2016-06-24 11:32:25 +08:00
|
|
|
protected:
|
2016-09-07 16:45:57 +08:00
|
|
|
///
|
|
|
|
/// \brief m_proxyInter
|
|
|
|
/// NEVER delete this object.
|
|
|
|
///
|
2016-06-24 11:32:25 +08:00
|
|
|
PluginProxyInterface *m_proxyInter;
|
2016-06-15 17:44:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
#define ModuleInterface_iid "com.deepin.dock.PluginsItemInterface"
|
|
|
|
|
|
|
|
Q_DECLARE_INTERFACE(PluginsItemInterface, ModuleInterface_iid)
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
#endif // PLUGINSITEMINTERFACE_H
|