-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpluginproxyinterface.h
98 lines (88 loc) · 3.51 KB
/
pluginproxyinterface.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* Copyright (C) 2011 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: sbw <[email protected]>
*
* Maintainer: sbw <[email protected]>
*
* 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 PLUGINPROXYINTERFACE_H
#define PLUGINPROXYINTERFACE_H
#include "constants.h"
#include <QtCore>
class PluginsItemInterface;
class PluginProxyInterface
{
public:
///
/// \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
///
virtual void itemAdded(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
///
/// \brief itemUpdate
/// update(repaint) spec item
/// \param itemInter
/// \param itemKey
///
virtual void itemUpdate(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
///
/// \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
///
virtual void itemRemoved(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
///
/// \brief requestContextMenu
/// request show context menu
///
//virtual void requestContextMenu(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
virtual void requestWindowAutoHide(PluginsItemInterface * const itemInter, const QString &itemKey, const bool autoHide) = 0;
virtual void requestRefreshWindowVisible(PluginsItemInterface * const itemInter, const QString &itemKey) = 0;
virtual void requestSetAppletVisible(PluginsItemInterface * const itemInter, const QString &itemKey, const bool visible) = 0;
///
/// \brief saveValue
/// save module config to .config/deepin/dde-dock.conf
/// all key-values of all plugins will be save to that file
/// and grouped by the returned value of pluginName() function which is defined in PluginsItemInterface
/// \param itemInter the plugin object
/// \param key the key of data
/// \param value the data
///
virtual void saveValue(PluginsItemInterface * const itemInter, const QString &key, const QVariant &value) = 0;
///
/// \brief getValue
/// SeeAlse: saveValue
/// return value from .config/deepin/dde-dock.conf
///
virtual const QVariant getValue(PluginsItemInterface *const itemInter, const QString &key, const QVariant& fallback = QVariant()) = 0;
///
/// \brief removeValue
/// remove the values specified by keyList
/// remove all values of itemInter if keyList is empty
/// SeeAlse: saveValue
///
virtual void removeValue(PluginsItemInterface *const itemInter, const QStringList &keyList) = 0;
};
#endif // PLUGINPROXYINTERFACE_H