aboutsummaryrefslogtreecommitdiff
path: root/liblogdiag
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2012-08-29 15:46:20 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2012-10-08 07:29:57 +0200
commitef64c0427f58f1d286823cbb9c1929d3ebec730f (patch)
treef9f71a04699e422724f4c0d755b06cc94f0aa60e /liblogdiag
parenta915bf44960dad3180790a06c57aba7904774738 (diff)
downloadlogdiag-ef64c0427f58f1d286823cbb9c1929d3ebec730f.tar.gz
logdiag-ef64c0427f58f1d286823cbb9c1929d3ebec730f.tar.xz
logdiag-ef64c0427f58f1d286823cbb9c1929d3ebec730f.zip
Remove category icons.
Diffstat (limited to 'liblogdiag')
-rw-r--r--liblogdiag/ld-library.c23
-rw-r--r--liblogdiag/ld-symbol-category.c55
-rw-r--r--liblogdiag/ld-symbol-category.h3
3 files changed, 6 insertions, 75 deletions
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);
@@ -273,37 +253,6 @@ ld_symbol_category_get_human_name (LdSymbolCategory *self)
}
/**
- * 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.
* @symbol: the symbol to be inserted.
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);