summaryrefslogtreecommitdiff
path: root/libgnomekbd/gkbd-indicator-plugin-manager.h
blob: 2d25cd3ba5d2a7bfd91e1171eb67e56fdaa6b90f (plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 *  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 2 of the License, or
 *  (at your option) 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 Library General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#ifndef __GSWITCHIT_PLUGIN_MANAGER_H__
#define __GSWITCHIT_PLUGIN_MANAGER_H__

#include <gmodule.h>
#include <libgnomekbd/gkbd-indicator-plugin.h>

typedef struct _GkbdIndicatorPluginManager {
	GHashTable *all_plugin_recs;
	GSList *inited_plugin_recs;
} GkbdIndicatorPluginManager;

typedef struct _GkbdIndicatorPluginManagerRecord {
	const char *full_path;
	GModule *module;
	const GkbdIndicatorPlugin *plugin;
} GkbdIndicatorPluginManagerRecord;

extern void
 gkbd_indicator_plugin_manager_init (GkbdIndicatorPluginManager * manager);

extern void
 gkbd_indicator_plugin_manager_term (GkbdIndicatorPluginManager * manager);

extern void
 gkbd_indicator_plugin_manager_init_enabled_plugins (GkbdIndicatorPluginManager * manager,
						     GkbdIndicatorPluginContainer
						     * pc,
						     GSList *
						     enabled_plugins);

extern void
 gkbd_indicator_plugin_manager_term_initialized_plugins (GkbdIndicatorPluginManager * manager);

extern void
 gkbd_indicator_plugin_manager_toggle_plugins (GkbdIndicatorPluginManager * manager,
					       GkbdIndicatorPluginContainer
					       * pc,
					       GSList * enabled_plugins);

extern const GkbdIndicatorPlugin
    *
gkbd_indicator_plugin_manager_get_plugin (GkbdIndicatorPluginManager *
					  manager, const char *full_path);

extern void
 gkbd_indicator_plugin_manager_promote_plugin (GkbdIndicatorPluginManager * manager,
					       GSList * enabled_plugins,
					       const char *full_path);

extern void
 gkbd_indicator_plugin_manager_demote_plugin (GkbdIndicatorPluginManager * manager,
					      GSList * enabled_plugins,
					      const char *full_path);

extern void
 gkbd_indicator_plugin_manager_enable_plugin (GkbdIndicatorPluginManager * manager,
					      GSList ** enabled_plugins,
					      const char *full_path);

extern void
 gkbd_indicator_plugin_manager_disable_plugin (GkbdIndicatorPluginManager * manager,
					       GSList ** enabled_plugins,
					       const char *full_path);

extern void
 gkbd_indicator_plugin_manager_configure_plugin (GkbdIndicatorPluginManager * manager,
						 GkbdIndicatorPluginContainer
						 * pc,
						 const char *full_path,
						 GtkWindow * parent);

// actual calling plugin notification methods

extern void
 gkbd_indicator_plugin_manager_group_changed (GkbdIndicatorPluginManager * manager,
					      GtkWidget * notebook,
					      int new_group);

extern void
 gkbd_indicator_plugin_manager_config_changed (GkbdIndicatorPluginManager * manager,
					       GkbdKeyboardConfig * from,
					       GkbdKeyboardConfig * to);

extern int
 gkbd_indicator_plugin_manager_window_created (GkbdIndicatorPluginManager * manager,
					       Window win, Window parent);

extern GtkWidget
    *
gkbd_indicator_plugin_manager_decorate_widget (GkbdIndicatorPluginManager *
					       manager, GtkWidget * widget,
					       const gint group, const char
					       *group_description,
					       GkbdKeyboardConfig *
					       config);

#endif