edit-widget.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /** \file
  2. * \brief Header: editor widget WEdit
  3. */
  4. #ifndef MC_EDIT_WIDGET_H
  5. #define MC_EDIT_WIDGET_H
  6. #include "../src/dialog.h" /* Widget */
  7. #include "../src/search/search.h" /* mc_search_t */
  8. #include "edit-impl.h"
  9. #define MAX_MACRO_LENGTH 1024
  10. #define N_LINE_CACHES 32
  11. #define BOOK_MARK_COLOR ((25 << 8) | 5)
  12. #define BOOK_MARK_FOUND_COLOR ((26 << 8) | 4)
  13. struct _book_mark {
  14. int line; /* line number */
  15. int c; /* color */
  16. struct _book_mark *next;
  17. struct _book_mark *prev;
  18. };
  19. struct syntax_rule {
  20. unsigned short keyword;
  21. unsigned char end;
  22. unsigned char context;
  23. unsigned char _context;
  24. unsigned char border;
  25. };
  26. typedef struct edit_key_map_type {
  27. long key;
  28. long command;
  29. } edit_key_map_type;
  30. struct WEdit {
  31. Widget widget;
  32. int num_widget_lines;
  33. int num_widget_columns;
  34. char *filename; /* Name of the file */
  35. char *dir; /* NULL if filename is absolute */
  36. /* dynamic buffers and cursor position for editor: */
  37. long curs1; /* position of the cursor from the beginning of the file. */
  38. long curs2; /* position from the end of the file */
  39. unsigned char *buffers1[MAXBUFF + 1]; /* all data up to curs1 */
  40. unsigned char *buffers2[MAXBUFF + 1]; /* all data from end of file down to curs2 */
  41. /* UTF8 */
  42. char charbuf[4 + 1];
  43. int charpoint;
  44. /* search variables */
  45. mc_search_t *search;
  46. unsigned int search_type;
  47. int replace_mode;
  48. int replace_backwards;
  49. int replace_case;
  50. int only_in_selection;
  51. int whole_words;
  52. int all_codepages;
  53. long search_start; /* First character to start searching from */
  54. int found_len; /* Length of found string or 0 if none was found */
  55. long found_start; /* the found word from a search - start position */
  56. /* display information */
  57. long last_byte; /* Last byte of file */
  58. long start_display; /* First char displayed */
  59. long start_col; /* First displayed column, negative */
  60. long max_column; /* The maximum cursor position ever reached used to calc hori scroll bar */
  61. long curs_row; /* row position of cursor on the screen */
  62. long curs_col; /* column position on screen */
  63. long over_col; /* pos after '\n' */
  64. int force; /* how much of the screen do we redraw? */
  65. unsigned int overwrite:1; /* Overwrite on type mode (as opposed to insert) */
  66. unsigned int modified:1; /* File has been modified and needs saving */
  67. unsigned int loading_done:1;/* File has been loaded into the editor */
  68. unsigned int locked:1; /* We hold lock on current file */
  69. unsigned int screen_modified:1; /* File has been changed since the last screen draw */
  70. unsigned int delete_file:1; /* New file, needs to be deleted unless modified */
  71. unsigned int highlight:1; /* There is a selected block */
  72. unsigned int utf8:1; /* It's multibyte file codeset */
  73. long prev_col; /* recent column position of the cursor - used when moving
  74. up or down past lines that are shorter than the current line */
  75. long curs_line; /* line number of the cursor. */
  76. long start_line; /* line number of the top of the page */
  77. /* file info */
  78. long total_lines; /* total lines in the file */
  79. long mark1; /* position of highlight start */
  80. long mark2; /* position of highlight end */
  81. int column1; /* position of column highlight start */
  82. int column2; /* position of column highlight end */
  83. long bracket; /* position of a matching bracket */
  84. /* cache speedup for line lookups */
  85. int caches_valid;
  86. int line_numbers[N_LINE_CACHES];
  87. long line_offsets[N_LINE_CACHES];
  88. struct _book_mark *book_mark;
  89. /* undo stack and pointers */
  90. unsigned long stack_pointer;
  91. long *undo_stack;
  92. unsigned long stack_size;
  93. unsigned long stack_size_mask;
  94. unsigned long stack_bottom;
  95. unsigned int stack_disable:1; /* If not 0, don't save events in the undo stack */
  96. struct stat stat1; /* Result of mc_fstat() on the file */
  97. unsigned int skip_detach_prompt:1; /* Do not prompt whether to detach a file anymore */
  98. /* syntax higlighting */
  99. struct _syntax_marker *syntax_marker;
  100. struct context_rule **rules;
  101. long last_get_rule;
  102. struct syntax_rule rule;
  103. char *syntax_type; /* description of syntax highlighting type being used */
  104. GTree *defines; /* List of defines */
  105. /* macro stuff */
  106. int macro_i; /* index to macro[], -1 if not recording a macro */
  107. int macro_depth; /* depth of the macro recursion */
  108. struct macro macro[MAX_MACRO_LENGTH];
  109. /* user map stuff */
  110. const edit_key_map_type *user_map;
  111. const edit_key_map_type *ext_map;
  112. GIConv converter;
  113. /* line break */
  114. LineBreaks lb;
  115. int extmod;
  116. char *labels[10];
  117. };
  118. #endif /* MC_EDIT_WIDGET_H */