summaryrefslogtreecommitdiffstats
path: root/src/hci
Commit message (Expand)AuthorAgeFilesLines
* Define KEY_MIN and use it in kb.c.Michael Brown2006-12-201-2/+2
* settings_ui() now returns a status code.Michael Brown2006-12-202-5/+14
* Add EIO.Michael Brown2006-12-201-5/+4Star
* Split the (quick hack) boot logic out from main.c to autoboot.c, add aMichael Brown2006-12-201-0/+21
* Explicitly call erase(), to cope with platforms where the ANSI clearMichael Brown2006-12-201-0/+5
* Add "config" command to access config UIMichael Brown2006-12-201-0/+35
* Add instruction row, and save optionMichael Brown2006-12-201-17/+58
* Only need printf(), so use vsprintf.h instead of console.hMichael Brown2006-12-202-2/+2
* Clear message on alert row before printing new oneMichael Brown2006-12-201-0/+1
* Added descriptive text for settings and setting types, and display it inMichael Brown2006-12-201-7/+70
* Move {show,set,clear}_setting() to {show,set,clear}_named_setting().Michael Brown2006-12-202-10/+9Star
* Added messages for some of the most common errorsMichael Brown2006-12-201-0/+11
* Split strerror() out from errno.cMichael Brown2006-12-201-0/+49
* Alert when saving settings failsMichael Brown2006-12-201-5/+27
* Fix (hopefully) the scrolling logicMichael Brown2006-12-201-11/+11
* Add (partly-functional) user interface for editing configuration settingsMichael Brown2006-12-201-0/+285
* Don't automatically redraw the edit box; this allows better inheritance.Michael Brown2006-12-201-19/+0Star
* Editable text box widget based on mucurses and edit_string.Michael Brown2006-12-201-0/+115
* Reset screen on exit as well as entryMichael Brown2006-12-201-6/+3Star
* Add "exit --help" to preempt the pedants.Michael Brown2006-12-201-2/+9
* Remove obsolete mechanism for including nvo_cmd.oMichael Brown2006-12-201-2/+0Star
* Move nvo_cmd.c to hci/commands.Michael Brown2006-12-201-0/+111
* Separated out (and tidied up) shell banner codeMichael Brown2006-12-201-0/+65
* Minimal shell implementation using readline() and system().Michael Brown2006-12-201-0/+86
* Use stdlib.h for malloc() instead of malloc.h.Michael Brown2006-12-201-1/+1
* Explicitly print out-of-memory message to avoid tricking the user intoMichael Brown2006-12-201-7/+7
* Functioning readline()Michael Brown2006-12-201-2/+47
* Provide an edit history to allow caller to efficiently update display.Michael Brown2006-12-201-1/+15
* Explicitly move cursor to top-left of screen, in case the clear screenMichael Brown2006-12-191-1/+1
* Skeletal (non-echoing) version of readline()Michael Brown2006-12-191-0/+68
* Start of generic editable string supportMichael Brown2006-12-191-0/+159
* Use current attributes when erasing.Michael Brown2006-12-193-4/+16
* Assume a 24-line screen, since we can't (easily) avoid scrolling afterMichael Brown2006-12-191-1/+1
* Avoid cursor move on every single characterMichael Brown2006-12-191-4/+20
* Use ANSI escape sequence to reset and clear terminal, rather than usingMichael Brown2006-12-192-2/+2
* Now basically functioning on ANSI-supporting consoles.Michael Brown2006-12-197-55/+138
* Adjusted to use the normal internal mucurses API rather than accessingMichael Brown2006-12-181-19/+25
* Remove more dynamic allocationMichael Brown2006-12-181-8/+20
* There seems to be no reason why pos_x is static...Michael Brown2006-12-181-3/+3
* Remove some unnecessary use of calloc() for tiny memory areas.Michael Brown2006-12-181-11/+8Star
* Convert _{store,restore}_cursor_pos to static inlines.Michael Brown2006-12-182-33/+20Star
* wmove() is part of the public curses API, and already defined in curses.hMichael Brown2006-12-181-1/+0Star
* Renamed core.h to mucurses.hMichael Brown2006-12-189-11/+11
* Rename core.c->mucurses.c; bin/core.o is too generic to belong to mucurses.Michael Brown2006-12-181-0/+0
* Use iskey() and getchar() to interact with console, rather than objectMichael Brown2006-12-181-2/+3
* - implemented cursor retreat function (_wcursback) as a core functionDan Lynch2006-06-284-41/+74
* - put in the screen initialisation stuff and clear the screen...Dan Lynch2006-06-271-2/+3
* - works with test ansi tty, but will need a rethink when we startDan Lynch2006-06-271-2/+6
* check whether malloc returns a valid pointerDan Lynch2006-06-271-4/+9
* moved console specific items out of mucurses (should be handled by external s...Dan Lynch2006-06-271-9/+0Star