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
|
/*
Copyright (c) 2011 by Simon Schneegans
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 (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 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/>.
*/
namespace GnomePie {
/////////////////////////////////////////////////////////////////////////
/// A which has knowledge on all possible acion group types.
/////////////////////////////////////////////////////////////////////////
public class GroupRegistry : GLib.Object {
/////////////////////////////////////////////////////////////////////
/// A list containing all available ActionGroup types.
/////////////////////////////////////////////////////////////////////
public static Gee.ArrayList<Type> types { get; private set; }
/////////////////////////////////////////////////////////////////////
/// Three maps associating a displayable name for each ActionGroup,
/// an icon name and a name for the pies.conf file with it's type.
/////////////////////////////////////////////////////////////////////
public static Gee.HashMap<Type, string> names { get; private set; }
public static Gee.HashMap<Type, string> icons { get; private set; }
public static Gee.HashMap<Type, string> settings_names { get; private set; }
/////////////////////////////////////////////////////////////////////
/// Registers all ActionGroup types.
/////////////////////////////////////////////////////////////////////
public static void init() {
types = new Gee.ArrayList<Type>();
names = new Gee.HashMap<Type, string>();
icons = new Gee.HashMap<Type, string>();
settings_names = new Gee.HashMap<Type, string>();
string name = "";
string icon = "";
string settings_name = "";
BookmarkGroup.register(out name, out icon, out settings_name);
types.add(typeof(BookmarkGroup));
names.set(typeof(BookmarkGroup), name);
icons.set(typeof(BookmarkGroup), icon);
settings_names.set(typeof(BookmarkGroup), settings_name);
DevicesGroup.register(out name, out icon, out settings_name);
types.add(typeof(DevicesGroup));
names.set(typeof(DevicesGroup), name);
icons.set(typeof(DevicesGroup), icon);
settings_names.set(typeof(DevicesGroup), settings_name);
MenuGroup.register(out name, out icon, out settings_name);
types.add(typeof(MenuGroup));
names.set(typeof(MenuGroup), name);
icons.set(typeof(MenuGroup), icon);
settings_names.set(typeof(MenuGroup), settings_name);
SessionGroup.register(out name, out icon, out settings_name);
types.add(typeof(SessionGroup));
names.set(typeof(SessionGroup), name);
icons.set(typeof(SessionGroup), icon);
settings_names.set(typeof(SessionGroup), settings_name);
WindowListGroup.register(out name, out icon, out settings_name);
types.add(typeof(WindowListGroup));
names.set(typeof(WindowListGroup), name);
icons.set(typeof(WindowListGroup), icon);
settings_names.set(typeof(WindowListGroup), settings_name);
// ClipboardGroup.register(out name, out icon, out settings_name);
// types.add(typeof(ClipboardGroup));
// names.set(typeof(ClipboardGroup), name);
// icons.set(typeof(ClipboardGroup), icon);
// settings_names.set(typeof(ClipboardGroup), settings_name);
}
}
}
|