Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 1 | #include "../evlist.h" |
| 2 | #include "../cache.h" |
| 3 | #include "../evsel.h" |
| 4 | #include "../sort.h" |
| 5 | #include "../hist.h" |
| 6 | #include "../helpline.h" |
| 7 | #include "gtk.h" |
| 8 | |
| 9 | #define MAX_COLUMNS 32 |
| 10 | |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 11 | static int __percent_color_snprintf(char *buf, size_t size, double percent) |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 12 | { |
| 13 | int ret = 0; |
| 14 | const char *markup; |
| 15 | |
| 16 | markup = perf_gtk__get_percent_color(percent); |
| 17 | if (markup) |
| 18 | ret += scnprintf(buf, size, markup); |
| 19 | |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 20 | ret += scnprintf(buf + ret, size - ret, " %6.2f%%", percent); |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 21 | |
| 22 | if (markup) |
| 23 | ret += scnprintf(buf + ret, size - ret, "</span>"); |
| 24 | |
| 25 | return ret; |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 26 | } |
| 27 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 28 | |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 29 | static int __hpp__color_fmt(struct perf_hpp *hpp, struct hist_entry *he, |
| 30 | u64 (*get_field)(struct hist_entry *)) |
| 31 | { |
| 32 | int ret; |
| 33 | double percent = 0.0; |
| 34 | struct hists *hists = he->hists; |
Namhyung Kim | 759ff49 | 2013-03-05 14:53:26 +0900 | [diff] [blame] | 35 | struct perf_evsel *evsel = hists_to_evsel(hists); |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 36 | |
| 37 | if (hists->stats.total_period) |
| 38 | percent = 100.0 * get_field(he) / hists->stats.total_period; |
| 39 | |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 40 | ret = __percent_color_snprintf(hpp->buf, hpp->size, percent); |
| 41 | |
Namhyung Kim | 759ff49 | 2013-03-05 14:53:26 +0900 | [diff] [blame] | 42 | if (perf_evsel__is_group_event(evsel)) { |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 43 | int prev_idx, idx_delta; |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 44 | struct hist_entry *pair; |
| 45 | int nr_members = evsel->nr_members; |
| 46 | |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 47 | prev_idx = perf_evsel__group_idx(evsel); |
| 48 | |
| 49 | list_for_each_entry(pair, &he->pairs.head, pairs.node) { |
| 50 | u64 period = get_field(pair); |
| 51 | u64 total = pair->hists->stats.total_period; |
| 52 | |
| 53 | evsel = hists_to_evsel(pair->hists); |
| 54 | idx_delta = perf_evsel__group_idx(evsel) - prev_idx - 1; |
| 55 | |
| 56 | while (idx_delta--) { |
| 57 | /* |
| 58 | * zero-fill group members in the middle which |
| 59 | * have no sample |
| 60 | */ |
| 61 | ret += __percent_color_snprintf(hpp->buf + ret, |
| 62 | hpp->size - ret, |
| 63 | 0.0); |
| 64 | } |
| 65 | |
| 66 | percent = 100.0 * period / total; |
| 67 | ret += __percent_color_snprintf(hpp->buf + ret, |
| 68 | hpp->size - ret, |
| 69 | percent); |
| 70 | |
| 71 | prev_idx = perf_evsel__group_idx(evsel); |
| 72 | } |
| 73 | |
| 74 | idx_delta = nr_members - prev_idx - 1; |
| 75 | |
| 76 | while (idx_delta--) { |
| 77 | /* |
| 78 | * zero-fill group members at last which have no sample |
| 79 | */ |
| 80 | ret += __percent_color_snprintf(hpp->buf + ret, |
| 81 | hpp->size - ret, |
| 82 | 0.0); |
| 83 | } |
| 84 | } |
Namhyung Kim | 843985e | 2013-01-22 18:09:36 +0900 | [diff] [blame] | 85 | return ret; |
| 86 | } |
| 87 | |
| 88 | #define __HPP_COLOR_PERCENT_FN(_type, _field) \ |
| 89 | static u64 he_get_##_field(struct hist_entry *he) \ |
| 90 | { \ |
| 91 | return he->stat._field; \ |
| 92 | } \ |
| 93 | \ |
| 94 | static int perf_gtk__hpp_color_##_type(struct perf_hpp *hpp, \ |
| 95 | struct hist_entry *he) \ |
| 96 | { \ |
| 97 | return __hpp__color_fmt(hpp, he, he_get_##_field); \ |
| 98 | } |
| 99 | |
| 100 | __HPP_COLOR_PERCENT_FN(overhead, period) |
| 101 | __HPP_COLOR_PERCENT_FN(overhead_sys, period_sys) |
| 102 | __HPP_COLOR_PERCENT_FN(overhead_us, period_us) |
| 103 | __HPP_COLOR_PERCENT_FN(overhead_guest_sys, period_guest_sys) |
| 104 | __HPP_COLOR_PERCENT_FN(overhead_guest_us, period_guest_us) |
| 105 | |
| 106 | #undef __HPP_COLOR_PERCENT_FN |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 107 | |
| 108 | |
| 109 | void perf_gtk__init_hpp(void) |
| 110 | { |
| 111 | perf_hpp__column_enable(PERF_HPP__OVERHEAD); |
| 112 | |
| 113 | perf_hpp__init(); |
| 114 | |
| 115 | perf_hpp__format[PERF_HPP__OVERHEAD].color = |
| 116 | perf_gtk__hpp_color_overhead; |
| 117 | perf_hpp__format[PERF_HPP__OVERHEAD_SYS].color = |
| 118 | perf_gtk__hpp_color_overhead_sys; |
| 119 | perf_hpp__format[PERF_HPP__OVERHEAD_US].color = |
| 120 | perf_gtk__hpp_color_overhead_us; |
| 121 | perf_hpp__format[PERF_HPP__OVERHEAD_GUEST_SYS].color = |
| 122 | perf_gtk__hpp_color_overhead_guest_sys; |
| 123 | perf_hpp__format[PERF_HPP__OVERHEAD_GUEST_US].color = |
| 124 | perf_gtk__hpp_color_overhead_guest_us; |
| 125 | } |
| 126 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 127 | static void callchain_list__sym_name(struct callchain_list *cl, |
| 128 | char *bf, size_t bfsize) |
| 129 | { |
| 130 | if (cl->ms.sym) |
| 131 | scnprintf(bf, bfsize, "%s", cl->ms.sym->name); |
| 132 | else |
| 133 | scnprintf(bf, bfsize, "%#" PRIx64, cl->ip); |
| 134 | } |
| 135 | |
| 136 | static void perf_gtk__add_callchain(struct rb_root *root, GtkTreeStore *store, |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame^] | 137 | GtkTreeIter *parent, int col, u64 total) |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 138 | { |
| 139 | struct rb_node *nd; |
| 140 | bool has_single_node = (rb_first(root) == rb_last(root)); |
| 141 | |
| 142 | for (nd = rb_first(root); nd; nd = rb_next(nd)) { |
| 143 | struct callchain_node *node; |
| 144 | struct callchain_list *chain; |
| 145 | GtkTreeIter iter, new_parent; |
| 146 | bool need_new_parent; |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame^] | 147 | double percent; |
| 148 | u64 hits, child_total; |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 149 | |
| 150 | node = rb_entry(nd, struct callchain_node, rb_node); |
| 151 | |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame^] | 152 | hits = callchain_cumul_hits(node); |
| 153 | percent = 100.0 * hits / total; |
| 154 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 155 | new_parent = *parent; |
| 156 | need_new_parent = !has_single_node && (node->val_nr > 1); |
| 157 | |
| 158 | list_for_each_entry(chain, &node->val, list) { |
| 159 | char buf[128]; |
| 160 | |
| 161 | gtk_tree_store_append(store, &iter, &new_parent); |
| 162 | |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame^] | 163 | scnprintf(buf, sizeof(buf), "%5.2f%%", percent); |
| 164 | gtk_tree_store_set(store, &iter, 0, buf, -1); |
| 165 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 166 | callchain_list__sym_name(chain, buf, sizeof(buf)); |
| 167 | gtk_tree_store_set(store, &iter, col, buf, -1); |
| 168 | |
| 169 | if (need_new_parent) { |
| 170 | /* |
| 171 | * Only show the top-most symbol in a callchain |
| 172 | * if it's not the only callchain. |
| 173 | */ |
| 174 | new_parent = iter; |
| 175 | need_new_parent = false; |
| 176 | } |
| 177 | } |
| 178 | |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame^] | 179 | if (callchain_param.mode == CHAIN_GRAPH_REL) |
| 180 | child_total = node->children_hit; |
| 181 | else |
| 182 | child_total = total; |
| 183 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 184 | /* Now 'iter' contains info of the last callchain_list */ |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame^] | 185 | perf_gtk__add_callchain(&node->rb_root, store, &iter, col, |
| 186 | child_total); |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 190 | static void perf_gtk__show_hists(GtkWidget *window, struct hists *hists, |
| 191 | float min_pcnt) |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 192 | { |
| 193 | struct perf_hpp_fmt *fmt; |
| 194 | GType col_types[MAX_COLUMNS]; |
| 195 | GtkCellRenderer *renderer; |
| 196 | struct sort_entry *se; |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 197 | GtkTreeStore *store; |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 198 | struct rb_node *nd; |
| 199 | GtkWidget *view; |
| 200 | int col_idx; |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 201 | int sym_col = -1; |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 202 | int nr_cols; |
| 203 | char s[512]; |
| 204 | |
| 205 | struct perf_hpp hpp = { |
| 206 | .buf = s, |
| 207 | .size = sizeof(s), |
Namhyung Kim | cb16008 | 2013-01-22 18:09:40 +0900 | [diff] [blame] | 208 | .ptr = hists_to_evsel(hists), |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 209 | }; |
| 210 | |
| 211 | nr_cols = 0; |
| 212 | |
| 213 | perf_hpp__for_each_format(fmt) |
| 214 | col_types[nr_cols++] = G_TYPE_STRING; |
| 215 | |
| 216 | list_for_each_entry(se, &hist_entry__sort_list, list) { |
| 217 | if (se->elide) |
| 218 | continue; |
| 219 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 220 | if (se == &sort_sym) |
| 221 | sym_col = nr_cols; |
| 222 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 223 | col_types[nr_cols++] = G_TYPE_STRING; |
| 224 | } |
| 225 | |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 226 | store = gtk_tree_store_newv(nr_cols, col_types); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 227 | |
| 228 | view = gtk_tree_view_new(); |
| 229 | |
| 230 | renderer = gtk_cell_renderer_text_new(); |
| 231 | |
| 232 | col_idx = 0; |
| 233 | |
| 234 | perf_hpp__for_each_format(fmt) { |
| 235 | fmt->header(&hpp); |
| 236 | |
| 237 | gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), |
Namhyung Kim | 34b9564 | 2013-01-22 18:09:42 +0900 | [diff] [blame] | 238 | -1, ltrim(s), |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 239 | renderer, "markup", |
| 240 | col_idx++, NULL); |
| 241 | } |
| 242 | |
| 243 | list_for_each_entry(se, &hist_entry__sort_list, list) { |
| 244 | if (se->elide) |
| 245 | continue; |
| 246 | |
| 247 | gtk_tree_view_insert_column_with_attributes(GTK_TREE_VIEW(view), |
| 248 | -1, se->se_header, |
| 249 | renderer, "text", |
| 250 | col_idx++, NULL); |
| 251 | } |
| 252 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 253 | if (symbol_conf.use_callchain && sort__has_sym) { |
| 254 | GtkTreeViewColumn *column; |
| 255 | |
| 256 | column = gtk_tree_view_get_column(GTK_TREE_VIEW(view), sym_col); |
| 257 | gtk_tree_view_set_expander_column(GTK_TREE_VIEW(view), column); |
| 258 | } |
| 259 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 260 | gtk_tree_view_set_model(GTK_TREE_VIEW(view), GTK_TREE_MODEL(store)); |
| 261 | |
| 262 | g_object_unref(GTK_TREE_MODEL(store)); |
| 263 | |
| 264 | for (nd = rb_first(&hists->entries); nd; nd = rb_next(nd)) { |
| 265 | struct hist_entry *h = rb_entry(nd, struct hist_entry, rb_node); |
| 266 | GtkTreeIter iter; |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 267 | float percent = h->stat.period * 100.0 / |
| 268 | hists->stats.total_period; |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 269 | |
| 270 | if (h->filtered) |
| 271 | continue; |
| 272 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 273 | if (percent < min_pcnt) |
| 274 | continue; |
| 275 | |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 276 | gtk_tree_store_append(store, &iter, NULL); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 277 | |
| 278 | col_idx = 0; |
| 279 | |
| 280 | perf_hpp__for_each_format(fmt) { |
| 281 | if (fmt->color) |
| 282 | fmt->color(&hpp, h); |
| 283 | else |
| 284 | fmt->entry(&hpp, h); |
| 285 | |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 286 | gtk_tree_store_set(store, &iter, col_idx++, s, -1); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | list_for_each_entry(se, &hist_entry__sort_list, list) { |
| 290 | if (se->elide) |
| 291 | continue; |
| 292 | |
| 293 | se->se_snprintf(h, s, ARRAY_SIZE(s), |
| 294 | hists__col_len(hists, se->se_width_idx)); |
| 295 | |
Namhyung Kim | f1d9a53 | 2013-06-04 18:22:12 +0900 | [diff] [blame] | 296 | gtk_tree_store_set(store, &iter, col_idx++, s, -1); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 297 | } |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 298 | |
| 299 | if (symbol_conf.use_callchain && sort__has_sym) { |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame^] | 300 | u64 total; |
| 301 | |
| 302 | if (callchain_param.mode == CHAIN_GRAPH_REL) |
| 303 | total = h->stat.period; |
| 304 | else |
| 305 | total = hists->stats.total_period; |
| 306 | |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 307 | perf_gtk__add_callchain(&h->sorted_chain, store, &iter, |
Namhyung Kim | cc60f24 | 2013-06-04 18:22:14 +0900 | [diff] [blame^] | 308 | sym_col, total); |
Namhyung Kim | 2bbc587 | 2013-06-04 18:22:13 +0900 | [diff] [blame] | 309 | } |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | gtk_container_add(GTK_CONTAINER(window), view); |
| 313 | } |
| 314 | |
| 315 | int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, |
| 316 | const char *help, |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 317 | struct hist_browser_timer *hbt __maybe_unused, |
| 318 | float min_pcnt) |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 319 | { |
| 320 | struct perf_evsel *pos; |
| 321 | GtkWidget *vbox; |
| 322 | GtkWidget *notebook; |
| 323 | GtkWidget *info_bar; |
| 324 | GtkWidget *statbar; |
| 325 | GtkWidget *window; |
| 326 | |
| 327 | signal(SIGSEGV, perf_gtk__signal); |
| 328 | signal(SIGFPE, perf_gtk__signal); |
| 329 | signal(SIGINT, perf_gtk__signal); |
| 330 | signal(SIGQUIT, perf_gtk__signal); |
| 331 | signal(SIGTERM, perf_gtk__signal); |
| 332 | |
| 333 | window = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
| 334 | |
| 335 | gtk_window_set_title(GTK_WINDOW(window), "perf report"); |
| 336 | |
| 337 | g_signal_connect(window, "delete_event", gtk_main_quit, NULL); |
| 338 | |
| 339 | pgctx = perf_gtk__activate_context(window); |
| 340 | if (!pgctx) |
| 341 | return -1; |
| 342 | |
| 343 | vbox = gtk_vbox_new(FALSE, 0); |
| 344 | |
| 345 | notebook = gtk_notebook_new(); |
| 346 | |
Namhyung Kim | 6bf1a29 | 2012-12-21 17:20:14 +0900 | [diff] [blame] | 347 | gtk_box_pack_start(GTK_BOX(vbox), notebook, TRUE, TRUE, 0); |
| 348 | |
| 349 | info_bar = perf_gtk__setup_info_bar(); |
| 350 | if (info_bar) |
| 351 | gtk_box_pack_start(GTK_BOX(vbox), info_bar, FALSE, FALSE, 0); |
| 352 | |
| 353 | statbar = perf_gtk__setup_statusbar(); |
| 354 | gtk_box_pack_start(GTK_BOX(vbox), statbar, FALSE, FALSE, 0); |
| 355 | |
| 356 | gtk_container_add(GTK_CONTAINER(window), vbox); |
| 357 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 358 | list_for_each_entry(pos, &evlist->entries, node) { |
| 359 | struct hists *hists = &pos->hists; |
| 360 | const char *evname = perf_evsel__name(pos); |
| 361 | GtkWidget *scrolled_window; |
| 362 | GtkWidget *tab_label; |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 363 | char buf[512]; |
| 364 | size_t size = sizeof(buf); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 365 | |
Namhyung Kim | 717e263 | 2013-01-22 18:09:44 +0900 | [diff] [blame] | 366 | if (symbol_conf.event_group) { |
| 367 | if (!perf_evsel__is_group_leader(pos)) |
| 368 | continue; |
| 369 | |
| 370 | if (pos->nr_members > 1) { |
| 371 | perf_evsel__group_desc(pos, buf, size); |
| 372 | evname = buf; |
| 373 | } |
| 374 | } |
Namhyung Kim | fc24d7c | 2013-01-22 18:09:43 +0900 | [diff] [blame] | 375 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 376 | scrolled_window = gtk_scrolled_window_new(NULL, NULL); |
| 377 | |
| 378 | gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window), |
| 379 | GTK_POLICY_AUTOMATIC, |
| 380 | GTK_POLICY_AUTOMATIC); |
| 381 | |
Namhyung Kim | 064f198 | 2013-05-14 11:09:04 +0900 | [diff] [blame] | 382 | perf_gtk__show_hists(scrolled_window, hists, min_pcnt); |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 383 | |
| 384 | tab_label = gtk_label_new(evname); |
| 385 | |
| 386 | gtk_notebook_append_page(GTK_NOTEBOOK(notebook), scrolled_window, tab_label); |
| 387 | } |
| 388 | |
Namhyung Kim | 0da41ce9 | 2012-12-21 17:20:13 +0900 | [diff] [blame] | 389 | gtk_widget_show_all(window); |
| 390 | |
| 391 | perf_gtk__resize_window(window); |
| 392 | |
| 393 | gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); |
| 394 | |
| 395 | ui_helpline__push(help); |
| 396 | |
| 397 | gtk_main(); |
| 398 | |
| 399 | perf_gtk__deactivate_context(&pgctx); |
| 400 | |
| 401 | return 0; |
| 402 | } |