From ef64c0427f58f1d286823cbb9c1929d3ebec730f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Wed, 29 Aug 2012 15:46:20 +0200 Subject: [PATCH] Remove category icons. --- liblogdiag/ld-library.c | 23 ++-------- liblogdiag/ld-symbol-category.c | 55 +---------------------- liblogdiag/ld-symbol-category.h | 3 -- share/library/Active/icon.svg | 53 ---------------------- share/library/Logical/icon.svg | 76 -------------------------------- share/library/Misc/icon.svg | 78 --------------------------------- share/library/Passive/icon.svg | 56 ----------------------- 7 files changed, 6 insertions(+), 338 deletions(-) delete mode 100644 share/library/Active/icon.svg delete mode 100644 share/library/Logical/icon.svg delete mode 100644 share/library/Misc/icon.svg delete mode 100644 share/library/Passive/icon.svg diff --git a/liblogdiag/ld-library.c b/liblogdiag/ld-library.c index 8da61fb..efa1be7 100644 --- a/liblogdiag/ld-library.c +++ b/liblogdiag/ld-library.c @@ -167,9 +167,7 @@ LoadCategoryData; static LdSymbolCategory * load_category (LdLibrary *self, const gchar *path, const gchar *name) { - LdSymbolCategory *cat = NULL; - gchar *icon_file, *category_file; - gchar *human_name; + gchar *category_file, *human_name; LoadCategoryData data; g_return_val_if_fail (LD_IS_LIBRARY (self), NULL); @@ -177,33 +175,20 @@ load_category (LdLibrary *self, const gchar *path, const gchar *name) g_return_val_if_fail (name != NULL, NULL); if (!g_file_test (path, G_FILE_TEST_IS_DIR)) - goto load_category_fail_1; - - icon_file = g_build_filename (path, "icon.svg", NULL); - if (!g_file_test (icon_file, G_FILE_TEST_IS_REGULAR)) - { - g_warning ("the category in `%s' has no icon", path); - goto load_category_fail_2; - } + return NULL; category_file = g_build_filename (path, "category.json", NULL); human_name = read_human_name_from_file (category_file); if (!human_name) human_name = g_strdup (name); - cat = ld_symbol_category_new (name, human_name); - ld_symbol_category_set_image_path (cat, icon_file); - data.self = self; - data.cat = cat; + data.cat = ld_symbol_category_new (name, human_name); foreach_dir (path, load_category_cb, &data, NULL); g_free (human_name); g_free (category_file); -load_category_fail_2: - g_free (icon_file); -load_category_fail_1: - return cat; + return data.cat; } /* diff --git a/liblogdiag/ld-symbol-category.c b/liblogdiag/ld-symbol-category.c index 52763e2..0e2a220 100644 --- a/liblogdiag/ld-symbol-category.c +++ b/liblogdiag/ld-symbol-category.c @@ -23,7 +23,7 @@ /* * LdSymbolCategoryPrivate: * @name: the name of this category. - * @image_path: path to the image for this category. + * @human_name: the localized human-readable name of this category. * @symbols: (element-type LdSymbol *): symbols in this category. * @subcategories: (element-type LdSymbolCategory *) children of this category. */ @@ -31,7 +31,6 @@ struct _LdSymbolCategoryPrivate { gchar *name; gchar *human_name; - gchar *image_path; GSList *symbols; GSList *subcategories; }; @@ -40,8 +39,7 @@ enum { PROP_0, PROP_NAME, - PROP_HUMAN_NAME, - PROP_IMAGE_PATH + PROP_HUMAN_NAME }; static void ld_symbol_category_get_property (GObject *object, guint property_id, @@ -87,16 +85,6 @@ ld_symbol_category_class_init (LdSymbolCategoryClass *klass) "", G_PARAM_READWRITE); g_object_class_install_property (object_class, PROP_HUMAN_NAME, pspec); -/** - * LdSymbolCategory:image-path: - * - * Path to an image file representing this category. - */ - pspec = g_param_spec_string ("image-path", "Image path", - "Path to an image file representing this category.", - "", G_PARAM_READWRITE); - g_object_class_install_property (object_class, PROP_IMAGE_PATH, pspec); - g_type_class_add_private (klass, sizeof (LdSymbolCategoryPrivate)); } @@ -122,9 +110,6 @@ ld_symbol_category_get_property (GObject *object, guint property_id, case PROP_HUMAN_NAME: g_value_set_string (value, ld_symbol_category_get_human_name (self)); break; - case PROP_IMAGE_PATH: - g_value_set_string (value, ld_symbol_category_get_image_path (self)); - break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } @@ -145,9 +130,6 @@ ld_symbol_category_set_property (GObject *object, guint property_id, case PROP_HUMAN_NAME: ld_symbol_category_set_human_name (self, g_value_get_string (value)); break; - case PROP_IMAGE_PATH: - ld_symbol_category_set_image_path (self, g_value_get_string (value)); - break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } @@ -172,8 +154,6 @@ ld_symbol_category_finalize (GObject *gobject) g_free (self->priv->name); if (self->priv->human_name) g_free (self->priv->human_name); - if (self->priv->image_path) - g_free (self->priv->image_path); g_slist_foreach (self->priv->symbols, (GFunc) g_object_unref, NULL); g_slist_free (self->priv->symbols); @@ -272,37 +252,6 @@ ld_symbol_category_get_human_name (LdSymbolCategory *self) return self->priv->human_name; } -/** - * ld_symbol_category_set_image_path: - * @self: an #LdSymbolCategory object. - * @image_path: (allow-none): The new path to the image for this category. - */ -void -ld_symbol_category_set_image_path (LdSymbolCategory *self, - const gchar *image_path) -{ - g_return_if_fail (LD_IS_SYMBOL_CATEGORY (self)); - - if (self->priv->image_path) - g_free (self->priv->image_path); - self->priv->image_path = g_strdup (image_path); - - g_object_notify (G_OBJECT (self), "image-path"); -} - -/** - * ld_symbol_category_get_image_path: - * @self: an #LdSymbolCategory object. - * - * Return value: (allow-none): filesystem path to the image for this category. - */ -const gchar * -ld_symbol_category_get_image_path (LdSymbolCategory *self) -{ - g_return_val_if_fail (LD_IS_SYMBOL_CATEGORY (self), NULL); - return self->priv->image_path; -} - /** * ld_symbol_category_insert_symbol: * @self: an #LdSymbolCategory object. diff --git a/liblogdiag/ld-symbol-category.h b/liblogdiag/ld-symbol-category.h index 1ecb436..2102db0 100644 --- a/liblogdiag/ld-symbol-category.h +++ b/liblogdiag/ld-symbol-category.h @@ -62,9 +62,6 @@ const gchar *ld_symbol_category_get_name (LdSymbolCategory *self); void ld_symbol_category_set_human_name (LdSymbolCategory *self, const gchar *human_name); const gchar *ld_symbol_category_get_human_name (LdSymbolCategory *self); -void ld_symbol_category_set_image_path (LdSymbolCategory *self, - const gchar *image_path); -const gchar *ld_symbol_category_get_image_path (LdSymbolCategory *self); gboolean ld_symbol_category_insert_symbol (LdSymbolCategory *self, LdSymbol *symbol, gint pos); diff --git a/share/library/Active/icon.svg b/share/library/Active/icon.svg deleted file mode 100644 index 802c7a4..0000000 --- a/share/library/Active/icon.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/share/library/Logical/icon.svg b/share/library/Logical/icon.svg deleted file mode 100644 index fe02c45..0000000 --- a/share/library/Logical/icon.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/share/library/Misc/icon.svg b/share/library/Misc/icon.svg deleted file mode 100644 index c504a45..0000000 --- a/share/library/Misc/icon.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - diff --git a/share/library/Passive/icon.svg b/share/library/Passive/icon.svg deleted file mode 100644 index 532a715..0000000 --- a/share/library/Passive/icon.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - -