aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/ui
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2013-06-04 05:22:12 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-07-12 12:52:36 -0400
commitf1d9a530553eed9e598d1597a2a348f01810dd4a (patch)
tree2ced418e986a1d4c61964fb65b64ac9fc6e86ea9 /tools/perf/ui
parentf36f83f947ede547833e462696893f866df77324 (diff)
perf gtk/hists: Use GtkTreeStore instead of GtkListStore
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 <penberg@kernel.org> Signed-off-by: Namhyung Kim <namhyung@kernel.org> Cc: David Ahern <dsahern@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Pekka Enberg <penberg@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1370337737-30812-2-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/ui')
-rw-r--r--tools/perf/ui/gtk/hists.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/ui/gtk/hists.c b/tools/perf/ui/gtk/hists.c
index 9708dd5fb8f3..cb6a9b45f789 100644
--- a/tools/perf/ui/gtk/hists.c
+++ b/tools/perf/ui/gtk/hists.c
@@ -131,7 +131,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
131 GType col_types[MAX_COLUMNS]; 131 GType col_types[MAX_COLUMNS];
132 GtkCellRenderer *renderer; 132 GtkCellRenderer *renderer;
133 struct sort_entry *se; 133 struct sort_entry *se;
134 GtkListStore *store; 134 GtkTreeStore *store;
135 struct rb_node *nd; 135 struct rb_node *nd;
136 GtkWidget *view; 136 GtkWidget *view;
137 int col_idx; 137 int col_idx;
@@ -156,7 +156,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
156 col_types[nr_cols++] = G_TYPE_STRING; 156 col_types[nr_cols++] = G_TYPE_STRING;
157 } 157 }
158 158
159 store = gtk_list_store_newv(nr_cols, col_types); 159 store = gtk_tree_store_newv(nr_cols, col_types);
160 160
161 view = gtk_tree_view_new(); 161 view = gtk_tree_view_new();
162 162
@@ -199,7 +199,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
199 if (percent < min_pcnt) 199 if (percent < min_pcnt)
200 continue; 200 continue;
201 201
202 gtk_list_store_append(store, &iter); 202 gtk_tree_store_append(store, &iter, NULL);
203 203
204 col_idx = 0; 204 col_idx = 0;
205 205
@@ -209,7 +209,7 @@ static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists,
209 else 209 else
210 fmt->entry(&hpp, h); 210 fmt->entry(&hpp, h);
211 211
212 gtk_list_store_set(store, &iter, col_idx++, s, -1); 212 gtk_tree_store_set(store, &iter, col_idx++, s, -1);
213 } 213 }
214 214
215 list_for_each_entry(se, &hist_entry__sort_list, list) { 215 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,
219 se->se_snprintf(h, s, ARRAY_SIZE(s), 219 se->se_snprintf(h, s, ARRAY_SIZE(s),
220 hists__col_len(hists, se->se_width_idx)); 220 hists__col_len(hists, se->se_width_idx));
221 221
222 gtk_list_store_set(store, &iter, col_idx++, s, -1); 222 gtk_tree_store_set(store, &iter, col_idx++, s, -1);
223 } 223 }
224 } 224 }
225 225