From 6451a495637c6e3047a5a56573cffc6e3de9a515 Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Wed, 19 Oct 2011 10:56:04 +0200 Subject: Imported Upstream version 0.2+gitdfdad95 --- src/actionGroups/groupRegistry.vala | 89 +++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 src/actionGroups/groupRegistry.vala (limited to 'src/actionGroups/groupRegistry.vala') diff --git a/src/actionGroups/groupRegistry.vala b/src/actionGroups/groupRegistry.vala new file mode 100644 index 0000000..94169d5 --- /dev/null +++ b/src/actionGroups/groupRegistry.vala @@ -0,0 +1,89 @@ +/* +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 . +*/ + +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 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 names { get; private set; } + public static Gee.HashMap icons { get; private set; } + public static Gee.HashMap settings_names { get; private set; } + + + ///////////////////////////////////////////////////////////////////// + /// Registers all ActionGroup types. + ///////////////////////////////////////////////////////////////////// + + public static void init() { + types = new Gee.ArrayList(); + + names = new Gee.HashMap(); + icons = new Gee.HashMap(); + settings_names = new Gee.HashMap(); + + 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); + +// 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); + } +} + +} -- cgit v1.2.3