#ifndef _PERF_GTK_H_ #define _PERF_GTK_H_ 1 #include <stdbool.h> #pragma GCC diagnostic ignored "-Wstrict-prototypes" #include <gtk/gtk.h> #pragma GCC diagnostic error "-Wstrict-prototypes" struct perf_gtk_context { GtkWidget *main_window; GtkWidget *notebook; #ifdef HAVE_GTK_INFO_BAR_SUPPORT GtkWidget *info_bar; GtkWidget *message_label; #endif GtkWidget *statbar; guint statbar_ctx_id; }; int perf_gtk__init(void); void perf_gtk__exit(bool wait_for_ok); extern struct perf_gtk_context *pgctx;
static inline bool perf_gtk__is_active_context(struct perf_gtk_context *ctx) { return ctx && ctx->main_window; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
namhyung kim | namhyung kim | 19 | 100.00% | 1 | 100.00% |
Total | 19 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
namhyung kim | namhyung kim | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
namhyung kim | namhyung kim | 226 | 88.98% | 9 | 75.00% |
pekka j enberg | pekka j enberg | 25 | 9.84% | 1 | 8.33% |
ingo molnar | ingo molnar | 2 | 0.79% | 1 | 8.33% |
arnaldo carvalho de melo | arnaldo carvalho de melo | 1 | 0.39% | 1 | 8.33% |
Total | 254 | 100.00% | 12 | 100.00% |