Paul LeoNerd Evans
|
ef669c134d
|
Complete change of driver internals - peek and return size but don't eat bytes; eat later in getkey()
|
2008-12-10 00:23:47 +00:00 |
Paul LeoNerd Evans
|
43a99e64f2
|
strdup() the terminfo keypad_local and keypad_xmit strings at construct time, in case multiple instances and they change beneath us
|
2008-12-03 20:19:15 +00:00 |
Paul LeoNerd Evans
|
2c1bea4f15
|
Use a C99 flexible array member rather than the [0] hack
|
2008-12-02 01:05:47 +00:00 |
Paul LeoNerd Evans
|
d245285df2
|
Cast 'term' to (non-const) char* when passing to setupterm() because terminfo's prototypes don't use const
|
2008-11-28 19:48:41 +00:00 |
Paul LeoNerd Evans
|
fef558eeb4
|
Use sizeof() on assigned variables rather than types, to make code a little less fragile to type changes
|
2008-11-24 22:15:43 +00:00 |
Paul LeoNerd Evans
|
c6ff878411
|
Fixed another signed-vs-unsigned int comparison in driver-ti.c
|
2008-11-24 22:06:14 +00:00 |
Paul LeoNerd Evans
|
14561e2a30
|
Only print about unrecognised terminfo variable names when debugging
|
2008-11-18 15:55:29 +00:00 |
Paul LeoNerd Evans
|
4a108d4916
|
Compress trie nodes down to extent maps after loading, to save memory
|
2008-11-12 23:58:20 +00:00 |
Paul LeoNerd Evans
|
754214c200
|
Use a trie instead of a linear list of sequence strings in the terminfo driver - nicer lookup properties
|
2008-11-12 16:32:17 +00:00 |
Paul LeoNerd Evans
|
04e1926df6
|
Handle malloc() failures during setup of driver-ti
|
2008-11-12 16:10:58 +00:00 |
Paul LeoNerd Evans
|
30a3356815
|
Implemented free_driver() in terminfo driver
|
2008-11-09 22:38:10 +00:00 |
Paul LeoNerd Evans
|
09edf2377f
|
Driver getkey() can return TERMKEY_RES_NONE which attempts getkey_simple() afterwards
|
2008-11-09 19:45:43 +00:00 |
Paul LeoNerd Evans
|
d50d772ca5
|
Drivers have names
|
2008-11-08 17:56:44 +00:00 |
Paul LeoNerd Evans
|
e880602944
|
Pass driver_info as explicit void* parameter into driver methods
|
2008-11-08 17:47:57 +00:00 |
Paul LeoNerd Evans
|
1c46f5edfa
|
Recognise 'key_mouse' as an ignored terminfo key
|
2008-11-02 22:16:03 +00:00 |
Paul LeoNerd Evans
|
aef409c460
|
Terminfo driver needs to put terminal into 'keypad_xmit' mode when starting
|
2008-11-02 17:59:30 +00:00 |
Paul LeoNerd Evans
|
62d4e7eccb
|
Pass the 'force' value through to getkey_simple()
|
2008-11-02 14:43:19 +00:00 |
Paul LeoNerd Evans
|
bb00cd64b1
|
Added many more key symbols and names + translations from terminfo
|
2008-10-10 01:11:24 +01:00 |
Paul LeoNerd Evans
|
2ceb64261a
|
Binary search terminfo funcname => termkey sym conversion, rather than linear
|
2008-10-10 00:44:13 +01:00 |
Paul LeoNerd Evans
|
37156ad580
|
Added some TODO notes about handling realloc() failures
|
2008-10-09 23:53:35 +01:00 |
Paul LeoNerd Evans
|
2b08f88f19
|
Better free() tracking in constructor failure cases
|
2008-10-09 23:19:10 +01:00 |
Paul LeoNerd Evans
|
05639c4773
|
Pass 'term' string into new_driver virtual method; have drivers sensitive to it and return NULL if they can't handle. Try CSI driver first; only for xterm-alikes
|
2008-10-09 20:23:45 +01:00 |
Paul LeoNerd Evans
|
c974e61a8d
|
Added initial attempt at a terminfo-driven driver
|
2008-10-08 02:04:47 +01:00 |