[7d4fbcd] | 1 | #include "owl.h" |
---|
| 2 | #include <stdlib.h> |
---|
| 3 | #include <unistd.h> |
---|
| 4 | #include <string.h> |
---|
[10b866d] | 5 | #include <ctype.h> |
---|
[7d4fbcd] | 6 | |
---|
[ebf0128] | 7 | #define VALID_EXCURSION (0x9a2b4729) |
---|
| 8 | |
---|
[a88f35a] | 9 | typedef struct _owl_editwin_excursion { /*noproto*/ |
---|
[ebf0128] | 10 | int valid; |
---|
| 11 | int index; |
---|
[16cfd12a] | 12 | int mark; |
---|
[ebf0128] | 13 | int goal_column; |
---|
| 14 | int lock; |
---|
[a88f35a] | 15 | struct _owl_editwin_excursion *next; |
---|
[ebf0128] | 16 | } oe_excursion; |
---|
| 17 | |
---|
[a556caa] | 18 | struct _owl_editwin { /*noproto*/ |
---|
| 19 | char *buff; |
---|
| 20 | owl_history *hist; |
---|
| 21 | int bufflen; |
---|
| 22 | int allocated; |
---|
| 23 | int index; |
---|
[16cfd12a] | 24 | int mark; |
---|
[a60edf2] | 25 | char *killbuf; |
---|
[a556caa] | 26 | int goal_column; |
---|
| 27 | int topindex; |
---|
[ebf0128] | 28 | int cursorx; |
---|
[a556caa] | 29 | int winlines, wincols, fillcol, wrapcol; |
---|
| 30 | WINDOW *curswin; |
---|
| 31 | int style; |
---|
| 32 | int lock; |
---|
| 33 | int dotsend; |
---|
| 34 | int echochar; |
---|
[ebf0128] | 35 | oe_excursion *excursions; |
---|
[a556caa] | 36 | |
---|
| 37 | char *command; |
---|
| 38 | void (*callback)(struct _owl_editwin*); |
---|
| 39 | void *cbdata; |
---|
| 40 | }; |
---|
| 41 | |
---|
[e20d8179] | 42 | static void oe_reframe(owl_editwin *e); |
---|
[bab52da] | 43 | static void oe_save_excursion(owl_editwin *e, oe_excursion *x); |
---|
[ebf0128] | 44 | static void oe_release_excursion(owl_editwin *e, oe_excursion *x); |
---|
[bab52da] | 45 | static void oe_restore_excursion(owl_editwin *e, oe_excursion *x); |
---|
[a60edf2] | 46 | static void oe_restore_mark_only(owl_editwin *e, oe_excursion *x); |
---|
[e19eb97] | 47 | static int oe_count_glyphs(const char *s); |
---|
[ebf0128] | 48 | static int oe_char_width(gunichar c, int column); |
---|
[16cfd12a] | 49 | static int oe_region_width(owl_editwin *e, int start, int end, int width); |
---|
[bab52da] | 50 | static int oe_find_display_line(owl_editwin *e, int *x, int index); |
---|
[ebf0128] | 51 | static void oe_insert_char(owl_editwin *e, gunichar c); |
---|
[bab52da] | 52 | static int owl_editwin_limit_maxcols(int v, int maxv); |
---|
| 53 | static int owl_editwin_check_dotsend(owl_editwin *e); |
---|
[e19eb97] | 54 | static int owl_editwin_is_char_in(owl_editwin *e, const char *set); |
---|
[bab52da] | 55 | static gunichar owl_editwin_get_char_at_point(owl_editwin *e); |
---|
[e19eb97] | 56 | static int owl_editwin_replace_internal(owl_editwin *e, int replace, const char *s); |
---|
| 57 | static const char *oe_copy_buf(owl_editwin *e, const char *buf, int len); |
---|
[a60edf2] | 58 | static int oe_copy_region(owl_editwin *e); |
---|
[77f605d] | 59 | static char *oe_chunk(owl_editwin *e, int start, int end); |
---|
[bab52da] | 60 | |
---|
[5b5f3e6] | 61 | #define INCR 4096 |
---|
[7d4fbcd] | 62 | |
---|
[a556caa] | 63 | #define WHITESPACE " \n\t" |
---|
| 64 | |
---|
[bab52da] | 65 | owl_editwin *owl_editwin_allocate(void) |
---|
| 66 | { |
---|
[8321cb7] | 67 | owl_editwin *e; |
---|
| 68 | e = owl_malloc(sizeof(owl_editwin)); |
---|
| 69 | memset(e, 0, sizeof(*e)); |
---|
| 70 | return e; |
---|
[a556caa] | 71 | } |
---|
| 72 | |
---|
[6211c76] | 73 | void owl_editwin_free(owl_editwin *e) |
---|
| 74 | { |
---|
| 75 | owl_free(e->buff); |
---|
| 76 | owl_free(e->killbuf); |
---|
| 77 | owl_free(e->command); |
---|
| 78 | /* just in case someone forgot to clean up */ |
---|
| 79 | while (e->excursions) { |
---|
| 80 | oe_release_excursion(e, e->excursions); |
---|
| 81 | } |
---|
| 82 | |
---|
| 83 | owl_free(e); |
---|
| 84 | } |
---|
| 85 | |
---|
[e19eb97] | 86 | static int oe_count_glyphs(const char *s) |
---|
[5b5f3e6] | 87 | { |
---|
| 88 | int count = 0; |
---|
[e19eb97] | 89 | const char *p; |
---|
[5b5f3e6] | 90 | |
---|
| 91 | for(p = s; *p != 0; p = g_utf8_find_next_char(p, NULL)) |
---|
| 92 | if (!g_unichar_ismark(g_utf8_get_char(p))) |
---|
| 93 | count++; |
---|
| 94 | |
---|
| 95 | return count; |
---|
| 96 | } |
---|
| 97 | |
---|
[bab52da] | 98 | static inline void oe_set_index(owl_editwin *e, int index) |
---|
| 99 | { |
---|
[ebf0128] | 100 | if (index != e->index) { |
---|
| 101 | e->goal_column = -1; |
---|
| 102 | e->cursorx = -1; |
---|
| 103 | } |
---|
[521bc84] | 104 | e->index = index; |
---|
| 105 | } |
---|
| 106 | |
---|
[7f0c26f] | 107 | static inline void oe_set_mark(owl_editwin *e, int mark) |
---|
| 108 | { |
---|
| 109 | e->mark = mark; |
---|
| 110 | } |
---|
| 111 | |
---|
| 112 | void owl_editwin_set_mark(owl_editwin *e) |
---|
| 113 | { |
---|
| 114 | oe_set_mark(e, e->index); |
---|
| 115 | /* owl_function_makemsg("Mark set."); */ |
---|
| 116 | } |
---|
| 117 | |
---|
[cf83b7a] | 118 | /* initialize the editwin e. |
---|
| 119 | * 'win' is an already initialzed curses window that will be used by editwin |
---|
| 120 | */ |
---|
[c9334b1] | 121 | void owl_editwin_init(owl_editwin *e, WINDOW *win, int winlines, int wincols, int style, owl_history *hist) |
---|
| 122 | { |
---|
[e20d8179] | 123 | e->buff=owl_malloc(INCR); |
---|
[7d4fbcd] | 124 | e->buff[0]='\0'; |
---|
| 125 | e->bufflen=0; |
---|
[10b866d] | 126 | e->hist=hist; |
---|
[7d4fbcd] | 127 | e->allocated=INCR; |
---|
[521bc84] | 128 | oe_set_index(e, 0); |
---|
[7f0c26f] | 129 | oe_set_mark(e, -1); |
---|
[a60edf2] | 130 | if (e->killbuf != NULL) |
---|
[27f6487] | 131 | owl_free(e->killbuf); |
---|
[a60edf2] | 132 | e->killbuf = NULL; |
---|
[a556caa] | 133 | e->goal_column = -1; |
---|
[ebf0128] | 134 | e->cursorx = -1; |
---|
| 135 | e->topindex = 0; |
---|
| 136 | e->excursions = NULL; |
---|
| 137 | owl_editwin_set_curswin(e, win, winlines, wincols); |
---|
[7d4fbcd] | 138 | e->style=style; |
---|
| 139 | if ((style!=OWL_EDITWIN_STYLE_MULTILINE) && |
---|
| 140 | (style!=OWL_EDITWIN_STYLE_ONELINE)) { |
---|
| 141 | e->style=OWL_EDITWIN_STYLE_MULTILINE; |
---|
| 142 | } |
---|
| 143 | e->lock=0; |
---|
| 144 | e->dotsend=0; |
---|
[c9334b1] | 145 | e->echochar='\0'; |
---|
[e74c01c] | 146 | |
---|
[af1920fd] | 147 | /* We get initialized multiple times, but we need to hold on to |
---|
| 148 | the callbacks, so we can't NULL them here. */ |
---|
[e74c01c] | 149 | /* |
---|
| 150 | e->command = NULL; |
---|
| 151 | e->callback = NULL; |
---|
| 152 | e->cbdata = NULL; |
---|
| 153 | */ |
---|
[7d4fbcd] | 154 | if (win) werase(win); |
---|
| 155 | } |
---|
| 156 | |
---|
[c9334b1] | 157 | void owl_editwin_set_curswin(owl_editwin *e, WINDOW *w, int winlines, int wincols) |
---|
| 158 | { |
---|
[7d4fbcd] | 159 | e->curswin=w; |
---|
| 160 | e->winlines=winlines; |
---|
| 161 | e->wincols=wincols; |
---|
[9a6cc40] | 162 | e->fillcol=owl_editwin_limit_maxcols(wincols-7, owl_global_get_edit_maxfillcols(&g)); |
---|
| 163 | e->wrapcol=owl_editwin_limit_maxcols(wincols-7, owl_global_get_edit_maxwrapcols(&g)); |
---|
[7d4fbcd] | 164 | } |
---|
| 165 | |
---|
[c9334b1] | 166 | /* echo the character 'ch' for each normal character keystroke, |
---|
| 167 | * excepting locktext. This is useful for entering passwords etc. If |
---|
| 168 | * ch=='\0' characters are echo'd normally |
---|
| 169 | */ |
---|
| 170 | void owl_editwin_set_echochar(owl_editwin *e, int ch) |
---|
| 171 | { |
---|
| 172 | e->echochar=ch; |
---|
| 173 | } |
---|
| 174 | |
---|
| 175 | WINDOW *owl_editwin_get_curswin(owl_editwin *e) |
---|
| 176 | { |
---|
[060b3b4] | 177 | return(e->curswin); |
---|
[7d4fbcd] | 178 | } |
---|
| 179 | |
---|
[c9334b1] | 180 | owl_history *owl_editwin_get_history(owl_editwin *e) |
---|
| 181 | { |
---|
[060b3b4] | 182 | return(e->hist); |
---|
[10b866d] | 183 | } |
---|
| 184 | |
---|
[c9334b1] | 185 | void owl_editwin_set_dotsend(owl_editwin *e) |
---|
| 186 | { |
---|
[7d4fbcd] | 187 | e->dotsend=1; |
---|
| 188 | } |
---|
| 189 | |
---|
[e19eb97] | 190 | void owl_editwin_set_command(owl_editwin *e, const char *command) |
---|
[bab52da] | 191 | { |
---|
[e74c01c] | 192 | if(e->command) owl_free(e->command); |
---|
| 193 | e->command = owl_strdup(command); |
---|
| 194 | } |
---|
| 195 | |
---|
[e19eb97] | 196 | const char *owl_editwin_get_command(owl_editwin *e) |
---|
[bab52da] | 197 | { |
---|
[e74c01c] | 198 | if(e->command) return e->command; |
---|
| 199 | return ""; |
---|
| 200 | } |
---|
| 201 | |
---|
[bab52da] | 202 | void owl_editwin_set_callback(owl_editwin *e, void (*cb)(owl_editwin*)) |
---|
| 203 | { |
---|
[e74c01c] | 204 | e->callback = cb; |
---|
| 205 | } |
---|
| 206 | |
---|
[bab52da] | 207 | void (*owl_editwin_get_callback(owl_editwin *e))(owl_editwin*) |
---|
| 208 | { |
---|
[e74c01c] | 209 | return e->callback; |
---|
| 210 | } |
---|
| 211 | |
---|
[bab52da] | 212 | void owl_editwin_set_cbdata(owl_editwin *e, void *data) |
---|
| 213 | { |
---|
[e74c01c] | 214 | e->cbdata = data; |
---|
| 215 | } |
---|
| 216 | |
---|
[a556caa] | 217 | void *owl_editwin_get_cbdata(owl_editwin *e) { |
---|
[e74c01c] | 218 | return e->cbdata; |
---|
| 219 | } |
---|
| 220 | |
---|
| 221 | void owl_editwin_do_callback(owl_editwin *e) { |
---|
| 222 | void (*cb)(owl_editwin*); |
---|
| 223 | cb=owl_editwin_get_callback(e); |
---|
| 224 | if(!cb) { |
---|
| 225 | owl_function_error("Internal error: No editwin callback!"); |
---|
| 226 | } else { |
---|
[af1920fd] | 227 | /* owl_function_error("text: |%s|", owl_editwin_get_text(e)); */ |
---|
[e74c01c] | 228 | cb(e); |
---|
| 229 | } |
---|
| 230 | } |
---|
| 231 | |
---|
[bab52da] | 232 | static int owl_editwin_limit_maxcols(int v, int maxv) |
---|
[c9334b1] | 233 | { |
---|
[ebf0128] | 234 | /* maxv > 5 ? MAX(v, vax) : v */ |
---|
[d36f2cb] | 235 | if (maxv > 5 && v > maxv) { |
---|
[060b3b4] | 236 | return(maxv); |
---|
[d36f2cb] | 237 | } else { |
---|
[060b3b4] | 238 | return(v); |
---|
[d36f2cb] | 239 | } |
---|
| 240 | } |
---|
| 241 | |
---|
[c9334b1] | 242 | /* set text to be 'locked in' at the beginning of the buffer, any |
---|
| 243 | * previous text (including locked text) will be overwritten |
---|
| 244 | */ |
---|
[e19eb97] | 245 | void owl_editwin_set_locktext(owl_editwin *e, const char *text) |
---|
[c9334b1] | 246 | { |
---|
[521bc84] | 247 | oe_set_index(e, 0); |
---|
[5b5f3e6] | 248 | e->lock = 0; |
---|
| 249 | owl_editwin_replace(e, e->bufflen, text); |
---|
| 250 | e->buff[e->bufflen] = 0; |
---|
| 251 | e->lock=e->bufflen; |
---|
[521bc84] | 252 | oe_set_index(e, e->lock); |
---|
[7d4fbcd] | 253 | owl_editwin_redisplay(e, 0); |
---|
| 254 | } |
---|
| 255 | |
---|
[c9334b1] | 256 | int owl_editwin_get_style(owl_editwin *e) |
---|
| 257 | { |
---|
[7d4fbcd] | 258 | return(e->style); |
---|
| 259 | } |
---|
| 260 | |
---|
[c9334b1] | 261 | void owl_editwin_new_style(owl_editwin *e, int newstyle, owl_history *h) |
---|
| 262 | { |
---|
[98f1e69] | 263 | e->hist = h; |
---|
| 264 | |
---|
[7d4fbcd] | 265 | if (e->style==newstyle) return; |
---|
| 266 | |
---|
| 267 | if (newstyle==OWL_EDITWIN_STYLE_MULTILINE) { |
---|
| 268 | e->style=newstyle; |
---|
| 269 | } else if (newstyle==OWL_EDITWIN_STYLE_ONELINE) { |
---|
| 270 | e->style=newstyle; |
---|
| 271 | |
---|
| 272 | /* nuke everything after the first line */ |
---|
[5b5f3e6] | 273 | owl_editwin_move_to_top(e); |
---|
| 274 | owl_editwin_move_to_end_of_line(e); |
---|
| 275 | owl_editwin_replace(e, oe_count_glyphs(e->buff + e->index), ""); |
---|
[7d4fbcd] | 276 | } |
---|
| 277 | } |
---|
| 278 | |
---|
[c9334b1] | 279 | /* completly reinitialize the buffer */ |
---|
| 280 | void owl_editwin_fullclear(owl_editwin *e) |
---|
| 281 | { |
---|
[7d4fbcd] | 282 | owl_free(e->buff); |
---|
[10b866d] | 283 | owl_editwin_init(e, e->curswin, e->winlines, e->wincols, e->style, e->hist); |
---|
[7d4fbcd] | 284 | } |
---|
| 285 | |
---|
[c9334b1] | 286 | /* clear all text except for locktext and put the cursor at the |
---|
| 287 | * beginning |
---|
| 288 | */ |
---|
| 289 | void owl_editwin_clear(owl_editwin *e) |
---|
| 290 | { |
---|
| 291 | |
---|
[6073462] | 292 | int lock = e->lock; |
---|
[10b866d] | 293 | int dotsend=e->dotsend; |
---|
[7d4fbcd] | 294 | char *locktext=NULL; |
---|
[cc6f009] | 295 | char echochar=e->echochar; |
---|
[10b866d] | 296 | |
---|
[6073462] | 297 | if (lock > 0) { |
---|
[5b5f3e6] | 298 | locktext = owl_malloc(lock+1); |
---|
| 299 | strncpy(locktext, e->buff, lock); |
---|
| 300 | locktext[lock] = 0; |
---|
[7d4fbcd] | 301 | } |
---|
| 302 | |
---|
| 303 | owl_free(e->buff); |
---|
[10b866d] | 304 | owl_editwin_init(e, e->curswin, e->winlines, e->wincols, e->style, e->hist); |
---|
[7d4fbcd] | 305 | |
---|
| 306 | if (lock > 0) { |
---|
| 307 | owl_editwin_set_locktext(e, locktext); |
---|
| 308 | } |
---|
[10b866d] | 309 | if (dotsend) { |
---|
| 310 | owl_editwin_set_dotsend(e); |
---|
| 311 | } |
---|
[cc6f009] | 312 | if (echochar) { |
---|
| 313 | owl_editwin_set_echochar(e, echochar); |
---|
| 314 | } |
---|
[7d4fbcd] | 315 | |
---|
[5b5f3e6] | 316 | if (locktext) |
---|
| 317 | owl_free(locktext); |
---|
[6073462] | 318 | |
---|
[521bc84] | 319 | oe_set_index(e, lock); |
---|
[7d4fbcd] | 320 | } |
---|
| 321 | |
---|
[c9334b1] | 322 | void owl_editwin_recenter(owl_editwin *e) |
---|
| 323 | { |
---|
[a556caa] | 324 | e->topindex = -1; |
---|
| 325 | } |
---|
[e20d8179] | 326 | |
---|
[a0fbdee] | 327 | static void oe_save_excursion(owl_editwin *e, oe_excursion *x) |
---|
| 328 | { |
---|
| 329 | x->index = e->index; |
---|
[7f0c26f] | 330 | x->mark = e->mark; |
---|
[a0fbdee] | 331 | x->goal_column = e->goal_column; |
---|
| 332 | x->lock = e->lock; |
---|
[ebf0128] | 333 | |
---|
| 334 | x->valid = VALID_EXCURSION; |
---|
| 335 | x->next = e->excursions; |
---|
| 336 | e->excursions = x; |
---|
| 337 | } |
---|
| 338 | |
---|
| 339 | static void oe_release_excursion(owl_editwin *e, oe_excursion *x) |
---|
| 340 | { |
---|
[a85d225] | 341 | oe_excursion **px; |
---|
[ebf0128] | 342 | |
---|
| 343 | x->valid = 0; |
---|
[a85d225] | 344 | for (px = &e->excursions; *px != NULL; px = &(*px)->next) |
---|
| 345 | if (*px == x) { |
---|
| 346 | *px = x->next; |
---|
| 347 | return; |
---|
| 348 | } |
---|
| 349 | abort(); |
---|
[a0fbdee] | 350 | } |
---|
| 351 | |
---|
| 352 | static void oe_restore_excursion(owl_editwin *e, oe_excursion *x) |
---|
| 353 | { |
---|
[ebf0128] | 354 | if (x->valid == VALID_EXCURSION) { |
---|
| 355 | oe_set_index(e, x->index); |
---|
| 356 | e->goal_column = x->goal_column; |
---|
[7f0c26f] | 357 | e->mark = x->mark; |
---|
[ebf0128] | 358 | e->lock = x->lock; |
---|
| 359 | |
---|
| 360 | oe_release_excursion(e, x); |
---|
| 361 | } |
---|
[a0fbdee] | 362 | } |
---|
| 363 | |
---|
[a60edf2] | 364 | static void oe_restore_mark_only(owl_editwin *e, oe_excursion *x) |
---|
| 365 | { |
---|
| 366 | if (x->valid == VALID_EXCURSION) { |
---|
| 367 | e->mark = x->mark; |
---|
| 368 | |
---|
| 369 | oe_release_excursion(e, x); |
---|
| 370 | } |
---|
| 371 | } |
---|
| 372 | |
---|
[a88f35a] | 373 | /* External interface to oe_save_excursion */ |
---|
| 374 | owl_editwin_excursion *owl_editwin_begin_excursion(owl_editwin *e) |
---|
| 375 | { |
---|
| 376 | owl_editwin_excursion *x = owl_malloc(sizeof *x); |
---|
| 377 | oe_save_excursion(e, x); |
---|
| 378 | return x; |
---|
| 379 | } |
---|
| 380 | |
---|
| 381 | void owl_editwin_end_excursion(owl_editwin *e, owl_editwin_excursion *x) |
---|
| 382 | { |
---|
| 383 | oe_restore_excursion(e, x); |
---|
| 384 | owl_free(x); |
---|
| 385 | } |
---|
| 386 | |
---|
[e19eb97] | 387 | static inline const char *oe_next_point(owl_editwin *e, const char *p) |
---|
[e20d8179] | 388 | { |
---|
[e19eb97] | 389 | const char *boundary = e->buff + e->bufflen + 1; |
---|
| 390 | const char *q; |
---|
[e20d8179] | 391 | |
---|
| 392 | q = g_utf8_find_next_char(p, boundary); |
---|
| 393 | while (q && g_unichar_ismark(g_utf8_get_char(q))) |
---|
| 394 | q = g_utf8_find_next_char(q, boundary); |
---|
| 395 | |
---|
| 396 | if (q == p) |
---|
| 397 | return NULL; |
---|
| 398 | return q; |
---|
| 399 | } |
---|
| 400 | |
---|
[e19eb97] | 401 | static inline const char *oe_prev_point(owl_editwin *e, const char *p) |
---|
[e20d8179] | 402 | { |
---|
[e19eb97] | 403 | const char *boundary = e->buff + e->lock; |
---|
[e20d8179] | 404 | |
---|
| 405 | p = g_utf8_find_prev_char(boundary, p); |
---|
| 406 | while (p && g_unichar_ismark(g_utf8_get_char(p))) |
---|
| 407 | p = g_utf8_find_prev_char(boundary, p); |
---|
| 408 | |
---|
| 409 | return p; |
---|
| 410 | } |
---|
| 411 | |
---|
[ebf0128] | 412 | static int oe_char_width(gunichar c, int column) |
---|
| 413 | { |
---|
| 414 | int cw; |
---|
| 415 | |
---|
| 416 | if (c == 9) /* TAB */ |
---|
| 417 | return TABSIZE - column % TABSIZE; |
---|
| 418 | |
---|
| 419 | cw = mk_wcwidth(c); |
---|
| 420 | |
---|
| 421 | if (cw < 0) /* control characters */ |
---|
| 422 | cw = 0; |
---|
| 423 | |
---|
| 424 | return cw; |
---|
| 425 | } |
---|
| 426 | |
---|
[19f765d] | 427 | static int oe_find_display_line(owl_editwin *e, int *x, int index) |
---|
| 428 | { |
---|
| 429 | int width = 0, cw; |
---|
[ebf0128] | 430 | gunichar c; |
---|
[e19eb97] | 431 | const char *p; |
---|
[19f765d] | 432 | |
---|
[77d4402] | 433 | while(1) { |
---|
| 434 | /* note the position of the dot */ |
---|
[2021bea] | 435 | if (x != NULL && index == e->index && width < e->wincols) |
---|
[19f765d] | 436 | *x = width; |
---|
[77d4402] | 437 | |
---|
[19f765d] | 438 | /* get the current character */ |
---|
| 439 | c = g_utf8_get_char(e->buff + index); |
---|
| 440 | |
---|
| 441 | /* figure out how wide it is */ |
---|
[ebf0128] | 442 | cw = oe_char_width(c, width); |
---|
[19f765d] | 443 | |
---|
[77d4402] | 444 | if (width + cw > e->wincols) { |
---|
| 445 | if (x != NULL && *x == width) |
---|
| 446 | *x = -1; |
---|
[19f765d] | 447 | break; |
---|
[77d4402] | 448 | } |
---|
[19f765d] | 449 | width += cw; |
---|
| 450 | |
---|
| 451 | if (c == '\n') { |
---|
[77d4402] | 452 | if (width < e->wincols) |
---|
| 453 | ++index; /* skip the newline */ |
---|
[19f765d] | 454 | break; |
---|
| 455 | } |
---|
| 456 | |
---|
| 457 | /* find the next character */ |
---|
| 458 | p = oe_next_point(e, e->buff + index); |
---|
| 459 | if (p == NULL) { /* we ran off the end */ |
---|
| 460 | if (x != NULL && e->index > index) |
---|
| 461 | *x = width + 1; |
---|
| 462 | break; |
---|
| 463 | } |
---|
| 464 | index = p - e->buff; |
---|
[cedc95c] | 465 | |
---|
[19f765d] | 466 | } |
---|
| 467 | return index; |
---|
| 468 | } |
---|
| 469 | |
---|
[e20d8179] | 470 | static void oe_reframe(owl_editwin *e) { |
---|
[cedc95c] | 471 | oe_excursion x; |
---|
[460fbe8] | 472 | int goal = 1 + e->winlines / 2; |
---|
[cedc95c] | 473 | int index; |
---|
| 474 | int count = 0; |
---|
| 475 | int n, i; |
---|
| 476 | int last; |
---|
| 477 | |
---|
| 478 | oe_save_excursion(e, &x); |
---|
| 479 | /* step back line-by-line through the buffer until we have >= goal lines of |
---|
| 480 | display text */ |
---|
| 481 | e->lock = 0; /* we can (must) tread on the locktext */ |
---|
| 482 | |
---|
| 483 | last = -1; |
---|
| 484 | while (count < goal) { |
---|
| 485 | index = e->index; |
---|
| 486 | owl_editwin_move_to_beginning_of_line(e); |
---|
| 487 | if (last == e->index) |
---|
| 488 | break; |
---|
| 489 | last = e->index; |
---|
| 490 | for (n = 0, i = e->index; i < index; n++) |
---|
| 491 | i = oe_find_display_line(e, NULL, i); |
---|
| 492 | count += n == 0 ? 1 : n; |
---|
| 493 | if (count < goal) |
---|
| 494 | owl_editwin_point_move(e, -1); |
---|
| 495 | } |
---|
| 496 | |
---|
| 497 | e->topindex = e->index; |
---|
[521bc84] | 498 | /* if we overshot, backtrack */ |
---|
| 499 | for (n = 0; n < (count - goal); n++) |
---|
| 500 | e->topindex = oe_find_display_line(e, NULL, e->topindex); |
---|
[cedc95c] | 501 | |
---|
| 502 | oe_restore_excursion(e, &x); |
---|
[7d4fbcd] | 503 | } |
---|
| 504 | |
---|
[3e36085] | 505 | static void oe_addnec(owl_editwin *e, int count) |
---|
| 506 | { |
---|
| 507 | int i; |
---|
| 508 | |
---|
| 509 | for (i = 0; i < count; i++) |
---|
| 510 | waddch(e->curswin, e->echochar); |
---|
| 511 | } |
---|
| 512 | |
---|
| 513 | static void oe_mvaddnec(owl_editwin *e, int y, int x, int count) |
---|
| 514 | { |
---|
| 515 | wmove(e->curswin, y, x); |
---|
| 516 | oe_addnec(e, count); |
---|
| 517 | } |
---|
| 518 | |
---|
[c9334b1] | 519 | /* regenerate the text on the curses window */ |
---|
| 520 | /* if update == 1 then do a doupdate(), otherwise do not */ |
---|
| 521 | void owl_editwin_redisplay(owl_editwin *e, int update) |
---|
| 522 | { |
---|
[19f765d] | 523 | int x = -1, y = -1, t; |
---|
[77d4402] | 524 | int line, index, lineindex, times = 0; |
---|
[7d4fbcd] | 525 | |
---|
[bd1a1ae] | 526 | do { |
---|
[cedc95c] | 527 | werase(e->curswin); |
---|
[36a16fc] | 528 | |
---|
| 529 | if (e->topindex == -1 || e->index < e->topindex) |
---|
[e20d8179] | 530 | oe_reframe(e); |
---|
| 531 | |
---|
[bd1a1ae] | 532 | line = 0; |
---|
| 533 | index = e->topindex; |
---|
| 534 | while(line < e->winlines) { |
---|
| 535 | lineindex = index; |
---|
[19f765d] | 536 | t = -1; |
---|
| 537 | index = oe_find_display_line(e, &t, lineindex); |
---|
| 538 | if (x == -1 && t != -1) |
---|
| 539 | x = t, y = line; |
---|
[3e36085] | 540 | if (index - lineindex) { |
---|
| 541 | if (!e->echochar) |
---|
| 542 | mvwaddnstr(e->curswin, line, 0, |
---|
| 543 | e->buff + lineindex, |
---|
| 544 | index - lineindex); |
---|
| 545 | else { |
---|
| 546 | if(lineindex < e->lock) { |
---|
| 547 | mvwaddnstr(e->curswin, line, 0, |
---|
| 548 | e->buff + lineindex, |
---|
| 549 | MIN(index - lineindex, |
---|
| 550 | e->lock - lineindex)); |
---|
| 551 | if (e->lock < index) |
---|
| 552 | oe_addnec(e, |
---|
| 553 | oe_region_width(e, e->lock, index, |
---|
| 554 | oe_region_width(e, lineindex, e->lock, 0))); |
---|
| 555 | } else |
---|
| 556 | oe_mvaddnec(e, line, 0, oe_region_width(e, line, index, 0)); |
---|
| 557 | } |
---|
| 558 | } |
---|
[bd1a1ae] | 559 | line++; |
---|
[a556caa] | 560 | } |
---|
[19f765d] | 561 | if (x == -1) |
---|
[bd1a1ae] | 562 | e->topindex = -1; /* force a reframe */ |
---|
[77d4402] | 563 | times++; |
---|
| 564 | } while(x == -1 && times < 3); |
---|
[e20d8179] | 565 | |
---|
[19f765d] | 566 | wmove(e->curswin, y, x); |
---|
[ebf0128] | 567 | e->cursorx = x; |
---|
| 568 | |
---|
[7d4fbcd] | 569 | wnoutrefresh(e->curswin); |
---|
[a556caa] | 570 | if (update == 1) |
---|
[7d4fbcd] | 571 | doupdate(); |
---|
| 572 | } |
---|
| 573 | |
---|
[7f0c26f] | 574 | static inline void oe_fixup(int *target, int start, int end, int change) { |
---|
| 575 | if (*target > start) { |
---|
[0d9c90c] | 576 | if (*target <= end) |
---|
[8459609] | 577 | *target = end + change; |
---|
[7f0c26f] | 578 | else |
---|
| 579 | *target += change; |
---|
| 580 | } |
---|
| 581 | } |
---|
| 582 | |
---|
[e19eb97] | 583 | int owl_editwin_replace_region(owl_editwin *e, const char *s) |
---|
[a88f35a] | 584 | { |
---|
| 585 | oe_excursion x; |
---|
| 586 | int ret; |
---|
[5ebc202] | 587 | oe_save_excursion(e, &x); |
---|
[a88f35a] | 588 | |
---|
| 589 | if(e->index > e->mark) { |
---|
| 590 | owl_editwin_exchange_point_and_mark(e); |
---|
| 591 | } |
---|
| 592 | |
---|
| 593 | ret = owl_editwin_replace_internal(e, e->mark - e->index, s); |
---|
| 594 | |
---|
| 595 | oe_restore_excursion(e, &x); |
---|
| 596 | |
---|
| 597 | return ret; |
---|
| 598 | } |
---|
| 599 | |
---|
[19a023f] | 600 | /* replace 'replace' characters at the point with s, returning the change in size */ |
---|
[e19eb97] | 601 | int owl_editwin_replace(owl_editwin *e, int replace, const char *s) |
---|
[ebf0128] | 602 | { |
---|
[19a023f] | 603 | int start, end, i; |
---|
[e19eb97] | 604 | const char *p; |
---|
[e9bb404] | 605 | |
---|
[5b5f3e6] | 606 | if (!g_utf8_validate(s, -1, NULL)) { |
---|
| 607 | owl_function_debugmsg("owl_editwin_insert_string: received non-utf-8 string."); |
---|
[ebf0128] | 608 | return 0; |
---|
[47519e1b] | 609 | } |
---|
| 610 | |
---|
[5b5f3e6] | 611 | start = e->index; |
---|
| 612 | for (i = 0, p = e->buff + start; i < replace && p != NULL; i++) |
---|
| 613 | p = oe_next_point(e, p); |
---|
| 614 | if (p != NULL) |
---|
| 615 | end = p - e->buff; |
---|
| 616 | else |
---|
| 617 | end = e->bufflen; |
---|
| 618 | |
---|
[19a023f] | 619 | return owl_editwin_replace_internal(e, end - start, s); |
---|
| 620 | } |
---|
| 621 | |
---|
[e19eb97] | 622 | static int owl_editwin_replace_internal(owl_editwin *e, int replace, const char *s) |
---|
[19a023f] | 623 | { |
---|
| 624 | int start, end, free, need, size, change; |
---|
| 625 | oe_excursion *x; |
---|
| 626 | |
---|
| 627 | start = e->index; |
---|
| 628 | end = start + replace; |
---|
| 629 | |
---|
[5b5f3e6] | 630 | free = e->allocated - e->bufflen + end - start; |
---|
| 631 | |
---|
| 632 | need = strlen(s) - free; |
---|
| 633 | if (need > 0) { |
---|
| 634 | size = e->allocated + need + INCR - (need % INCR); |
---|
[b644688] | 635 | e->buff = owl_realloc(e->buff, size); |
---|
[5b5f3e6] | 636 | e->allocated = size; |
---|
[47519e1b] | 637 | } |
---|
[e9bb404] | 638 | |
---|
[5b5f3e6] | 639 | memmove(e->buff + start + strlen(s), e->buff + end, e->bufflen + 1 - end); |
---|
| 640 | memcpy(e->buff + start, s, strlen(s)); |
---|
[ebf0128] | 641 | change = start - end + strlen(s); |
---|
| 642 | e->bufflen += change; |
---|
[5b5f3e6] | 643 | e->index += strlen(s); |
---|
[ebf0128] | 644 | |
---|
[7f0c26f] | 645 | /* fix up the mark */ |
---|
[3e36085] | 646 | oe_fixup(&e->mark, start, end, change); |
---|
| 647 | oe_fixup(&e->topindex, start, end, change); |
---|
[ebf0128] | 648 | /* fix up any saved points after the replaced area */ |
---|
[7f0c26f] | 649 | for (x = e->excursions; x != NULL; x = x->next) { |
---|
| 650 | oe_fixup(&x->index, start, end, change); |
---|
[3e36085] | 651 | oe_fixup(&x->mark, start, end, change); |
---|
[7f0c26f] | 652 | } |
---|
[ebf0128] | 653 | |
---|
[c471e85] | 654 | /* recenter if needed */ |
---|
| 655 | if (start <= e->topindex) |
---|
| 656 | owl_editwin_recenter(e); |
---|
| 657 | |
---|
[ebf0128] | 658 | return change; |
---|
[47519e1b] | 659 | } |
---|
| 660 | |
---|
[c9334b1] | 661 | /* linewrap the word just before the cursor. |
---|
| 662 | * returns 0 on success |
---|
| 663 | * returns -1 if we could not wrap. |
---|
| 664 | */ |
---|
[fc2677b] | 665 | static void _owl_editwin_linewrap_word(owl_editwin *e) |
---|
[c9334b1] | 666 | { |
---|
[fc2677b] | 667 | oe_excursion x; |
---|
[84027015] | 668 | gunichar c; |
---|
[7d4fbcd] | 669 | |
---|
[fc2677b] | 670 | oe_save_excursion(e, &x); |
---|
[84027015] | 671 | |
---|
[fc2677b] | 672 | while (owl_editwin_point_move(e, -1)) { |
---|
| 673 | c = owl_editwin_get_char_at_point(e); |
---|
| 674 | if (owl_util_can_break_after(c) || c == '\n') { |
---|
| 675 | if (c != '\n') |
---|
| 676 | owl_editwin_replace(e, c != ' ' ? 0 : 1, "\n"); |
---|
| 677 | break; |
---|
[2d4ff14] | 678 | } |
---|
[7d4fbcd] | 679 | } |
---|
[fc2677b] | 680 | |
---|
| 681 | oe_restore_excursion(e, &x); |
---|
[7d4fbcd] | 682 | } |
---|
| 683 | |
---|
[c9334b1] | 684 | /* delete the character at the current point, following chars |
---|
| 685 | * shift left. |
---|
[e20d8179] | 686 | */ |
---|
[c9334b1] | 687 | void owl_editwin_delete_char(owl_editwin *e) |
---|
| 688 | { |
---|
[5b5f3e6] | 689 | owl_editwin_replace(e, 1, ""); |
---|
[7d4fbcd] | 690 | } |
---|
| 691 | |
---|
[c9334b1] | 692 | /* Swap the character at point with the character at point-1 and |
---|
| 693 | * advance the pointer. If point is at beginning of buffer do |
---|
| 694 | * nothing. If point is after the last character swap point-1 with |
---|
[e20d8179] | 695 | * point-2. (Behaves as observed in tcsh and emacs). |
---|
[c9334b1] | 696 | */ |
---|
| 697 | void owl_editwin_transpose_chars(owl_editwin *e) |
---|
| 698 | { |
---|
[e19eb97] | 699 | const char *middle, *end, *start; |
---|
[65b2173] | 700 | char *tmp; |
---|
[f2e36b5] | 701 | |
---|
[47519e1b] | 702 | if (e->bufflen == 0) return; |
---|
[e20d8179] | 703 | |
---|
[5b5f3e6] | 704 | if (e->index == e->bufflen) |
---|
| 705 | owl_editwin_point_move(e, -1); /* point is after last character */ |
---|
[f2e36b5] | 706 | |
---|
[5b5f3e6] | 707 | if (owl_editwin_at_beginning_of_buffer(e)) |
---|
| 708 | return; /* point is at beginning of buffer, do nothing */ |
---|
[f2e36b5] | 709 | |
---|
[47519e1b] | 710 | /* Transpose two utf-8 unicode glyphs. */ |
---|
[5b5f3e6] | 711 | middle = e->buff + e->index; |
---|
[47519e1b] | 712 | |
---|
[5b5f3e6] | 713 | end = oe_next_point(e, middle); |
---|
| 714 | if (end == NULL) |
---|
[e20d8179] | 715 | return; |
---|
[47519e1b] | 716 | |
---|
[5b5f3e6] | 717 | start = oe_prev_point(e, middle); |
---|
| 718 | if (start == NULL) |
---|
[e20d8179] | 719 | return; |
---|
[47519e1b] | 720 | |
---|
[5b5f3e6] | 721 | tmp = owl_malloc((end - start) + 1); |
---|
| 722 | tmp[(end - start)] = 0; |
---|
| 723 | memcpy(tmp, middle, end - middle); |
---|
| 724 | memcpy(tmp + (end - middle), start, middle - start); |
---|
| 725 | |
---|
| 726 | owl_editwin_point_move(e, -1); |
---|
| 727 | owl_editwin_replace(e, 2, tmp); |
---|
[f2e36b5] | 728 | } |
---|
| 729 | |
---|
[c9334b1] | 730 | /* insert 'string' at the current point, later text is shifted |
---|
| 731 | * right |
---|
| 732 | */ |
---|
[e19eb97] | 733 | void owl_editwin_insert_string(owl_editwin *e, const char *s) |
---|
[c9334b1] | 734 | { |
---|
[5b5f3e6] | 735 | owl_editwin_replace(e, 0, s); |
---|
[7d4fbcd] | 736 | } |
---|
| 737 | |
---|
[a556caa] | 738 | /* We assume index is not set to point to a mid-char */ |
---|
[bab52da] | 739 | static gunichar owl_editwin_get_char_at_point(owl_editwin *e) |
---|
[c9334b1] | 740 | { |
---|
[a556caa] | 741 | return g_utf8_get_char(e->buff + e->index); |
---|
| 742 | } |
---|
[7d4fbcd] | 743 | |
---|
[7f0c26f] | 744 | void owl_editwin_exchange_point_and_mark(owl_editwin *e) { |
---|
| 745 | int tmp; |
---|
| 746 | |
---|
| 747 | if (e->mark != -1) { |
---|
| 748 | tmp = e->mark; |
---|
| 749 | owl_editwin_set_mark(e); |
---|
| 750 | oe_set_index(e, tmp); |
---|
| 751 | } |
---|
| 752 | } |
---|
| 753 | |
---|
[e20d8179] | 754 | int owl_editwin_point_move(owl_editwin *e, int delta) |
---|
[84027015] | 755 | { |
---|
[e19eb97] | 756 | const char *p; |
---|
[19f765d] | 757 | int change, d = 0; |
---|
[a556caa] | 758 | |
---|
| 759 | change = MAX(delta, - delta); |
---|
| 760 | p = e->buff + e->index; |
---|
| 761 | |
---|
| 762 | while (d < change && p != NULL) { |
---|
[e20d8179] | 763 | if (delta > 0) |
---|
| 764 | p = oe_next_point(e, p); |
---|
| 765 | else |
---|
| 766 | p = oe_prev_point(e, p); |
---|
| 767 | if (p != NULL) { |
---|
[521bc84] | 768 | oe_set_index(e, p - e->buff); |
---|
[e20d8179] | 769 | d++; |
---|
[a556caa] | 770 | } |
---|
| 771 | } |
---|
| 772 | |
---|
| 773 | return delta > 0 ? d : -d; |
---|
[84027015] | 774 | } |
---|
| 775 | |
---|
[a556caa] | 776 | int owl_editwin_at_beginning_of_buffer(owl_editwin *e) { |
---|
| 777 | if (e->index == e->lock) |
---|
| 778 | return 1; |
---|
[84027015] | 779 | |
---|
[a556caa] | 780 | return 0; |
---|
| 781 | } |
---|
| 782 | |
---|
| 783 | int owl_at_end_of_buffer(owl_editwin *e) { |
---|
| 784 | if (e->index == e->bufflen) |
---|
| 785 | return 1; |
---|
| 786 | |
---|
| 787 | return 0; |
---|
| 788 | } |
---|
| 789 | |
---|
[e9c6fc8] | 790 | static int owl_editwin_at_beginning_of_line(owl_editwin *e) |
---|
[c9334b1] | 791 | { |
---|
[a0fbdee] | 792 | oe_excursion x; |
---|
[a556caa] | 793 | int ret; |
---|
[47519e1b] | 794 | |
---|
[a556caa] | 795 | if (owl_editwin_at_beginning_of_buffer(e)) |
---|
| 796 | return 1; |
---|
[47519e1b] | 797 | |
---|
[a0fbdee] | 798 | oe_save_excursion(e, &x); |
---|
[a556caa] | 799 | owl_editwin_point_move(e, -1); |
---|
[bab52da] | 800 | ret = (owl_editwin_get_char_at_point(e) == '\n'); |
---|
[a0fbdee] | 801 | oe_restore_excursion(e, &x); |
---|
[a556caa] | 802 | |
---|
| 803 | return ret; |
---|
| 804 | } |
---|
| 805 | |
---|
[e19eb97] | 806 | static int owl_editwin_is_char_in(owl_editwin *e, const char *set) |
---|
[a556caa] | 807 | { |
---|
[e19eb97] | 808 | const char *p; |
---|
[5b5f3e6] | 809 | |
---|
| 810 | for (p = set; *p != 0; p = g_utf8_find_next_char(p, NULL)) |
---|
| 811 | if (owl_editwin_get_char_at_point(e) == g_utf8_get_char(p)) |
---|
[a556caa] | 812 | return 1; |
---|
| 813 | return 0; |
---|
| 814 | } |
---|
| 815 | |
---|
[e19eb97] | 816 | int owl_editwin_move_if_in(owl_editwin *e, int delta, const char *set) |
---|
[a556caa] | 817 | { |
---|
| 818 | int change, distance = 0; |
---|
[e20d8179] | 819 | while (owl_editwin_is_char_in(e, set)) { |
---|
[a556caa] | 820 | change = owl_editwin_point_move(e, delta); |
---|
| 821 | distance += change; |
---|
| 822 | if (change == 0) |
---|
| 823 | break; |
---|
[47519e1b] | 824 | } |
---|
[a556caa] | 825 | return distance; |
---|
| 826 | } |
---|
| 827 | |
---|
[e19eb97] | 828 | int owl_editwin_move_if_not_in(owl_editwin *e, int delta, const char *set) |
---|
[a556caa] | 829 | { |
---|
| 830 | int change, distance = 0; |
---|
[e20d8179] | 831 | while (!owl_editwin_is_char_in(e, set)) { |
---|
[a556caa] | 832 | change = owl_editwin_point_move(e, delta); |
---|
| 833 | distance += change; |
---|
| 834 | if (change == 0) |
---|
| 835 | break; |
---|
[7d4fbcd] | 836 | } |
---|
[a556caa] | 837 | return distance; |
---|
[7d4fbcd] | 838 | } |
---|
| 839 | |
---|
[e20d8179] | 840 | int owl_editwin_move_to_beginning_of_line(owl_editwin *e) |
---|
[47519e1b] | 841 | { |
---|
[a556caa] | 842 | int distance = 0; |
---|
[47519e1b] | 843 | |
---|
[a556caa] | 844 | if (!owl_editwin_at_beginning_of_line(e)) { |
---|
| 845 | /* move off the \n if were at the end of a line */ |
---|
| 846 | distance += owl_editwin_point_move(e, -1); |
---|
| 847 | distance += owl_editwin_move_if_not_in(e, -1, "\n"); |
---|
| 848 | if (distance && !owl_editwin_at_beginning_of_buffer(e)) |
---|
| 849 | distance += owl_editwin_point_move(e, 1); |
---|
[47519e1b] | 850 | } |
---|
[77d4402] | 851 | e->goal_column = 0; /* subtleties */ |
---|
[84027015] | 852 | |
---|
[a556caa] | 853 | return distance; |
---|
| 854 | } |
---|
[e20d8179] | 855 | |
---|
| 856 | int owl_editwin_move_to_end_of_line(owl_editwin *e) |
---|
[a556caa] | 857 | { |
---|
| 858 | return owl_editwin_move_if_not_in(e, 1, "\n"); |
---|
[47519e1b] | 859 | } |
---|
| 860 | |
---|
[e20d8179] | 861 | int owl_editwin_line_move(owl_editwin *e, int delta) |
---|
[c9334b1] | 862 | { |
---|
[d7043b4] | 863 | int goal_column, change, ll, distance; |
---|
| 864 | int count = 0; |
---|
[a556caa] | 865 | |
---|
| 866 | change = MAX(delta, -delta); |
---|
| 867 | |
---|
[d7043b4] | 868 | goal_column = e->goal_column; |
---|
| 869 | distance = owl_editwin_move_to_beginning_of_line(e); |
---|
| 870 | goal_column = goal_column == -1 ? -distance : goal_column; |
---|
[a556caa] | 871 | |
---|
| 872 | while(count < change) { |
---|
| 873 | if (delta > 0) { |
---|
| 874 | distance += owl_editwin_move_if_not_in(e, 1, "\n"); |
---|
| 875 | distance += owl_editwin_point_move(e, 1); |
---|
| 876 | } else { |
---|
| 877 | /* I really want to assert delta < 0 here */ |
---|
| 878 | distance += owl_editwin_point_move(e, -1); /* to the newline on |
---|
| 879 | the previous line */ |
---|
| 880 | distance += owl_editwin_move_to_beginning_of_line(e); |
---|
| 881 | } |
---|
| 882 | count++; |
---|
[7d4fbcd] | 883 | } |
---|
[a556caa] | 884 | |
---|
| 885 | distance += (ll = owl_editwin_move_to_end_of_line(e)); |
---|
| 886 | if (ll > goal_column) |
---|
| 887 | distance += owl_editwin_point_move(e, goal_column - ll); |
---|
| 888 | |
---|
| 889 | e->goal_column = goal_column; |
---|
| 890 | |
---|
| 891 | return distance; |
---|
[7d4fbcd] | 892 | } |
---|
| 893 | |
---|
[c9334b1] | 894 | void owl_editwin_backspace(owl_editwin *e) |
---|
| 895 | { |
---|
[7d4fbcd] | 896 | /* delete the char before the current one |
---|
| 897 | * and shift later chars left |
---|
| 898 | */ |
---|
[a556caa] | 899 | if(owl_editwin_point_move(e, -1)) |
---|
[7d4fbcd] | 900 | owl_editwin_delete_char(e); |
---|
| 901 | } |
---|
| 902 | |
---|
[c9334b1] | 903 | void owl_editwin_key_up(owl_editwin *e) |
---|
| 904 | { |
---|
[a556caa] | 905 | owl_editwin_line_move(e, -1); |
---|
[7d4fbcd] | 906 | } |
---|
| 907 | |
---|
[c9334b1] | 908 | void owl_editwin_key_down(owl_editwin *e) |
---|
| 909 | { |
---|
[a556caa] | 910 | owl_editwin_line_move(e, 1); |
---|
[7d4fbcd] | 911 | } |
---|
| 912 | |
---|
[c9334b1] | 913 | void owl_editwin_key_left(owl_editwin *e) |
---|
| 914 | { |
---|
[a556caa] | 915 | owl_editwin_point_move(e, -1); |
---|
[7d4fbcd] | 916 | } |
---|
| 917 | |
---|
[c9334b1] | 918 | void owl_editwin_key_right(owl_editwin *e) |
---|
| 919 | { |
---|
[a556caa] | 920 | owl_editwin_point_move(e, 1); |
---|
[7d4fbcd] | 921 | } |
---|
| 922 | |
---|
[5b5f3e6] | 923 | int owl_editwin_forward_word(owl_editwin *e) |
---|
[c9334b1] | 924 | { |
---|
[5b5f3e6] | 925 | int distance; |
---|
[7d4fbcd] | 926 | /* if we're starting on a space, find the first non-space */ |
---|
[5b5f3e6] | 927 | distance = owl_editwin_move_if_in(e, 1, WHITESPACE); |
---|
[7d4fbcd] | 928 | |
---|
[a556caa] | 929 | /* now find the end of this word */ |
---|
[5b5f3e6] | 930 | distance += owl_editwin_move_if_not_in(e, 1, WHITESPACE); |
---|
| 931 | |
---|
| 932 | return distance; |
---|
| 933 | } |
---|
| 934 | |
---|
| 935 | void owl_editwin_move_to_nextword(owl_editwin *e) |
---|
| 936 | { |
---|
| 937 | owl_editwin_forward_word(e); |
---|
[7d4fbcd] | 938 | } |
---|
| 939 | |
---|
[c9334b1] | 940 | /* go backwards to the last non-space character |
---|
| 941 | */ |
---|
[5b5f3e6] | 942 | int owl_editwin_backward_word(owl_editwin *e) |
---|
[c9334b1] | 943 | { |
---|
[a0fbdee] | 944 | oe_excursion x; |
---|
[5b5f3e6] | 945 | int distance = 0; |
---|
| 946 | int further = 0; |
---|
[a556caa] | 947 | int beginning; |
---|
| 948 | /* if in middle of word, beginning of word */ |
---|
| 949 | |
---|
| 950 | /* if at beginning of a word, find beginning of previous word */ |
---|
| 951 | |
---|
[e20d8179] | 952 | if (owl_editwin_is_char_in(e, WHITESPACE)) { |
---|
[a556caa] | 953 | /* if in whitespace past end of word, find a word , the find the beginning*/ |
---|
[5b5f3e6] | 954 | distance += owl_editwin_move_if_in(e, -1, WHITESPACE); /* leaves us on the last |
---|
| 955 | character of the word */ |
---|
[a0fbdee] | 956 | oe_save_excursion(e, &x); |
---|
[a556caa] | 957 | /* are we at the beginning of a word? */ |
---|
| 958 | owl_editwin_point_move(e, -1); |
---|
[e20d8179] | 959 | beginning = owl_editwin_is_char_in(e, WHITESPACE); |
---|
[a0fbdee] | 960 | oe_restore_excursion(e, &x); |
---|
[a556caa] | 961 | if (beginning) |
---|
[5b5f3e6] | 962 | return distance; |
---|
[a556caa] | 963 | } else { |
---|
| 964 | /* in the middle of the word; */ |
---|
[a0fbdee] | 965 | oe_save_excursion(e, &x); |
---|
[5b5f3e6] | 966 | further += owl_editwin_point_move(e, -1); |
---|
[e20d8179] | 967 | if (owl_editwin_is_char_in(e, WHITESPACE)) { /* we were at the beginning */ |
---|
[5b5f3e6] | 968 | distance += owl_editwin_backward_word(e); /* previous case */ |
---|
[8321cb7] | 969 | oe_release_excursion(e, &x); |
---|
[5b5f3e6] | 970 | return distance + further; |
---|
[a556caa] | 971 | } else { |
---|
[a0fbdee] | 972 | oe_restore_excursion(e, &x); |
---|
[7d4fbcd] | 973 | } |
---|
| 974 | } |
---|
[5b5f3e6] | 975 | distance += owl_editwin_move_if_not_in(e, -1, WHITESPACE); |
---|
[a556caa] | 976 | /* will go past */ |
---|
| 977 | if (e->index > e->lock) |
---|
[5b5f3e6] | 978 | distance += owl_editwin_point_move(e, 1); |
---|
| 979 | return distance; |
---|
| 980 | } |
---|
| 981 | |
---|
| 982 | void owl_editwin_move_to_previousword(owl_editwin *e) |
---|
| 983 | { |
---|
| 984 | owl_editwin_backward_word(e); |
---|
[7d4fbcd] | 985 | } |
---|
| 986 | |
---|
[c9334b1] | 987 | void owl_editwin_delete_nextword(owl_editwin *e) |
---|
| 988 | { |
---|
[a0fbdee] | 989 | oe_excursion x; |
---|
[a556caa] | 990 | |
---|
[a0fbdee] | 991 | oe_save_excursion(e, &x); |
---|
[a60edf2] | 992 | oe_set_mark(e, e->index); |
---|
| 993 | owl_editwin_forward_word(e); |
---|
| 994 | owl_editwin_kill_region(e); |
---|
| 995 | oe_restore_mark_only(e, &x); |
---|
[7d4fbcd] | 996 | } |
---|
| 997 | |
---|
[c9334b1] | 998 | void owl_editwin_delete_previousword(owl_editwin *e) |
---|
| 999 | { |
---|
[a60edf2] | 1000 | oe_excursion x; |
---|
[b68f9cd] | 1001 | |
---|
[a60edf2] | 1002 | oe_save_excursion(e, &x); |
---|
| 1003 | oe_set_mark(e, e->index); |
---|
| 1004 | owl_editwin_backward_word(e); |
---|
| 1005 | owl_editwin_kill_region(e); |
---|
| 1006 | oe_restore_mark_only(e, &x); |
---|
[b68f9cd] | 1007 | } |
---|
| 1008 | |
---|
[a556caa] | 1009 | void owl_editwin_move_to_line_end(owl_editwin *e) |
---|
[c9334b1] | 1010 | { |
---|
[a556caa] | 1011 | owl_editwin_move_to_end_of_line(e); |
---|
[7d4fbcd] | 1012 | } |
---|
| 1013 | |
---|
[a556caa] | 1014 | void owl_editwin_delete_to_endofline(owl_editwin *e) |
---|
[c9334b1] | 1015 | { |
---|
[a0fbdee] | 1016 | oe_excursion x; |
---|
[5b5f3e6] | 1017 | int distance; |
---|
[a556caa] | 1018 | |
---|
[a0fbdee] | 1019 | oe_save_excursion(e, &x); |
---|
[a60edf2] | 1020 | owl_editwin_set_mark(e); |
---|
[5b5f3e6] | 1021 | distance = owl_editwin_move_to_end_of_line(e); |
---|
[a60edf2] | 1022 | if (distance) |
---|
| 1023 | owl_editwin_kill_region(e); |
---|
| 1024 | else |
---|
| 1025 | owl_editwin_replace(e, 1, ""); |
---|
[a0fbdee] | 1026 | oe_restore_excursion(e, &x); |
---|
[a60edf2] | 1027 | } |
---|
| 1028 | |
---|
| 1029 | void owl_editwin_yank(owl_editwin *e) |
---|
| 1030 | { |
---|
| 1031 | if (e->killbuf != NULL) |
---|
| 1032 | owl_editwin_replace(e, 0, e->killbuf); |
---|
| 1033 | } |
---|
| 1034 | |
---|
[e19eb97] | 1035 | static const char *oe_copy_buf(owl_editwin *e, const char *buf, int len) |
---|
[a60edf2] | 1036 | { |
---|
| 1037 | char *p; |
---|
| 1038 | |
---|
| 1039 | p = owl_malloc(len + 1); |
---|
| 1040 | |
---|
| 1041 | if (p != NULL) { |
---|
| 1042 | owl_free(e->killbuf); |
---|
| 1043 | e->killbuf = p; |
---|
| 1044 | memcpy(e->killbuf, buf, len); |
---|
| 1045 | e->killbuf[len] = 0; |
---|
| 1046 | } |
---|
| 1047 | |
---|
| 1048 | return p; |
---|
| 1049 | } |
---|
| 1050 | |
---|
| 1051 | static int oe_copy_region(owl_editwin *e) |
---|
| 1052 | { |
---|
[e19eb97] | 1053 | const char *p; |
---|
[a60edf2] | 1054 | int start, end; |
---|
| 1055 | |
---|
| 1056 | if (e->mark == -1) |
---|
| 1057 | return 0; |
---|
| 1058 | |
---|
| 1059 | start = MIN(e->index, e->mark); |
---|
| 1060 | end = MAX(e->index, e->mark); |
---|
| 1061 | |
---|
| 1062 | p = oe_copy_buf(e, e->buff + start, end - start); |
---|
| 1063 | if (p != NULL) |
---|
| 1064 | return end - start; |
---|
| 1065 | return 0; |
---|
| 1066 | } |
---|
| 1067 | |
---|
| 1068 | void owl_editwin_copy_region_as_kill(owl_editwin *e) |
---|
| 1069 | { |
---|
| 1070 | oe_copy_region(e); |
---|
| 1071 | } |
---|
| 1072 | |
---|
| 1073 | void owl_editwin_kill_region(owl_editwin *e) |
---|
| 1074 | { |
---|
| 1075 | if (e->index > e->mark) |
---|
| 1076 | owl_editwin_exchange_point_and_mark(e); |
---|
| 1077 | |
---|
[2184001] | 1078 | owl_editwin_replace_internal(e, oe_copy_region(e), ""); |
---|
[7d4fbcd] | 1079 | } |
---|
| 1080 | |
---|
[c9334b1] | 1081 | void owl_editwin_move_to_line_start(owl_editwin *e) |
---|
| 1082 | { |
---|
[a556caa] | 1083 | owl_editwin_move_to_beginning_of_line(e); |
---|
[7d4fbcd] | 1084 | } |
---|
| 1085 | |
---|
[c9334b1] | 1086 | void owl_editwin_move_to_end(owl_editwin *e) |
---|
| 1087 | { |
---|
[521bc84] | 1088 | oe_set_index(e, e->bufflen); |
---|
[7d4fbcd] | 1089 | } |
---|
| 1090 | |
---|
[c9334b1] | 1091 | void owl_editwin_move_to_top(owl_editwin *e) |
---|
| 1092 | { |
---|
[521bc84] | 1093 | oe_set_index(e, e->lock); |
---|
[7d4fbcd] | 1094 | } |
---|
| 1095 | |
---|
[2fc8397] | 1096 | void owl_editwin_backward_paragraph(owl_editwin *e) |
---|
| 1097 | { |
---|
| 1098 | owl_editwin_point_move(e, -1); |
---|
| 1099 | for (; e->index >= e->lock; owl_editwin_point_move(e, -1)) { |
---|
| 1100 | if (e->index <= e->lock || |
---|
| 1101 | ((e->buff[e->index] == '\n') && (e->buff[e->index - 1]=='\n'))) |
---|
| 1102 | break; |
---|
| 1103 | } |
---|
| 1104 | } |
---|
| 1105 | |
---|
| 1106 | void owl_editwin_forward_paragraph(owl_editwin *e) |
---|
| 1107 | { |
---|
| 1108 | owl_editwin_point_move(e, 1); |
---|
| 1109 | /* scan forward to the start of the next paragraph */ |
---|
| 1110 | for(; e->index < e->bufflen; owl_editwin_point_move(e, 1)) { |
---|
| 1111 | if (e->buff[e->index -1] == '\n' && e->buff[e->index] == '\n') |
---|
| 1112 | break; |
---|
| 1113 | } |
---|
| 1114 | } |
---|
| 1115 | |
---|
[d41294a] | 1116 | int owl_editwin_current_column(owl_editwin *e) |
---|
[c9334b1] | 1117 | { |
---|
[a0fbdee] | 1118 | oe_excursion x; |
---|
[fc2677b] | 1119 | int lineindex; |
---|
[7d4fbcd] | 1120 | |
---|
[a0fbdee] | 1121 | oe_save_excursion(e, &x); |
---|
[fc2677b] | 1122 | owl_editwin_move_to_beginning_of_line(e); |
---|
| 1123 | lineindex = e->index; |
---|
| 1124 | oe_restore_excursion(e, &x); |
---|
| 1125 | return oe_region_width(e, lineindex, e->index, 0); |
---|
| 1126 | } |
---|
[a556caa] | 1127 | |
---|
[fc2677b] | 1128 | void owl_editwin_fill_paragraph(owl_editwin *e) |
---|
| 1129 | { |
---|
| 1130 | oe_excursion x; |
---|
| 1131 | gunichar ch; |
---|
| 1132 | int sentence; |
---|
[7d4fbcd] | 1133 | |
---|
[fc2677b] | 1134 | oe_save_excursion(e, &x); |
---|
[7d4fbcd] | 1135 | |
---|
[fc2677b] | 1136 | /* Mark the end of the paragraph */ |
---|
| 1137 | owl_editwin_forward_paragraph(e); |
---|
| 1138 | /* Skip the trailing newline */ |
---|
| 1139 | owl_editwin_point_move(e, -1); |
---|
| 1140 | owl_editwin_set_mark(e); |
---|
[7d4fbcd] | 1141 | |
---|
[fc2677b] | 1142 | owl_editwin_backward_paragraph(e); |
---|
[7d4fbcd] | 1143 | |
---|
[fc2677b] | 1144 | /* Don't mess with the leading newline */ |
---|
| 1145 | if (owl_editwin_get_char_at_point(e) == '\n') |
---|
| 1146 | owl_editwin_point_move(e, 1); |
---|
[7d4fbcd] | 1147 | |
---|
[fc2677b] | 1148 | /* |
---|
| 1149 | * First pass: Scan forward replacing all series of spaces with ' ' |
---|
| 1150 | * (or nothing after CJK ideograms) |
---|
| 1151 | */ |
---|
| 1152 | sentence = 0; |
---|
| 1153 | for(;e->index < e->mark; owl_editwin_point_move(e, 1)) { |
---|
[50e671c] | 1154 | /* bail if we hit a trailing dot on the buffer */ |
---|
[fc2677b] | 1155 | if (strcmp(e->buff + e->index, "\n.") == 0) { |
---|
| 1156 | owl_editwin_set_mark(e); |
---|
[50e671c] | 1157 | break; |
---|
[7d4fbcd] | 1158 | } |
---|
| 1159 | |
---|
[fc2677b] | 1160 | ch = owl_editwin_get_char_at_point(e); |
---|
[b2c1bd4] | 1161 | |
---|
[fc2677b] | 1162 | if (owl_util_can_break_after(ch) || ch == '\n') { |
---|
| 1163 | if (g_unichar_isspace(ch)) { |
---|
| 1164 | owl_editwin_replace(e, 1, " "); |
---|
| 1165 | } |
---|
| 1166 | |
---|
[f9d257b] | 1167 | if (sentence && g_unichar_isspace(owl_editwin_get_char_at_point(e)) |
---|
| 1168 | && e->index < e->mark) |
---|
[fc2677b] | 1169 | owl_editwin_point_move(e, 1); |
---|
| 1170 | |
---|
| 1171 | while(g_unichar_isspace(owl_editwin_get_char_at_point(e)) |
---|
| 1172 | && e->index < e->mark) { |
---|
| 1173 | owl_editwin_delete_char(e); |
---|
[7d4fbcd] | 1174 | } |
---|
| 1175 | } |
---|
[fc2677b] | 1176 | |
---|
| 1177 | if(ch == '.' || ch == '!' || ch == '?') |
---|
| 1178 | sentence = 1; |
---|
| 1179 | else |
---|
| 1180 | sentence = 0; |
---|
| 1181 | } |
---|
| 1182 | |
---|
| 1183 | owl_editwin_backward_paragraph(e); |
---|
| 1184 | |
---|
| 1185 | /* Now go through inserting newlines as needed */ |
---|
| 1186 | while(e->index < e->mark) { |
---|
| 1187 | /* if we've travelled too far, linewrap */ |
---|
[d41294a] | 1188 | if (owl_editwin_current_column(e) >= e->fillcol) |
---|
[fc2677b] | 1189 | _owl_editwin_linewrap_word(e); |
---|
| 1190 | owl_editwin_point_move(e, 1); |
---|
[7d4fbcd] | 1191 | } |
---|
| 1192 | |
---|
[a0fbdee] | 1193 | oe_restore_excursion(e, &x); |
---|
[7d4fbcd] | 1194 | } |
---|
| 1195 | |
---|
[cf83b7a] | 1196 | /* returns true if only whitespace remains */ |
---|
[c9334b1] | 1197 | int owl_editwin_is_at_end(owl_editwin *e) |
---|
| 1198 | { |
---|
[a556caa] | 1199 | return (only_whitespace(e->buff + e->index)); |
---|
[217a43e] | 1200 | } |
---|
| 1201 | |
---|
[bab52da] | 1202 | static int owl_editwin_check_dotsend(owl_editwin *e) |
---|
[c9334b1] | 1203 | { |
---|
[dc7884d] | 1204 | int zdot = 0; |
---|
[72ab15f] | 1205 | oe_excursion x; |
---|
[7d4fbcd] | 1206 | |
---|
| 1207 | if (!e->dotsend) return(0); |
---|
[4ccd92c] | 1208 | if (!owl_editwin_is_at_end(e)) return (0); |
---|
[47519e1b] | 1209 | |
---|
[72ab15f] | 1210 | oe_save_excursion(e, &x); |
---|
| 1211 | |
---|
| 1212 | owl_editwin_point_move(e, -3); |
---|
| 1213 | |
---|
[4ccd92c] | 1214 | if(strncmp(e->buff + e->index, "\n.\n", 3) == 0) { |
---|
[dc7884d] | 1215 | owl_editwin_point_move(e, 1); |
---|
| 1216 | zdot = 1; |
---|
[0509efc] | 1217 | } else if(e->index == e->lock && |
---|
[4ccd92c] | 1218 | strncmp(e->buff + e->index, ".\n", 2) == 0) { |
---|
[0509efc] | 1219 | zdot = 1; |
---|
| 1220 | } |
---|
| 1221 | |
---|
| 1222 | if(zdot) { |
---|
[4ccd92c] | 1223 | owl_editwin_set_mark(e); |
---|
| 1224 | owl_editwin_move_to_end(e); |
---|
| 1225 | owl_editwin_replace_region(e, ""); |
---|
[dc7884d] | 1226 | } |
---|
[72ab15f] | 1227 | |
---|
| 1228 | oe_restore_excursion(e, &x); |
---|
| 1229 | |
---|
| 1230 | return zdot; |
---|
[7d4fbcd] | 1231 | } |
---|
| 1232 | |
---|
[fac5463] | 1233 | void owl_editwin_post_process_char(owl_editwin *e, owl_input j) |
---|
[c9334b1] | 1234 | { |
---|
[a556caa] | 1235 | /* XXX force a redisplay? */ |
---|
[fac5463] | 1236 | if ((j.ch==13 || j.ch==10) && owl_editwin_check_dotsend(e)) { |
---|
[435d6b2] | 1237 | owl_command_edit_done(e); |
---|
[7d4fbcd] | 1238 | return; |
---|
| 1239 | } |
---|
[e20d8179] | 1240 | owl_editwin_redisplay(e, 0); |
---|
[7d4fbcd] | 1241 | } |
---|
| 1242 | |
---|
[3e36085] | 1243 | static int oe_region_width(owl_editwin *e, int start, int end, int offset) |
---|
[16cfd12a] | 1244 | { |
---|
[e19eb97] | 1245 | const char *p; |
---|
[3e36085] | 1246 | int width = offset; |
---|
| 1247 | |
---|
[16cfd12a] | 1248 | for(p = e->buff + start; |
---|
| 1249 | p < e->buff + end; |
---|
| 1250 | p = g_utf8_find_next_char(p, NULL)) |
---|
| 1251 | width += oe_char_width(g_utf8_get_char(p), width); |
---|
| 1252 | |
---|
[3e36085] | 1253 | return width - offset; |
---|
[16cfd12a] | 1254 | } |
---|
| 1255 | |
---|
[ebf0128] | 1256 | static void oe_insert_char(owl_editwin *e, gunichar c) |
---|
[fac5463] | 1257 | { |
---|
[16cfd12a] | 1258 | oe_excursion x; |
---|
[5b5f3e6] | 1259 | char tmp[7]; |
---|
[16cfd12a] | 1260 | int replaced = -1; |
---|
[5b5f3e6] | 1261 | |
---|
[ebf0128] | 1262 | if (c == '\r') /* translate CRs to NLs */ |
---|
| 1263 | c = '\n'; |
---|
| 1264 | |
---|
[16cfd12a] | 1265 | if (!g_unichar_iscntrl(c) || c == '\n' || c== '\t' ) { |
---|
[ebf0128] | 1266 | if (c == '\n' && e->style == OWL_EDITWIN_STYLE_ONELINE) { |
---|
| 1267 | return; |
---|
| 1268 | } |
---|
| 1269 | |
---|
[16cfd12a] | 1270 | if (e->cursorx != -1 && e->cursorx + oe_char_width(c, e->cursorx) > e->wrapcol) { |
---|
| 1271 | /* XXX this is actually wrong: |
---|
| 1272 | * + If the line has been been wrapped, we can be past the wrap column but |
---|
| 1273 | * e->cursorx be much smaller. |
---|
| 1274 | * + If the user went back and inserted a bunch of stuff in the middle of |
---|
| 1275 | * the line, there may be more than one word past the wrap column. |
---|
| 1276 | */ |
---|
| 1277 | oe_save_excursion(e, &x); |
---|
| 1278 | |
---|
| 1279 | if (c == ' ' || c == '\t') { |
---|
| 1280 | owl_editwin_point_move(e, -1); |
---|
| 1281 | replaced = -owl_editwin_move_if_in(e, -1, " \t"); |
---|
| 1282 | if (!replaced) { |
---|
| 1283 | c = '\n'; |
---|
| 1284 | replaced = -1; |
---|
| 1285 | } |
---|
| 1286 | } else { |
---|
| 1287 | while(!owl_editwin_at_beginning_of_line(e)) { |
---|
| 1288 | owl_editwin_point_move(e, -1); |
---|
| 1289 | if (owl_util_can_break_after(owl_editwin_get_char_at_point(e))) { |
---|
| 1290 | replaced = -owl_editwin_move_if_in(e, -1, " \t"); |
---|
| 1291 | break; |
---|
| 1292 | } |
---|
| 1293 | } |
---|
| 1294 | if (owl_editwin_at_beginning_of_line(e)) |
---|
| 1295 | replaced = -1; |
---|
| 1296 | } |
---|
| 1297 | if (replaced && !owl_editwin_at_beginning_of_line(e)) |
---|
| 1298 | owl_editwin_point_move(e, 1); |
---|
| 1299 | if (replaced >= 0) { |
---|
| 1300 | owl_editwin_replace(e, replaced, "\n"); |
---|
| 1301 | } |
---|
| 1302 | oe_restore_excursion(e, &x); |
---|
| 1303 | } |
---|
| 1304 | |
---|
| 1305 | if (replaced >= 0 && (c == ' ' || c == '\t')) |
---|
| 1306 | return; /* our work here is done */ |
---|
| 1307 | |
---|
[6c171f1] | 1308 | tmp[g_unichar_to_utf8(c, tmp)] = '\0'; |
---|
[ebf0128] | 1309 | owl_editwin_replace(e, 0, tmp); |
---|
| 1310 | } |
---|
| 1311 | } |
---|
| 1312 | |
---|
| 1313 | void owl_editwin_process_char(owl_editwin *e, owl_input j) |
---|
| 1314 | { |
---|
[5b5f3e6] | 1315 | if (j.ch == ERR) |
---|
| 1316 | return; |
---|
[fac5463] | 1317 | /* Ignore ncurses control characters. */ |
---|
[e20d8179] | 1318 | if (j.ch < 0x100) { |
---|
[ebf0128] | 1319 | oe_insert_char(e, j.uch); |
---|
[fac5463] | 1320 | } |
---|
| 1321 | } |
---|
| 1322 | |
---|
[e19eb97] | 1323 | const char *owl_editwin_get_text(owl_editwin *e) |
---|
[c9334b1] | 1324 | { |
---|
[7d4fbcd] | 1325 | return(e->buff+e->lock); |
---|
| 1326 | } |
---|
| 1327 | |
---|
[d41294a] | 1328 | char *owl_editwin_get_region(owl_editwin *e) |
---|
| 1329 | { |
---|
| 1330 | int start, end; |
---|
| 1331 | start = e->index; |
---|
| 1332 | end = e->mark; |
---|
| 1333 | if(start > end) { |
---|
| 1334 | int tmp = end; |
---|
| 1335 | end = start; |
---|
| 1336 | start = tmp; |
---|
| 1337 | } |
---|
| 1338 | |
---|
| 1339 | return oe_chunk(e, start, end); |
---|
| 1340 | } |
---|
| 1341 | |
---|
[77f605d] | 1342 | int owl_editwin_get_echochar(owl_editwin *e) |
---|
| 1343 | { |
---|
[a556caa] | 1344 | return e->echochar; |
---|
| 1345 | } |
---|
[77f605d] | 1346 | |
---|
| 1347 | static char *oe_chunk(owl_editwin *e, int start, int end) |
---|
| 1348 | { |
---|
| 1349 | char *p; |
---|
| 1350 | |
---|
| 1351 | p = owl_malloc(end - start + 1); |
---|
| 1352 | memcpy(p, e->buff + start, end - start); |
---|
| 1353 | p[end - start] = 0; |
---|
| 1354 | |
---|
| 1355 | return p; |
---|
| 1356 | } |
---|
| 1357 | |
---|
[d41294a] | 1358 | /* |
---|
| 1359 | * The only guarantee made about these values is that comparisons |
---|
| 1360 | * between them, as well as comparison between multiple calls to these |
---|
| 1361 | * functions without modifying the editwin in-between, are meaningful. |
---|
| 1362 | */ |
---|
| 1363 | |
---|
| 1364 | int owl_editwin_get_point(owl_editwin *e) |
---|
| 1365 | { |
---|
| 1366 | return e->index; |
---|
| 1367 | } |
---|
| 1368 | |
---|
| 1369 | int owl_editwin_get_mark(owl_editwin *e) |
---|
| 1370 | { |
---|
| 1371 | return e->mark; |
---|
| 1372 | } |
---|
| 1373 | |
---|
[2f21a41] | 1374 | |
---|
| 1375 | /* |
---|
| 1376 | * Local Variables: |
---|
| 1377 | * mode:C |
---|
| 1378 | * c-basic-offset:2 |
---|
| 1379 | * End: |
---|
| 1380 | */ |
---|