~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/ui/gtk/gtk.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/perf/ui/gtk/gtk.h (Version linux-6.12-rc7) and /tools/perf/ui/gtk/gtk.h (Version linux-5.7.19)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _PERF_GTK_H_                                2 #ifndef _PERF_GTK_H_
  3 #define _PERF_GTK_H_ 1                              3 #define _PERF_GTK_H_ 1
  4                                                     4 
  5 #include <stdbool.h>                                5 #include <stdbool.h>
  6                                                     6 
  7 #pragma GCC diagnostic ignored "-Wstrict-proto      7 #pragma GCC diagnostic ignored "-Wstrict-prototypes"
  8 #include <gtk/gtk.h>                                8 #include <gtk/gtk.h>
  9 #pragma GCC diagnostic error "-Wstrict-prototy      9 #pragma GCC diagnostic error "-Wstrict-prototypes"
 10                                                    10 
 11                                                    11 
 12 struct perf_gtk_context {                          12 struct perf_gtk_context {
 13         GtkWidget *main_window;                    13         GtkWidget *main_window;
 14         GtkWidget *notebook;                       14         GtkWidget *notebook;
 15                                                    15 
 16 #ifdef HAVE_GTK_INFO_BAR_SUPPORT                   16 #ifdef HAVE_GTK_INFO_BAR_SUPPORT
 17         GtkWidget *info_bar;                       17         GtkWidget *info_bar;
 18         GtkWidget *message_label;                  18         GtkWidget *message_label;
 19 #endif                                             19 #endif
 20         GtkWidget *statbar;                        20         GtkWidget *statbar;
 21         guint statbar_ctx_id;                      21         guint statbar_ctx_id;
 22 };                                                 22 };
 23                                                    23 
 24 int perf_gtk__init(void);                          24 int perf_gtk__init(void);
 25 void perf_gtk__exit(bool wait_for_ok);             25 void perf_gtk__exit(bool wait_for_ok);
 26                                                    26 
 27 extern struct perf_gtk_context *pgctx;             27 extern struct perf_gtk_context *pgctx;
 28                                                    28 
 29 static inline bool perf_gtk__is_active_context     29 static inline bool perf_gtk__is_active_context(struct perf_gtk_context *ctx)
 30 {                                                  30 {
 31         return ctx && ctx->main_window;            31         return ctx && ctx->main_window;
 32 }                                                  32 }
 33                                                    33 
 34 struct perf_gtk_context *perf_gtk__activate_co     34 struct perf_gtk_context *perf_gtk__activate_context(GtkWidget *window);
 35 int perf_gtk__deactivate_context(struct perf_g     35 int perf_gtk__deactivate_context(struct perf_gtk_context **ctx);
 36                                                    36 
 37 void perf_gtk__init_helpline(void);                37 void perf_gtk__init_helpline(void);
 38 void gtk_ui_progress__init(void);                  38 void gtk_ui_progress__init(void);
 39 void perf_gtk__init_hpp(void);                     39 void perf_gtk__init_hpp(void);
 40                                                    40 
 41 void perf_gtk__signal(int sig);                    41 void perf_gtk__signal(int sig);
 42 void perf_gtk__resize_window(GtkWidget *window     42 void perf_gtk__resize_window(GtkWidget *window);
 43 const char *perf_gtk__get_percent_color(double     43 const char *perf_gtk__get_percent_color(double percent);
 44 GtkWidget *perf_gtk__setup_statusbar(void);        44 GtkWidget *perf_gtk__setup_statusbar(void);
 45                                                    45 
 46 #ifdef HAVE_GTK_INFO_BAR_SUPPORT                   46 #ifdef HAVE_GTK_INFO_BAR_SUPPORT
 47 GtkWidget *perf_gtk__setup_info_bar(void);         47 GtkWidget *perf_gtk__setup_info_bar(void);
 48 #else                                              48 #else
 49 static inline GtkWidget *perf_gtk__setup_info_     49 static inline GtkWidget *perf_gtk__setup_info_bar(void)
 50 {                                                  50 {
 51         return NULL;                               51         return NULL;
 52 }                                                  52 }
 53 #endif                                             53 #endif
 54                                                    54 
 55 struct evsel;                                      55 struct evsel;
 56 struct evlist;                                     56 struct evlist;
 57 struct hist_entry;                                 57 struct hist_entry;
 58 struct hist_browser_timer;                         58 struct hist_browser_timer;
 59                                                    59 
 60 int evlist__gtk_browse_hists(struct evlist *ev !!  60 int perf_evlist__gtk_browse_hists(struct evlist *evlist, const char *help,
 61                              struct hist_brows !!  61                                   struct hist_browser_timer *hbt,
                                                   >>  62                                   float min_pcnt);
 62 int hist_entry__gtk_annotate(struct hist_entry     63 int hist_entry__gtk_annotate(struct hist_entry *he,
 63                              struct evsel *evs     64                              struct evsel *evsel,
 64                              struct hist_brows     65                              struct hist_browser_timer *hbt);
 65 void perf_gtk__show_annotations(void);             66 void perf_gtk__show_annotations(void);
 66                                                    67 
 67 #endif /* _PERF_GTK_H_ */                          68 #endif /* _PERF_GTK_H_ */
 68                                                    69 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php