/*
- * Copyright (C) 2019 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2019-2021 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
return ret;
}
+/**
+ * zak_aptr_array_lookup_get_name:
+ * @zak_aptr_array:
+ * @idx:
+ *
+ * Returns: the name associated to @idx; or @NULL;
+ */
+gchar
+*zak_aptr_array_lookup_get_name (ZakAptrArray *zak_aptr_array, guint idx)
+{
+ GHashTableIter iter;
+ gpointer key;
+ gpointer value;
+
+ gchar *ret;
+
+ ret = NULL;
+ g_hash_table_iter_init (&iter, zak_aptr_array->ht);
+ while (g_hash_table_iter_next (&iter, &key, &value))
+ {
+ if (GPOINTER_TO_UINT (value) == idx)
+ {
+ ret = g_strdup (key);
+ break;
+ }
+ }
+
+ return ret;
+}
+
/* PRIVATE */
static void
zak_aptr_array_set_property (GObject *object,
/*
- * Copyright (C) 2019 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2019-2021 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
gint zak_aptr_array_lookup_get_index (ZakAptrArray *zak_aptr_array, const gchar *name);
+gchar *zak_aptr_array_lookup_get_name (ZakAptrArray *zak_aptr_array, guint idx);
+
G_END_DECLS