perf ui browser: Use libslang to read keys
Just another step in stopping the use of libnewt in perf. Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/n/tip-uy6s534uqxq8tenh6s3k8ocj@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
25
tools/perf/util/ui/keysyms.h
Normal file
25
tools/perf/util/ui/keysyms.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef _PERF_KEYSYMS_H_
|
||||
#define _PERF_KEYSYMS_H_ 1
|
||||
|
||||
#include "libslang.h"
|
||||
|
||||
#define K_DOWN SL_KEY_DOWN
|
||||
#define K_END SL_KEY_END
|
||||
#define K_ENTER '\r'
|
||||
#define K_ESC 033
|
||||
#define K_F1 SL_KEY_F(1)
|
||||
#define K_HOME SL_KEY_HOME
|
||||
#define K_LEFT SL_KEY_LEFT
|
||||
#define K_PGDN SL_KEY_NPAGE
|
||||
#define K_PGUP SL_KEY_PPAGE
|
||||
#define K_RIGHT SL_KEY_RIGHT
|
||||
#define K_TAB '\t'
|
||||
#define K_UNTAB SL_KEY_UNTAB
|
||||
#define K_UP SL_KEY_UP
|
||||
|
||||
/* Not really keys */
|
||||
#define K_TIMER -1
|
||||
#define K_ERROR -2
|
||||
#define K_RESIZE -3
|
||||
|
||||
#endif /* _PERF_KEYSYMS_H_ */
|
Reference in New Issue
Block a user