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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
/*
A library to communicate a menu object set accross DBus and
track updates and maintain consistency.
Copyright 2011 Canonical Ltd.
Authors:
Ted Gould <ted@canonical.com>
This program is free software: you can redistribute it and/or modify it
under the terms of either or both of the following licenses:
1) the GNU Lesser General Public License version 3, as published by the
Free Software Foundation; and/or
2) the GNU Lesser General Public License version 2.1, as published by
the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranties of
MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
PURPOSE. See the applicable version of the GNU Lesser General Public
License for more details.
You should have received a copy of both the GNU Lesser General Public
License version 3 and version 2.1 along with this program. If not, see
<http://www.gnu.org/licenses/>
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <glib/gi18n-lib.h>
#include "defaults.h"
#include "menuitem.h"
#include "client.h"
struct _DbusmenuDefaultsPrivate {
GHashTable * types;
};
typedef struct _DefaultEntry DefaultEntry;
struct _DefaultEntry {
GVariantType * type;
GVariant * value;
};
#define DBUSMENU_DEFAULTS_GET_PRIVATE(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), DBUSMENU_TYPE_DEFAULTS, DbusmenuDefaultsPrivate))
static void dbusmenu_defaults_class_init (DbusmenuDefaultsClass *klass);
static void dbusmenu_defaults_init (DbusmenuDefaults *self);
static void dbusmenu_defaults_dispose (GObject *object);
static void dbusmenu_defaults_finalize (GObject *object);
static DefaultEntry * entry_create (const GVariantType * type, GVariant * variant);
static void entry_destroy (gpointer entry);
G_DEFINE_TYPE (DbusmenuDefaults, dbusmenu_defaults, G_TYPE_OBJECT);
static void
dbusmenu_defaults_class_init (DbusmenuDefaultsClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
g_type_class_add_private (klass, sizeof (DbusmenuDefaultsPrivate));
object_class->dispose = dbusmenu_defaults_dispose;
object_class->finalize = dbusmenu_defaults_finalize;
return;
}
static void
dbusmenu_defaults_init (DbusmenuDefaults *self)
{
self->priv = DBUSMENU_DEFAULTS_GET_PRIVATE(self);
self->priv->types = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, (GDestroyNotify)g_hash_table_destroy);
/* Standard defaults */
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_VISIBLE, G_VARIANT_TYPE_BOOLEAN, g_variant_new_boolean(TRUE));
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_ENABLED, G_VARIANT_TYPE_BOOLEAN, g_variant_new_boolean(TRUE));
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_LABEL, G_VARIANT_TYPE_STRING, g_variant_new_string(_("Label Empty")));
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_ICON_NAME, G_VARIANT_TYPE_STRING, NULL);
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_ICON_DATA, G_VARIANT_TYPE("ay"), NULL);
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_TOGGLE_TYPE, G_VARIANT_TYPE_STRING, NULL);
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_TOGGLE_STATE, G_VARIANT_TYPE_INT32, NULL);
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_SHORTCUT, G_VARIANT_TYPE("aas"), NULL);
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_CHILD_DISPLAY, G_VARIANT_TYPE_STRING, NULL);
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_DISPOSITION, G_VARIANT_TYPE_STRING, g_variant_new_string(DBUSMENU_MENUITEM_DISPOSITION_NORMAL));
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_DEFAULT, DBUSMENU_MENUITEM_PROP_ACCESSIBLE_DESC,G_VARIANT_TYPE_STRING, NULL);
/* Separator defaults */
dbusmenu_defaults_default_set(self, DBUSMENU_CLIENT_TYPES_SEPARATOR, DBUSMENU_MENUITEM_PROP_VISIBLE, G_VARIANT_TYPE_BOOLEAN, g_variant_new_boolean(TRUE));
return;
}
static void
dbusmenu_defaults_dispose (GObject *object)
{
DbusmenuDefaults * self = DBUSMENU_DEFAULTS(object);
if (self->priv->types != NULL) {
g_hash_table_destroy(self->priv->types);
self->priv->types = NULL;
}
G_OBJECT_CLASS (dbusmenu_defaults_parent_class)->dispose (object);
return;
}
static void
dbusmenu_defaults_finalize (GObject *object)
{
G_OBJECT_CLASS (dbusmenu_defaults_parent_class)->finalize (object);
return;
}
/* Create a new entry based on the info provided */
static DefaultEntry *
entry_create (const GVariantType * type, GVariant * variant)
{
DefaultEntry * defentry = g_new0(DefaultEntry, 1);
if (type != NULL) {
defentry->type = g_variant_type_copy(type);
}
if (variant != NULL) {
defentry->value = variant;
g_variant_ref_sink(variant);
}
return defentry;
}
/* Destroy an entry */
static void
entry_destroy (gpointer entry)
{
DefaultEntry * defentry = (DefaultEntry *)entry;
if (defentry->type != NULL) {
g_variant_type_free(defentry->type);
defentry->type = NULL;
}
if (defentry->value != NULL) {
g_variant_unref(defentry->value);
defentry->value = NULL;
}
g_free(defentry);
return;
}
static DbusmenuDefaults * default_defaults = NULL;
/*
* dbusmenu_defaults_ref_default:
*
* Get a reference to the default instance. If it doesn't exist this
* function will create it.
*
* Return value: (transfer full): A reference to the defaults
*/
DbusmenuDefaults *
dbusmenu_defaults_ref_default (void)
{
if (default_defaults == NULL) {
default_defaults = DBUSMENU_DEFAULTS(g_object_new(DBUSMENU_TYPE_DEFAULTS, NULL));
g_object_add_weak_pointer(G_OBJECT(default_defaults), (gpointer *)&default_defaults);
} else {
g_object_ref(default_defaults);
}
return default_defaults;
}
/*
* dbusmenu_defaults_default_set:
* @defaults: The #DbusmenuDefaults object to add to
* @type: (allow-none): The #DbusmenuMenuitem type for this default if #NULL will default to #DBUSMENU_CLIENT_TYPE_DEFAULT
* @property: Property name for the default
* @prop_type: (allow-none): Type of the property for runtime checking. To disable checking set to #NULL.
* @value: (allow-none): Default value for @property. #NULL if by default it is unset, but you want type checking from @prop_type.
*
* Sets up an entry in the defaults database for a given @property
* and menuitem type @type. @prop_type and @value can both be #NULL
* but both of them can not.
*/
void
dbusmenu_defaults_default_set (DbusmenuDefaults * defaults, const gchar * type, const gchar * property, const GVariantType * prop_type, GVariant * value)
{
g_return_if_fail(DBUSMENU_IS_DEFAULTS(defaults));
g_return_if_fail(property != NULL);
g_return_if_fail(prop_type != NULL || value != NULL);
if (type == NULL) {
type = DBUSMENU_CLIENT_TYPES_DEFAULT;
}
GHashTable * prop_table = (GHashTable *)g_hash_table_lookup(defaults->priv->types, type);
/* We've never had a default for this type, so we need
to create a table for it. */
if (prop_table == NULL) {
prop_table = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, entry_destroy);
g_hash_table_insert(prop_table, g_strdup(property), entry_create(prop_type, value));
g_hash_table_insert(defaults->priv->types, g_strdup(type), prop_table);
} else {
g_hash_table_replace(prop_table, g_strdup(property), entry_create(prop_type, value));
}
return;
}
/*
* dbusmenu_defaults_default_get:
* @defaults: The default database to use
* @type: (allow-none): The #DbusmenuMenuitem type for this default if #NULL will default to #DBUSMENU_CLIENT_TYPE_DEFAULT
* @property: Property name to lookup
*
* Gets an entry in the database for a give @property and @type.
*
* Return value: (transfer none): Returns a variant that does not
* have it's ref count increased. If you want to keep it, you should
* do that.
*/
GVariant *
dbusmenu_defaults_default_get (DbusmenuDefaults * defaults, const gchar * type, const gchar * property)
{
g_return_val_if_fail(DBUSMENU_IS_DEFAULTS(defaults), NULL);
g_return_val_if_fail(property != NULL, NULL);
if (type == NULL) {
type = DBUSMENU_CLIENT_TYPES_DEFAULT;
}
GHashTable * prop_table = (GHashTable *)g_hash_table_lookup(defaults->priv->types, type);
if (prop_table == NULL) {
return NULL;
}
DefaultEntry * entry = (DefaultEntry *)g_hash_table_lookup(prop_table, property);
if (entry == NULL) {
return NULL;
}
return entry->value;
}
/*
* dbusmenu_defaults_default_get_type:
* @defaults: The default database to use
* @type: (allow-none): The #DbusmenuMenuitem type for this default if #NULL will default to #DBUSMENU_CLIENT_TYPE_DEFAULT
* @property: Property name to lookup
*
* Gets the type for an entry in the database for a give @property and @type.
*
* Return value: (transfer none): Returns a type for the given
* @property value.
*/
GVariantType *
dbusmenu_defaults_default_get_type (DbusmenuDefaults * defaults, const gchar * type, const gchar * property)
{
g_return_val_if_fail(DBUSMENU_IS_DEFAULTS(defaults), NULL);
g_return_val_if_fail(property != NULL, NULL);
if (type == NULL) {
type = DBUSMENU_CLIENT_TYPES_DEFAULT;
}
GHashTable * prop_table = (GHashTable *)g_hash_table_lookup(defaults->priv->types, type);
if (prop_table == NULL) {
return NULL;
}
DefaultEntry * entry = (DefaultEntry *)g_hash_table_lookup(prop_table, property);
if (entry == NULL) {
return NULL;
}
return entry->type;
}
|