0
|
1 /* Buffer insertion/deletion and gap motion for XEmacs.
|
|
2 Copyright (C) 1985-1994 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: Not in FSF. */
|
|
22
|
|
23 /* Mostly rewritten by Ben Wing. */
|
|
24
|
398
|
25 #ifndef INCLUDED_insdel_h_
|
|
26 #define INCLUDED_insdel_h_
|
0
|
27
|
|
28 /************************************************************************/
|
|
29 /* changing a buffer's text */
|
|
30 /************************************************************************/
|
|
31
|
272
|
32 int begin_multiple_change (struct buffer *buf, Bufpos start, Bufpos end);
|
|
33 void end_multiple_change (struct buffer *buf, int count);
|
0
|
34
|
|
35 /* flags for functions below */
|
|
36
|
|
37 #define INSDEL_BEFORE_MARKERS 1
|
|
38 #define INSDEL_NO_LOCKING 2
|
|
39
|
|
40 Charcount buffer_insert_string_1 (struct buffer *buf, Bufpos pos,
|
398
|
41 const Bufbyte *nonreloc, Lisp_Object reloc,
|
0
|
42 Bytecount offset, Bytecount length,
|
|
43 int flags);
|
|
44 Charcount buffer_insert_raw_string_1 (struct buffer *buf, Bufpos pos,
|
398
|
45 const Bufbyte *nonreloc,
|
0
|
46 Bytecount length, int flags);
|
|
47 Charcount buffer_insert_lisp_string_1 (struct buffer *buf, Bufpos pos,
|
|
48 Lisp_Object str, int flags);
|
|
49 Charcount buffer_insert_c_string_1 (struct buffer *buf, Bufpos pos,
|
398
|
50 const char *s, int flags);
|
0
|
51 Charcount buffer_insert_emacs_char_1 (struct buffer *buf, Bufpos pos,
|
|
52 Emchar ch, int flags);
|
|
53 Charcount buffer_insert_c_char_1 (struct buffer *buf, Bufpos pos, char c,
|
|
54 int flags);
|
|
55 Charcount buffer_insert_from_buffer_1 (struct buffer *buf, Bufpos pos,
|
|
56 struct buffer *buf2, Bufpos pos2,
|
|
57 Charcount length, int flags);
|
|
58
|
|
59 /* Macros for insertion functions that insert at point after markers.
|
|
60 All of these can GC. */
|
|
61
|
|
62 #define buffer_insert_string(buf, nonreloc, reloc, offset, length) \
|
|
63 buffer_insert_string_1 (buf, -1, nonreloc, reloc, offset, length, 0)
|
|
64 #define buffer_insert_raw_string(buf, string, length) \
|
|
65 buffer_insert_raw_string_1 (buf, -1, string, length, 0)
|
|
66 #define buffer_insert_c_string(buf, s) \
|
|
67 buffer_insert_c_string_1 (buf, -1, s, 0)
|
|
68 #define buffer_insert_lisp_string(buf, str) \
|
|
69 buffer_insert_lisp_string_1 (buf, -1, str, 0)
|
|
70 #define buffer_insert_c_char(buf, c) \
|
|
71 buffer_insert_c_char_1 (buf, -1, c, 0)
|
|
72 #define buffer_insert_emacs_char(buf, ch) \
|
|
73 buffer_insert_emacs_char_1 (buf, -1, ch, 0)
|
|
74 #define buffer_insert_from_buffer(buf, b, index, length) \
|
|
75 buffer_insert_from_buffer_1 (buf, -1, b, index, length, 0)
|
|
76
|
272
|
77 void buffer_delete_range (struct buffer *buf, Bufpos from, Bufpos to,
|
|
78 int flags);
|
|
79 void buffer_replace_char (struct buffer *b, Bufpos pos, Emchar ch,
|
|
80 int not_real_change, int force_lock_check);
|
0
|
81
|
|
82
|
|
83 /************************************************************************/
|
|
84 /* tracking buffer changes */
|
|
85 /************************************************************************/
|
|
86
|
|
87 /* Split into two parts. One part goes with a buffer's text (possibly
|
|
88 shared), the other with the buffer itself. */
|
|
89
|
|
90 struct buffer_text_change_data
|
|
91 {
|
|
92 /* multiple change stuff */
|
|
93 int in_multiple_change;
|
|
94 Bufpos mc_begin, mc_orig_end, mc_new_end;
|
|
95 int mc_begin_signaled;
|
|
96 };
|
|
97
|
|
98 struct each_buffer_change_data
|
|
99 {
|
|
100 Charcount begin_unchanged, end_unchanged;
|
|
101 /* redisplay needs to know if a newline was deleted so its
|
|
102 incremental-redisplay algorithm will fail */
|
|
103 int newline_was_deleted;
|
|
104 Charcount begin_extent_unchanged, end_extent_unchanged;
|
|
105 };
|
|
106
|
|
107 /* Number of characters at the beginning and end of the buffer that
|
|
108 have not changed since the last call to buffer_reset_changes().
|
|
109 If no changes have occurred since then, both values will be -1.
|
|
110
|
|
111 "Changed" means that the text has changed. */
|
|
112
|
|
113 #define BUF_BEGIN_UNCHANGED(buf) ((buf)->changes->begin_unchanged)
|
|
114 #define BUF_END_UNCHANGED(buf) ((buf)->changes->end_unchanged)
|
|
115
|
|
116 /* Number of characters at the beginning and end of the buffer that
|
|
117 have not had a covering extent change since the last call to
|
|
118 buffer_reset_changes (). If no changes have occurred since then,
|
|
119 both values will be -1.
|
|
120
|
|
121 "Changed" means that the extents covering the text have changed. */
|
|
122
|
|
123 #define BUF_EXTENT_BEGIN_UNCHANGED(buf) \
|
|
124 ((buf)->changes->begin_extent_unchanged)
|
|
125 #define BUF_EXTENT_END_UNCHANGED(buf) \
|
|
126 ((buf)->changes->end_extent_unchanged)
|
|
127
|
|
128 #define BUF_NEWLINE_WAS_DELETED(buf) \
|
|
129 ((buf)->changes->newline_was_deleted)
|
|
130
|
272
|
131 void buffer_extent_signal_changed_region (struct buffer *buf,
|
|
132 Bufpos start,
|
|
133 Bufpos end);
|
|
134 void buffer_reset_changes (struct buffer *buf);
|
0
|
135
|
|
136
|
|
137
|
|
138 /************************************************************************/
|
|
139 /* other related functions */
|
|
140 /************************************************************************/
|
|
141
|
272
|
142 Memind do_marker_adjustment (Memind mpos, Memind from,
|
398
|
143 Memind to, Bytecount amount);
|
0
|
144
|
398
|
145 void fixup_internal_substring (const Bufbyte *nonreloc,
|
272
|
146 Lisp_Object reloc,
|
398
|
147 Bytecount offset, Bytecount *len);
|
0
|
148
|
|
149 /* In font-lock.c */
|
272
|
150 void font_lock_maybe_update_syntactic_caches (struct buffer *buf,
|
|
151 Bufpos start,
|
|
152 Bufpos orig_end,
|
|
153 Bufpos new_end);
|
|
154 void font_lock_buffer_was_killed (struct buffer *buf);
|
0
|
155
|
272
|
156 void barf_if_buffer_read_only (struct buffer *buf, Bufpos from,
|
|
157 Bufpos to);
|
0
|
158
|
373
|
159 void init_buffer_text (struct buffer *b);
|
|
160 void uninit_buffer_text (struct buffer *b);
|
0
|
161
|
398
|
162 #endif /* INCLUDED_insdel_h_ */
|