perf gtk/hists: Use GtkTreeStore instead of GtkListStore
authorNamhyung Kim <[email protected]>
Tue, 4 Jun 2013 09:22:12 +0000 (18:22 +0900)
committerArnaldo Carvalho de Melo <[email protected]>
Fri, 12 Jul 2013 16:52:36 +0000 (13:52 -0300)
The GtkTreeStore can save items in a tree-like way.  This is a
preparation for supporting callgraphs in the hist browser.

Reviewed-by: Pekka Enberg <[email protected]>
Signed-off-by: Namhyung Kim <[email protected]>
Cc: David Ahern <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Pekka Enberg <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/ui/gtk/hists.c

index 9708dd5fb8f32f993d5e6ea3eca6ce2e3e546888..cb6a9b45f78920dcadede7c67e9da34c94978282 100644 (file)
@@ -131,7 +131,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
        GType col_types[MAX_COLUMNS];
        GtkCellRenderer *renderer;
        struct sort_entry *se;
-       GtkListStore *store;
+       GtkTreeStore *store;
        struct rb_node *nd;
        GtkWidget *view;
        int col_idx;
@@ -156,7 +156,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
                col_types[nr_cols++] = G_TYPE_STRING;
        }
 
-       store = gtk_list_store_newv(nr_cols, col_types);
+       store = gtk_tree_store_newv(nr_cols, col_types);
 
        view = gtk_tree_view_new();
 
@@ -199,7 +199,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
                if (percent < min_pcnt)
                        continue;
 
-               gtk_list_store_append(store, &iter);
+               gtk_tree_store_append(store, &iter, NULL);
 
                col_idx = 0;
 
@@ -209,7 +209,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
                        else
                                fmt->entry(&hpp, h);
 
-                       gtk_list_store_set(store, &iter, col_idx++, s, -1);
+                       gtk_tree_store_set(store, &iter, col_idx++, s, -1);
                }
 
                list_for_each_entry(se, &hist_entry__sort_list, list) {
@@ -219,7 +219,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
                        se->se_snprintf(h, s, ARRAY_SIZE(s),
                                        hists__col_len(hists, se->se_width_idx));
 
-                       gtk_list_store_set(store, &iter, col_idx++, s, -1);
+                       gtk_tree_store_set(store, &iter, col_idx++, s, -1);
                }
        }