1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _PERF_UI_BROWSER_HISTS_H_
3 #define _PERF_UI_BROWSER_HISTS_H_ 1
5 #include "ui/browser.h"
7 struct annotation_options
;
13 struct hist_entry
*he_selection
;
14 struct map_symbol
*selection
;
15 struct hist_browser_timer
*hbt
;
16 struct pstack
*pstack
;
18 struct annotation_options
*annotation_opts
;
19 struct evsel
*block_evsel
;
24 u64 nr_non_filtered_entries
;
25 u64 nr_hierarchy_entries
;
26 u64 nr_callchain_rows
;
29 /* Get title string. */
30 int (*title
)(struct hist_browser
*browser
,
31 char *bf
, size_t size
);
34 struct hist_browser
*hist_browser__new(struct hists
*hists
);
35 void hist_browser__delete(struct hist_browser
*browser
);
36 int hist_browser__run(struct hist_browser
*browser
, const char *help
,
37 bool warn_lost_event
, int key
);
38 void hist_browser__init(struct hist_browser
*browser
,
40 #endif /* _PERF_UI_BROWSER_HISTS_H_ */