edit.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. /* edit.h - main include file
  2. Copyright (C) 1996, 1997 Free Software Foundation, Inc.
  3. Authors: 1996, 1997 Paul Sheer
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  15. 02110-1301, USA.
  16. */
  17. #ifndef MC_EDIT_H
  18. #define MC_EDIT_H
  19. #include <stdio.h>
  20. #include "src/tty.h"
  21. #ifdef UTF8
  22. #include <wchar.h>
  23. #include <wctype.h>
  24. #define mc_wchar_t wchar_t
  25. #define mc_wint_t wint_t
  26. #else
  27. #define mc_wchar_t unsigned char
  28. #define mc_wint_t int
  29. #endif
  30. /* unicode private use area */
  31. #define BINARY_CHAR_OFFSET 0xFFE00
  32. #define N_menus 5
  33. #define SEARCH_DIALOG_OPTION_NO_SCANF (1 << 0)
  34. #define SEARCH_DIALOG_OPTION_NO_REGEX (1 << 1)
  35. #define SEARCH_DIALOG_OPTION_NO_CASE (1 << 2)
  36. #define SEARCH_DIALOG_OPTION_BACKWARDS (1 << 3)
  37. #define SEARCH_DIALOG_OPTION_BOOKMARK (1 << 4)
  38. #define EDIT_KEY_EMULATION_NORMAL 0
  39. #define EDIT_KEY_EMULATION_EMACS 1
  40. #define EDIT_KEY_EMULATION_USER 2
  41. #define REDRAW_LINE (1 << 0)
  42. #define REDRAW_LINE_ABOVE (1 << 1)
  43. #define REDRAW_LINE_BELOW (1 << 2)
  44. #define REDRAW_AFTER_CURSOR (1 << 3)
  45. #define REDRAW_BEFORE_CURSOR (1 << 4)
  46. #define REDRAW_PAGE (1 << 5)
  47. #define REDRAW_IN_BOUNDS (1 << 6)
  48. #define REDRAW_CHAR_ONLY (1 << 7)
  49. #define REDRAW_COMPLETELY (1 << 8)
  50. #define EDIT_TEXT_HORIZONTAL_OFFSET 0
  51. #define EDIT_TEXT_VERTICAL_OFFSET 1
  52. #define EDIT_RIGHT_EXTREME option_edit_right_extreme
  53. #define EDIT_LEFT_EXTREME option_edit_left_extreme
  54. #define EDIT_TOP_EXTREME option_edit_top_extreme
  55. #define EDIT_BOTTOM_EXTREME option_edit_bottom_extreme
  56. /*
  57. * The editor keeps data in two arrays of buffers.
  58. * All buffers have the same size, which must be a power of 2.
  59. */
  60. /* Configurable: log2 of the buffer size in bytes */
  61. #ifndef S_EDIT_BUF_SIZE
  62. #define S_EDIT_BUF_SIZE 16
  63. #endif
  64. /* Size of the buffer */
  65. #define EDIT_BUF_SIZE (((off_t) 1) << S_EDIT_BUF_SIZE)
  66. /* Buffer mask (used to find cursor position relative to the buffer) */
  67. #define M_EDIT_BUF_SIZE (EDIT_BUF_SIZE - 1)
  68. /*
  69. * Configurable: Maximal allowed number of buffers in each buffer array.
  70. * This number can be increased for systems with enough physical memory.
  71. */
  72. #ifndef MAXBUFF
  73. #define MAXBUFF 1024
  74. #endif
  75. /* Maximal length of file that can be opened */
  76. #define SIZE_LIMIT (EDIT_BUF_SIZE * (MAXBUFF - 2))
  77. /* Initial size of the undo stack, in bytes */
  78. #define START_STACK_SIZE 32
  79. /* Some codes that may be pushed onto or returned from the undo stack */
  80. #define CHAR_INSERT 65
  81. #define CHAR_INSERT_AHEAD 66
  82. #define CURS_LEFT 601
  83. #define CURS_RIGHT 602
  84. #define DELCHAR 603
  85. #define BACKSPACE 604
  86. #define STACK_BOTTOM 605
  87. #define CURS_LEFT_LOTS 606
  88. #define CURS_RIGHT_LOTS 607
  89. #define COLUMN_ON 608
  90. #define COLUMN_OFF 609
  91. #define MARK_1 1000
  92. #define MARK_2 700000000
  93. #define KEY_PRESS 1400000000
  94. /* Tabs spaces: (sofar only HALF_TAB_SIZE is used: */
  95. #define TAB_SIZE option_tab_spacing
  96. #define HALF_TAB_SIZE ((int) option_tab_spacing / 2)
  97. struct macro {
  98. short command;
  99. mc_wchar_t ch;
  100. };
  101. struct WEdit;
  102. typedef struct WEdit WEdit;
  103. struct Menu;
  104. int edit_drop_hotkey_menu (WEdit *e, int key);
  105. void edit_menu_cmd (WEdit *e);
  106. struct WMenu *edit_init_menu (void);
  107. void edit_done_menu (struct WMenu *wmenu);
  108. void edit_reload_menu (void);
  109. void menu_save_mode_cmd (void);
  110. int edit_raw_key_query (const char *heading, const char *query, int cancel);
  111. int edit_file (const char *_file, int line);
  112. int edit_translate_key (WEdit *edit, long x_key, int *cmd, mc_wint_t *ch);
  113. #ifndef UTF8
  114. int edit_get_byte (WEdit * edit, long byte_index);
  115. #else /* UTF8 */
  116. mc_wchar_t edit_get_byte (WEdit * edit, long byte_index);
  117. #endif /* UTF8 */
  118. int edit_count_lines (WEdit * edit, long current, int upto);
  119. long edit_move_forward (WEdit * edit, long current, int lines, long upto);
  120. long edit_move_forward3 (WEdit * edit, long current, int cols, long upto);
  121. long edit_move_backward (WEdit * edit, long current, int lines);
  122. void edit_scroll_screen_over_cursor (WEdit * edit);
  123. void edit_render_keypress (WEdit * edit);
  124. void edit_scroll_upward (WEdit * edit, unsigned long i);
  125. void edit_scroll_downward (WEdit * edit, int i);
  126. void edit_scroll_right (WEdit * edit, int i);
  127. void edit_scroll_left (WEdit * edit, int i);
  128. void edit_move_up (WEdit * edit, unsigned long i, int scroll);
  129. void edit_move_down (WEdit * edit, int i, int scroll);
  130. void edit_move_to_prev_col (WEdit *edit, long p);
  131. int edit_get_col (WEdit * edit);
  132. long edit_bol (WEdit * edit, long current);
  133. long edit_eol (WEdit * edit, long current);
  134. void edit_update_curs_row (WEdit * edit);
  135. void edit_update_curs_col (WEdit * edit);
  136. void edit_find_bracket (WEdit * edit);
  137. void edit_block_copy_cmd (WEdit * edit);
  138. void edit_block_move_cmd (WEdit * edit);
  139. int edit_block_delete_cmd (WEdit * edit);
  140. void edit_delete_line (WEdit * edit);
  141. int edit_delete (WEdit * edit);
  142. void edit_insert (WEdit * edit, mc_wchar_t c);
  143. void edit_cursor_move (WEdit * edit, long increment);
  144. void edit_push_action (WEdit * edit, long c, ...);
  145. void edit_push_key_press (WEdit * edit);
  146. void edit_insert_ahead (WEdit * edit, mc_wchar_t c);
  147. long edit_write_stream (WEdit * edit, FILE * f);
  148. char *edit_get_write_filter (const char *writename, const char *filename);
  149. int edit_save_confirm_cmd (WEdit * edit);
  150. int edit_save_as_cmd (WEdit * edit);
  151. WEdit *edit_init (WEdit *edit, int lines, int columns,
  152. const char *filename, long line);
  153. int edit_clean (WEdit * edit);
  154. int edit_ok_to_exit (WEdit *edit);
  155. int edit_renew (WEdit * edit);
  156. int edit_new_cmd (WEdit * edit);
  157. int edit_reload (WEdit *edit, const char *filename);
  158. int edit_load_cmd (WEdit * edit);
  159. void edit_mark_cmd (WEdit * edit, int unmark);
  160. void edit_set_markers (WEdit * edit, long m1, long m2, int c1, int c2);
  161. void edit_push_markers (WEdit * edit);
  162. void edit_replace_cmd (WEdit * edit, int again);
  163. void edit_search_cmd (WEdit * edit, int again);
  164. void edit_complete_word_cmd (WEdit * edit);
  165. int edit_save_block (WEdit * edit, const char *filename, long start, long finish);
  166. int edit_save_block_cmd (WEdit * edit);
  167. int edit_insert_file_cmd (WEdit * edit);
  168. int edit_insert_file (WEdit * edit, const char *filename);
  169. void edit_block_process_cmd (WEdit * edit, const char *shell_cmd, int block);
  170. void freestrs (void);
  171. void edit_refresh_cmd (WEdit * edit);
  172. void edit_date_cmd (WEdit * edit);
  173. void edit_goto_cmd (WEdit * edit);
  174. int eval_marks (WEdit * edit, long *start_mark, long *end_mark);
  175. void edit_status (WEdit * edit);
  176. void edit_execute_key_command (WEdit *edit, int command,
  177. mc_wint_t char_for_insertion);
  178. void edit_update_screen (WEdit * edit);
  179. int edit_print_string (WEdit * e, const char *s);
  180. void edit_move_to_line (WEdit * e, long line);
  181. void edit_move_display (WEdit * e, long line);
  182. void edit_word_wrap (WEdit * edit);
  183. int edit_sort_cmd (WEdit * edit);
  184. int edit_ext_cmd (WEdit * edit);
  185. void edit_help_cmd (WEdit * edit);
  186. int edit_save_macro_cmd (WEdit * edit, struct macro macro[], int n);
  187. int edit_load_macro_cmd (WEdit * edit, struct macro macro[], int *n, int k);
  188. void edit_delete_macro_cmd (WEdit * edit);
  189. int edit_copy_to_X_buf_cmd (WEdit * edit);
  190. int edit_cut_to_X_buf_cmd (WEdit * edit);
  191. void edit_paste_from_X_buf_cmd (WEdit * edit);
  192. void edit_select_codepage_cmd (WEdit *edit);
  193. void edit_insert_literal_cmd (WEdit *edit);
  194. void edit_execute_macro_cmd (WEdit *edit);
  195. void edit_begin_end_macro_cmd(WEdit *edit);
  196. void edit_paste_from_history (WEdit *edit);
  197. void edit_set_filename (WEdit *edit, const char *name);
  198. void edit_load_syntax (WEdit * edit, char ***pnames, const char *type);
  199. void edit_free_syntax_rules (WEdit * edit);
  200. void edit_get_syntax_color (WEdit * edit, long byte_index, int *color);
  201. void book_mark_insert (WEdit * edit, int line, int c);
  202. int book_mark_query_color (WEdit * edit, int line, int c);
  203. int book_mark_query_all (WEdit * edit, int line, int *c);
  204. struct _book_mark *book_mark_find (WEdit * edit, int line);
  205. int book_mark_clear (WEdit * edit, int line, int c);
  206. void book_mark_flush (WEdit * edit, int c);
  207. void book_mark_inc (WEdit * edit, int line);
  208. void book_mark_dec (WEdit * edit, int line);
  209. int line_is_blank (WEdit *edit, long line);
  210. int edit_indent_width (WEdit *edit, long p);
  211. void edit_insert_indent (WEdit *edit, int indent);
  212. void edit_options_dialog (void);
  213. void edit_syntax_dialog (void);
  214. void edit_mail_dialog (WEdit *edit);
  215. void format_paragraph (WEdit *edit, int force);
  216. /* either command or char_for_insertion must be passed as -1 */
  217. void edit_execute_cmd (WEdit *edit, int command, mc_wint_t char_for_insertion);
  218. #define get_sys_error(s) (s)
  219. #define edit_error_dialog(h,s) query_dialog (h, s, D_ERROR, 1, _("&Dismiss"))
  220. #define edit_query_dialog2(h,t,a,b) query_dialog (h, t, D_NORMAL, 2, a, b)
  221. #define edit_query_dialog3(h,t,a,b,c) query_dialog (h, t, D_NORMAL, 3, a, b, c)
  222. #define color_palette(x) win->color[x].pixel
  223. #define NUM_SELECTION_HISTORY 64
  224. #ifndef MAX_PATH_LEN
  225. #ifdef PATH_MAX
  226. #define MAX_PATH_LEN PATH_MAX
  227. #else
  228. #define MAX_PATH_LEN 1024
  229. #endif
  230. #endif
  231. /*
  232. what editor are we going to emulate? one of EDIT_KEY_EMULATION_NORMAL
  233. or EDIT_KEY_EMULATION_EMACS
  234. */
  235. extern int edit_key_emulation;
  236. extern WEdit *wedit;
  237. struct WMenu;
  238. extern struct WMenu *edit_menubar;
  239. extern int option_word_wrap_line_length;
  240. extern int option_typewriter_wrap;
  241. extern int option_auto_para_formatting;
  242. extern int option_tab_spacing;
  243. extern int option_fill_tabs_with_spaces;
  244. extern int option_return_does_auto_indent;
  245. extern int option_backspace_through_tabs;
  246. extern int option_fake_half_tabs;
  247. typedef enum {
  248. EDIT_QUICK_SAVE = 0,
  249. EDIT_SAFE_SAVE,
  250. EDIT_DO_BACKUP
  251. } edit_save_mode_t;
  252. extern int option_save_mode;
  253. extern int option_save_position;
  254. extern int option_max_undo;
  255. extern int option_syntax_highlighting;
  256. extern int option_auto_syntax;
  257. extern char *option_syntax_type;
  258. extern int editor_option_check_nl_at_eof;
  259. extern int option_edit_right_extreme;
  260. extern int option_edit_left_extreme;
  261. extern int option_edit_top_extreme;
  262. extern int option_edit_bottom_extreme;
  263. extern const char *option_whole_chars_search;
  264. extern char *option_backup_ext;
  265. extern int edit_confirm_save;
  266. extern int column_highlighting;
  267. /* File names */
  268. #define EDIT_DIR ".mc" PATH_SEP_STR "cedit"
  269. #define SYNTAX_FILE EDIT_DIR PATH_SEP_STR "Syntax"
  270. #define CLIP_FILE EDIT_DIR PATH_SEP_STR "cooledit.clip"
  271. #define MACRO_FILE EDIT_DIR PATH_SEP_STR "cooledit.macros"
  272. #define BLOCK_FILE EDIT_DIR PATH_SEP_STR "cooledit.block"
  273. #define TEMP_FILE EDIT_DIR PATH_SEP_STR "cooledit.temp"
  274. #endif