diff options
Diffstat (limited to 'tools/perf/util/ui/browser.h')
-rw-r--r-- | tools/perf/util/ui/browser.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tools/perf/util/ui/browser.h b/tools/perf/util/ui/browser.h new file mode 100644 index 000000000000..bcc4391405bd --- /dev/null +++ b/tools/perf/util/ui/browser.h | |||
@@ -0,0 +1,43 @@ | |||
1 | #ifndef _PERF_UI_BROWSER_H_ | ||
2 | #define _PERF_UI_BROWSER_H_ 1 | ||
3 | |||
4 | #include <stdbool.h> | ||
5 | #include <newt.h> | ||
6 | #include "../types.h" | ||
7 | |||
8 | #define HE_COLORSET_TOP 50 | ||
9 | #define HE_COLORSET_MEDIUM 51 | ||
10 | #define HE_COLORSET_NORMAL 52 | ||
11 | #define HE_COLORSET_SELECTED 53 | ||
12 | #define HE_COLORSET_CODE 54 | ||
13 | |||
14 | struct ui_browser { | ||
15 | newtComponent form, sb; | ||
16 | u64 index, first_visible_entry_idx; | ||
17 | void *first_visible_entry, *entries; | ||
18 | u16 top, left, width, height; | ||
19 | void *priv; | ||
20 | unsigned int (*refresh)(struct ui_browser *self); | ||
21 | void (*write)(struct ui_browser *self, void *entry, int row); | ||
22 | void (*seek)(struct ui_browser *self, off_t offset, int whence); | ||
23 | u32 nr_entries; | ||
24 | }; | ||
25 | |||
26 | |||
27 | int ui_browser__percent_color(double percent, bool current); | ||
28 | bool ui_browser__is_current_entry(struct ui_browser *self, unsigned row); | ||
29 | void ui_browser__refresh_dimensions(struct ui_browser *self); | ||
30 | void ui_browser__reset_index(struct ui_browser *self); | ||
31 | |||
32 | int ui_browser__show(struct ui_browser *self, const char *title); | ||
33 | int ui_browser__refresh(struct ui_browser *self); | ||
34 | int ui_browser__run(struct ui_browser *self, struct newtExitStruct *es); | ||
35 | |||
36 | void ui_browser__rb_tree_seek(struct ui_browser *self, off_t offset, int whence); | ||
37 | unsigned int ui_browser__rb_tree_refresh(struct ui_browser *self); | ||
38 | |||
39 | void ui_browser__list_head_seek(struct ui_browser *self, off_t offset, int whence); | ||
40 | unsigned int ui_browser__list_head_refresh(struct ui_browser *self); | ||
41 | |||
42 | void ui_browser__init(void); | ||
43 | #endif /* _PERF_UI_BROWSER_H_ */ | ||