private.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_history_t *history;
  27. tinyrl_history_iterator_t hist_iter;
  28. tinyrl_vt100_t *term;
  29. void *context; /* context supplied by caller
  30. * to tinyrl_readline()
  31. */
  32. char echo_char;
  33. bool_t echo_enabled;
  34. struct termios default_termios;
  35. bool_t isatty;
  36. char *last_buffer; /* hold record of the previous
  37. buffer for redisplay purposes */
  38. unsigned int last_point; /* hold record of the previous
  39. cursor position for redisplay purposes */
  40. unsigned int last_width; /* Last terminal width. For resize */
  41. bool_t utf8; /* Is the encoding UTF-8 */
  42. };