GtkTreeIter child;
ZakConfiKey *ck;
+ GtkTreePath *tpath;
+
+ gchar *config;
+ gchar *path;
+ gchar *parent_name;
+
if (node == NULL) return;
+ tpath = gtk_tree_model_get_path (GTK_TREE_MODEL (storeFolders), &parent);
+
node = node->children;
while (node != NULL)
{
ck = (ZakConfiKey *)node->data;
+ gtk_tree_model_get (GTK_TREE_MODEL (storeFolders), &parent,
+ FOLDERS_COL_CONFIG, &config,
+ FOLDERS_COL_PATH, &path,
+ FOLDERS_COL_KEY, &parent_name,
+ -1);
+
+
+ if (gtk_tree_path_get_depth (tpath) == 0
+ || g_strcmp0 (path, "") == 0)
+ {
+ g_free (path);
+ path = g_strdup ("/");
+ }
+ else
+ {
+ path = g_strdup_printf ("%s%s/", path, parent_name);
+ }
+
gtk_tree_store_append (storeFolders, &child, &parent);
gtk_tree_store_set (storeFolders, &child,
+ FOLDERS_COL_CONFIG, config,
+ FOLDERS_COL_PATH, path,
FOLDERS_COL_KEY, ck->key,
FOLDERS_COL_DESCRIPTION, ck->description,
FOLDERS_COL_VALUE, ck->value,
gtk_tree_store_append (storeFolders, &iter, NULL);
gtk_tree_store_set (storeFolders, &iter,
+ FOLDERS_COL_CONFIG, conficonfi->name,
+ FOLDERS_COL_PATH, "",
FOLDERS_COL_KEY, conficonfi->name,
FOLDERS_COL_DESCRIPTION, conficonfi->description,
-1);