private.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #include <termios.h>
  2. #include "tinyrl/tinyrl.h"
  3. #include "tinyrl/vt100.h"
  4. /* define the class member data and virtual methods */
  5. struct _tinyrl {
  6. const char *line;
  7. unsigned max_line_length;
  8. char *prompt;
  9. size_t prompt_size; /* strlen() */
  10. size_t prompt_len; /* Symbol positions */
  11. char *buffer;
  12. size_t buffer_size;
  13. bool_t done;
  14. bool_t completion_over;
  15. bool_t completion_error_over;
  16. unsigned point;
  17. unsigned end;
  18. tinyrl_completion_func_t *attempted_completion_function;
  19. tinyrl_timeout_fn_t *timeout_fn; /* timeout callback */
  20. tinyrl_keypress_fn_t *keypress_fn; /* keypress callback */
  21. int state;
  22. #define RL_STATE_COMPLETING (0x00000001)
  23. char *kill_string;
  24. #define NUM_HANDLERS 256
  25. tinyrl_key_func_t *handlers[NUM_HANDLERS];
  26. tinyrl_key_func_t *hotkey_fn;
  27. tinyrl_history_t *history;
  28. tinyrl_history_iterator_t hist_iter;
  29. tinyrl_vt100_t *term;
  30. void *context; /* context supplied by caller
  31. * to tinyrl_readline()
  32. */
  33. char echo_char;
  34. bool_t echo_enabled;
  35. struct termios default_termios;
  36. bool_t isatty;
  37. char *last_buffer; /* hold record of the previous
  38. buffer for redisplay purposes */
  39. unsigned int last_point; /* hold record of the previous
  40. cursor position for redisplay purposes */
  41. unsigned int last_line_size; /* The length of last_buffer */
  42. unsigned int last_width; /* Last terminal width. For resize */
  43. bool_t utf8; /* Is the encoding UTF-8 */
  44. };