source: editwin.c @ 84027015

barnowl_perlaimdebianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 84027015 was 84027015, checked in by Alejandro R. Sedeño <asedeno@mit.edu>, 16 years ago
editwin.c - lots of utf-8 cleanup that I had been putting off. util.c - a can we break here'' function based on perl's Text::WrapI18N
  • Property mode set to 100644
File size: 28.1 KB
Line 
1#include "owl.h"
2#include <stdlib.h>
3#include <unistd.h>
4#include <string.h>
5#include <ctype.h>
6
7static const char fileIdent[] = "$Id$";
8
9#define INCR 5000
10
11/* initialize the editwin e.
12 * 'win' is an already initialzed curses window that will be used by editwin
13 */
14void owl_editwin_init(owl_editwin *e, WINDOW *win, int winlines, int wincols, int style, owl_history *hist)
15{
16  e->buff=owl_malloc(INCR); 
17  e->buff[0]='\0';
18  e->bufflen=0;
19  e->hist=hist;
20  e->allocated=INCR;
21  e->buffx=0;
22  e->buffy=0;
23  e->topline=0;
24  e->winlines=winlines;
25  e->wincols=wincols;
26  e->fillcol=owl_editwin_limit_maxcols(wincols-7, owl_global_get_edit_maxfillcols(&g));
27  e->wrapcol=owl_editwin_limit_maxcols(wincols-7, owl_global_get_edit_maxwrapcols(&g));
28  e->curswin=win;
29  e->style=style;
30  if ((style!=OWL_EDITWIN_STYLE_MULTILINE) &&
31      (style!=OWL_EDITWIN_STYLE_ONELINE)) {
32    e->style=OWL_EDITWIN_STYLE_MULTILINE;
33  }
34  e->lock=0;
35  e->dotsend=0;
36  e->echochar='\0';
37
38  /*
39    // We get initialized multiple times, but we need to hold on to
40    // the callbacks, so we can't NULL them here.
41    e->command = NULL;
42    e->callback = NULL;
43    e->cbdata = NULL;
44  */
45  if (win) werase(win);
46}
47
48void owl_editwin_set_curswin(owl_editwin *e, WINDOW *w, int winlines, int wincols)
49{
50  e->curswin=w;
51  e->winlines=winlines;
52  e->wincols=wincols;
53  e->fillcol=owl_editwin_limit_maxcols(wincols-7, owl_global_get_edit_maxfillcols(&g));
54  e->wrapcol=owl_editwin_limit_maxcols(wincols-7, owl_global_get_edit_maxwrapcols(&g));
55}
56
57/* echo the character 'ch' for each normal character keystroke,
58 * excepting locktext.  This is useful for entering passwords etc.  If
59 * ch=='\0' characters are echo'd normally
60 */
61void owl_editwin_set_echochar(owl_editwin *e, int ch)
62{
63  e->echochar=ch;
64}
65
66WINDOW *owl_editwin_get_curswin(owl_editwin *e)
67{
68  return(e->curswin);
69}
70
71void owl_editwin_set_history(owl_editwin *e, owl_history *h)
72{
73  e->hist=h;
74}
75
76owl_history *owl_editwin_get_history(owl_editwin *e)
77{
78  return(e->hist);
79}
80
81void owl_editwin_set_dotsend(owl_editwin *e)
82{
83  e->dotsend=1;
84}
85
86void owl_editwin_set_command(owl_editwin *e, char *command) {
87  if(e->command) owl_free(e->command);
88  e->command = owl_strdup(command);
89}
90
91char *owl_editwin_get_command(owl_editwin *e) {
92  if(e->command) return e->command;
93  return "";
94}
95
96void owl_editwin_set_callback(owl_editwin *e, void (*cb)(owl_editwin*)) {
97  e->callback = cb;
98}
99
100void (*owl_editwin_get_callback(owl_editwin *e))(owl_editwin*) {
101  return e->callback;
102}
103
104void owl_editwin_set_cbdata(owl_editwin *e, void *data) {
105  e->cbdata = data;
106}
107
108void* owl_editwin_get_cbdata(owl_editwin *e) {
109  return e->cbdata;
110}
111
112void owl_editwin_do_callback(owl_editwin *e) {
113  void (*cb)(owl_editwin*);
114  cb=owl_editwin_get_callback(e);
115  if(!cb) {
116    owl_function_error("Internal error: No editwin callback!");
117  } else {
118    // owl_function_error("text: |%s|", owl_editwin_get_text(e));
119    cb(e);
120  }
121}
122
123int owl_editwin_limit_maxcols(int v, int maxv)
124{
125  if (maxv > 5 && v > maxv) {
126    return(maxv);
127  } else {
128    return(v);
129  }
130}
131
132/* set text to be 'locked in' at the beginning of the buffer, any
133 * previous text (including locked text) will be overwritten
134 */
135void owl_editwin_set_locktext(owl_editwin *e, char *text)
136{
137 
138  int x, y;
139
140  x=e->buffx;
141  y=e->buffy;
142  e->buffx=0;
143  e->buffy=0;
144  owl_editwin_overwrite_string(e, text);
145  owl_editwin_overwrite_char(e, '\0');
146  e->lock=strlen(text);
147  /* if (text[e->lock-1]=='\n') e->lock--; */
148  /*  e->buffx=x; */
149  /*  e->buffy=y; */
150  _owl_editwin_set_xy_by_index(e, e->lock);
151  owl_editwin_redisplay(e, 0);
152}
153
154int owl_editwin_get_style(owl_editwin *e)
155{
156  return(e->style);
157}
158
159void owl_editwin_new_style(owl_editwin *e, int newstyle, owl_history *h)
160{
161  char *ptr;
162
163  owl_editwin_set_history(e, h);
164  if (e->style==newstyle) return;
165
166  if (newstyle==OWL_EDITWIN_STYLE_MULTILINE) {
167    e->style=newstyle;
168  } else if (newstyle==OWL_EDITWIN_STYLE_ONELINE) {
169    e->style=newstyle;
170
171    /* nuke everything after the first line */
172    if (e->bufflen > 0) {
173      ptr=strchr(e->buff, '\n')-1;
174      if (ptr) {
175        e->bufflen=ptr - e->buff;
176        e->buff[e->bufflen]='\0';
177        e->buffx=0;
178        e->buffy=0;
179      }
180    }
181  }
182}
183
184/* completly reinitialize the buffer */
185void owl_editwin_fullclear(owl_editwin *e)
186{
187  owl_free(e->buff);
188  owl_editwin_init(e, e->curswin, e->winlines, e->wincols, e->style, e->hist);
189}
190
191/* clear all text except for locktext and put the cursor at the
192 * beginning
193 */
194void owl_editwin_clear(owl_editwin *e)
195{
196
197  int lock;
198  int dotsend=e->dotsend;
199  char *locktext=NULL;
200  char echochar=e->echochar;
201
202  lock=0;
203  if (e->lock > 0) {
204    lock=1;
205
206    locktext=owl_malloc(e->lock+20);
207    strncpy(locktext, e->buff, e->lock);
208    locktext[e->lock]='\0';
209  }
210
211  owl_free(e->buff);
212  owl_editwin_init(e, e->curswin, e->winlines, e->wincols, e->style, e->hist);
213
214  if (lock > 0) {
215    owl_editwin_set_locktext(e, locktext);
216  }
217  if (dotsend) {
218    owl_editwin_set_dotsend(e);
219  }
220  if (echochar) {
221    owl_editwin_set_echochar(e, echochar);
222  }
223
224  if (locktext) owl_free(locktext);
225  owl_editwin_adjust_for_locktext(e);
226}
227
228/* malloc more space for the buffer */
229void _owl_editwin_addspace(owl_editwin *e)
230{
231  e->buff=owl_realloc(e->buff, e->allocated+INCR);
232  if (!e->buff) {
233    /* error */
234    return;
235  }
236  e->allocated+=INCR;
237}
238
239void owl_editwin_recenter(owl_editwin *e)
240{
241  e->topline=e->buffy-(e->winlines/2);
242  if (e->topline<0) e->topline=0;
243  if (e->topline>owl_editwin_get_numlines(e)) e->topline=owl_editwin_get_numlines(e);
244}
245
246/* regenerate the text on the curses window */
247/* if update == 1 then do a doupdate(), otherwise do not */
248void owl_editwin_redisplay(owl_editwin *e, int update)
249{
250 
251  char *ptr1, *ptr2, *ptr3, *buff;
252  int i;
253
254  werase(e->curswin);
255  wmove(e->curswin, 0, 0);
256
257  /* start at topline */
258  ptr1 = e->buff;
259  for (i = 0; i < e->topline; i++) {
260    ptr2 = strchr(ptr1, '\n');
261    if (!ptr2) {
262      /* we're already on the last line */
263      break;
264    }
265    ptr1 = ptr2 + 1;
266  }
267  /* ptr1 now stores the starting point */
268
269  /* find the ending point and store it in ptr3 */
270  ptr2 = ptr1;
271  ptr3 = ptr1;
272  for (i = 0; i < e->winlines; i++) {
273    ptr3 = strchr(ptr2, '\n');
274    if (!ptr3) {
275      /* we've hit the last line */
276      /* print everything to the end */
277      ptr3 = e->buff + e->bufflen - 1;
278      ptr3--;
279      break;
280    }
281    ptr2 = ptr3 + 1;
282  }
283  ptr3 += 2;
284
285  buff = owl_malloc(ptr3 - ptr1 + 50);
286  strncpy(buff, ptr1, ptr3 - ptr1);
287  buff[ptr3 - ptr1] = '\0';
288  if (e->echochar == '\0') {
289    waddstr(e->curswin, buff);
290  } else {
291    /* translate to echochar, *except* for the locktext */
292    int len;
293    int dolocklen = e->lock - (ptr1 - e->buff);
294    char *locktext;
295    char tmp = e->buff[dolocklen];
296
297    e->buff[dolocklen] = '\0';
298    locktext = owl_strdup(e->buff);
299    e->buff[dolocklen] = tmp;
300
301    waddstr(e->curswin, locktext);
302   
303    len = strlen(buff);
304    for (i = 0; i < len-dolocklen; i++) {
305      waddch(e->curswin, e->echochar);
306    }
307  }
308  wmove(e->curswin, e->buffy-e->topline, e->buffx + _owl_editwin_cursor_adjustment(e));
309  wnoutrefresh(e->curswin);
310  if (update == 1) {
311    doupdate();
312  }
313  owl_free(buff);
314}
315
316/* Remove n bytes at cursor. */
317void _owl_editwin_remove_bytes(owl_editwin *e, int n) /*noproto*/
318{
319  int i = _owl_editwin_get_index_from_xy(e) + n;
320  for (; i < e->bufflen; i++) {
321    e->buff[i-n] = e->buff[i];
322  }
323 
324  e->bufflen -= n;
325  e->buff[e->bufflen] = '\0';
326}
327
328/* Insert n bytes at cursor.*/
329void _owl_editwin_insert_bytes(owl_editwin *e, int n) /*noproto*/
330{
331  int i, z;
332 
333  if ((e->bufflen + n) > (e->allocated - 5)) {
334    _owl_editwin_addspace(e);
335  }
336
337  e->bufflen += n;
338  e->buff[e->bufflen] = '\0';
339 
340  z = _owl_editwin_get_index_from_xy(e);
341  for (i = e->bufflen - 1; i > z; i--) {
342    e->buff[i] = e->buff[i - n];
343  }
344}
345
346
347/* linewrap the word just before the cursor.
348 * returns 0 on success
349 * returns -1 if we could not wrap.
350 */
351int _owl_editwin_linewrap_word(owl_editwin *e)
352{
353  int x, y;
354  int i;
355  char *ptr1, *start;
356  gunichar c;
357
358  /* saving values */
359  x = e->buffx;
360  y = e->buffy;
361  start = e->buff + e->lock;
362
363  ptr1 = e->buff + _owl_editwin_get_index_from_xy(e);
364  ptr1 = g_utf8_find_prev_char(start, ptr1);
365
366  while (ptr1) {
367    c = g_utf8_get_char(ptr1);
368    if (owl_util_can_break_after(c)) {
369      if (c != ' ') {
370        _owl_editwin_set_xy_by_index(e, ptr1 - e->buff);
371        owl_editwin_key_right(e);
372        /* _owl_editwin_insert_bytes may move e->buff. */
373        i = ptr1 - e->buff;
374        _owl_editwin_insert_bytes(e,1);
375        ptr1 = e->buff + i;
376      }
377      *ptr1 = '\n';
378      return 0;
379    }
380    ptr1 = g_utf8_find_prev_char(start, ptr1);
381  }
382  return -1;
383}
384
385/* insert a character at the current point (shift later
386 * characters over)
387 */
388void owl_editwin_insert_char(owl_editwin *e, gunichar c)
389{
390  int z, i, ret, len;
391  char tmp[6];
392  memset(tmp, '\0', 6);
393
394  /* \r is \n */
395  if (c == '\r') {
396    c = '\n';
397  }
398
399  if (c == '\n' && e->style == OWL_EDITWIN_STYLE_ONELINE) {
400    /* perhaps later this will change some state that allows the string
401       to be read */
402    return;
403  }
404
405  g_unichar_to_utf8(c, tmp);
406  len = strlen(tmp);
407
408  /* make sure there is enough memory for the new text */
409  if ((e->bufflen + len) > (e->allocated - 5)) {
410    _owl_editwin_addspace(e);
411  }
412
413  /* get the insertion point */
414  z = _owl_editwin_get_index_from_xy(e);
415
416  /* If we're going to insert at the last column do word wrapping, unless it's a \n */
417  if ((e->buffx + 1 == e->wrapcol) && (c != '\n')) {
418    ret = _owl_editwin_linewrap_word(e);
419    if (ret == -1) {
420      /* we couldn't wrap, insert a hard newline instead */
421      owl_editwin_insert_char(e, '\n');
422    }
423  }
424
425  /* shift all the other characters right */
426  if (z != e->bufflen) {
427    _owl_editwin_insert_bytes(e, len);
428  }
429
430  /* insert the new character */
431  for(i = 0; i < len; i++) {
432    e->buff[z + i] = tmp[i];
433  }
434
435  /* housekeeping */
436  e->bufflen += len;
437  e->buff[e->bufflen] = '\0';
438 
439  /* advance the cursor */
440  z += len;
441  _owl_editwin_set_xy_by_index(e, z);
442}
443
444/* overwrite the character at the current point with 'c' */
445void owl_editwin_overwrite_char(owl_editwin *e, gunichar c)
446{
447  int z, oldlen, newlen, i;
448  char tmp[6];
449  memset(tmp, '\0', 6);
450
451  /* \r is \n */
452  if (c == '\r') {
453    c = '\n';
454  }
455 
456  if (c == '\n' && e->style == OWL_EDITWIN_STYLE_ONELINE) {
457    /* perhaps later this will change some state that allows the string
458       to be read */
459    return;
460  }
461
462  g_unichar_to_utf8(c, tmp);
463  newlen = strlen(tmp);
464
465  z = _owl_editwin_get_index_from_xy(e);
466  {
467    char *t = g_utf8_find_next_char(e->buff + z, NULL);
468    oldlen = (t ? (t - (e->buff + z)) : 0);
469  }
470
471  /* only if we are at the end of the buffer do we create new space here */
472  if (z == e->bufflen) {
473    if ((e->bufflen+newlen) > (e->allocated-5)) {
474      _owl_editwin_addspace(e);
475    }
476  }
477  /* if not at the end of the buffer, adjust based in char size difference. */ 
478  else if (oldlen > newlen) {
479    _owl_editwin_remove_bytes(e, oldlen-newlen);
480  }
481  else /* oldlen < newlen */ {
482    _owl_editwin_insert_bytes(e, newlen-oldlen);
483  }
484  /* Overwrite the old char*/
485  for (i = 0; i < newlen; i++) {
486    e->buff[z+i] = tmp[i];
487  }
488       
489  /* housekeeping */
490  if (z == e->bufflen) {
491    e->bufflen += newlen;
492    e->buff[e->bufflen] = '\0';
493  }
494 
495  /* advance the cursor */
496  z += newlen;
497  _owl_editwin_set_xy_by_index(e, z);
498}
499
500/* delete the character at the current point, following chars
501 * shift left.
502 */ 
503void owl_editwin_delete_char(owl_editwin *e)
504{
505  int z;
506  char *p1, *p2;
507  gunichar c;
508
509  if (e->bufflen == 0) return;
510 
511  /* get the deletion point */
512  z = _owl_editwin_get_index_from_xy(e);
513
514  if (z == e->bufflen) return;
515
516  p1 = e->buff + z;
517  p2 = g_utf8_next_char(p1);
518  c = g_utf8_get_char(p2);
519  while (g_unichar_ismark(c)) {
520    p2 = g_utf8_next_char(p2);
521    c = g_utf8_get_char(p2);
522  }
523  _owl_editwin_remove_bytes(e, p2-p1);
524}
525
526/* Swap the character at point with the character at point-1 and
527 * advance the pointer.  If point is at beginning of buffer do
528 * nothing.  If point is after the last character swap point-1 with
529 * point-2.  (Behaves as observed in tcsh and emacs). 
530 */
531void owl_editwin_transpose_chars(owl_editwin *e)
532{
533  int z;
534  char *p1, *p2, *p3, *tmp;
535
536  if (e->bufflen == 0) return;
537 
538  /* get the cursor point */
539  z = _owl_editwin_get_index_from_xy(e);
540
541  if (z == e->bufflen) {
542    /* point is after last character */
543    z--;
544  } 
545
546  if (z - 1 < e->lock) {
547    /* point is at beginning of buffer, do nothing */
548    return;
549  }
550
551  /* Transpose two utf-8 unicode glyphs. */
552  p1 = e->buff + z;
553
554  p2 = g_utf8_find_next_char(p1, NULL);
555  while (p2 != NULL && g_unichar_ismark(g_utf8_get_char(p2))) {
556    p2 = g_utf8_find_next_char(p2, NULL);
557  }
558  if (p2 == NULL) return;
559
560  p3 = g_utf8_find_prev_char(e->buff, p1);
561  while (p3 != NULL && g_unichar_ismark(g_utf8_get_char(p3))) {
562    p3 = g_utf8_find_prev_char(p3, NULL);
563  }
564  if (p3 == NULL) return;
565
566  tmp = owl_malloc(p2 - p3 + 5);
567  *tmp = '\0';
568  strncat(tmp, p1, p2 - p1);
569  strncat(tmp, p3, p1 - p3);
570  strncpy(p3, tmp, p2 - p3);
571  owl_free(tmp);
572  _owl_editwin_set_xy_by_index(e, p3 - e->buff);
573}
574
575/* insert 'string' at the current point, later text is shifted
576 * right
577 */
578void owl_editwin_insert_string(owl_editwin *e, char *string)
579{
580  char *p;
581  gunichar c;
582  if (!g_utf8_validate(string, -1, NULL)) {
583    owl_function_debugmsg("owl_editwin_insert_string: received non-utf-8 string.");
584    return;
585  }
586  p = string;
587  c = g_utf8_get_char(p);
588  while (c) {
589    _owl_editwin_process_char(e, c);
590    p = g_utf8_next_char(p);
591    c = g_utf8_get_char(p);
592  }
593}
594
595/* write 'string' at the current point, overwriting text that is
596 * already there
597 */
598
599void owl_editwin_overwrite_string(owl_editwin *e, char *string)
600{
601  char *p;
602  gunichar c;
603
604  if (!g_utf8_validate(string, -1, NULL)) {
605    owl_function_debugmsg("owl_editwin_overwrite_string: received non-utf-8 string.");
606    return;
607  }
608  p = string;
609  c = g_utf8_get_char(p);
610  while (c) {
611    owl_editwin_overwrite_char(e, c);
612    p = g_utf8_next_char(p);
613    c = g_utf8_get_char(p);
614  }
615}
616
617/* get the index into e->buff for the current cursor
618 * position.
619 */
620int _owl_editwin_get_index_from_xy(owl_editwin *e)
621{
622  int i;
623  char *ptr1, *ptr2;
624  gunichar c;
625
626  if (e->bufflen == 0) return(0);
627 
628  /* first go to the yth line */
629  ptr1 = e->buff;
630  for (i = 0; i < e->buffy; i++) {
631    ptr2= strchr(ptr1, '\n');
632    if (!ptr2) {
633      /* we're already on the last line */
634      break;
635    }
636    ptr1 = ptr2 + 1;
637  }
638
639  /* now go to the xth cell */
640  ptr2 = ptr1;
641  i = 0;
642  while (ptr2 != NULL && i < e->buffx && (ptr2 - e->buff) < e->bufflen) {
643    c = g_utf8_get_char(ptr2);
644    i += (c == '\n' ? 1 : mk_wcwidth(c));
645    ptr2 = g_utf8_next_char(ptr2);
646  }
647  while(ptr2 != NULL && g_unichar_ismark(g_utf8_get_char(ptr2))) {
648    ptr2 = g_utf8_next_char(ptr2);
649  }
650  if (ptr2 == NULL) return e->bufflen;
651  return(ptr2 - e->buff);
652}
653
654/* We assume x,y are not set to point to a mid-char */
655gunichar _owl_editwin_get_char_at_xy(owl_editwin *e)
656{
657  return g_utf8_get_char(e->buff + _owl_editwin_get_index_from_xy(e));
658}
659
660
661void _owl_editwin_set_xy_by_index(owl_editwin *e, int index)
662{
663  char *ptr1, *ptr2, *target;
664  gunichar c;
665
666  e->buffx = 0;
667  e->buffy = 0;
668
669  ptr1 = e->buff;
670  target = ptr1 + index;
671  /* target sanitizing */
672  if ((target[0] & 0x80) && (~target[0] & 0x40)) {
673    /* middle of a utf-8 character, back up to previous character. */
674    target = g_utf8_find_prev_char(e->buff, target);
675  }
676  c = g_utf8_get_char(target);
677  while (g_unichar_ismark(c) && target > e->buff) {
678    /* Adjust the target off of combining characters and the like. */
679    target = g_utf8_find_prev_char(e->buff, target);
680    c = g_utf8_get_char(target);
681  }
682  /* If we start with a mark, something is wrong.*/
683  if (g_unichar_ismark(c)) return;
684
685  /* Now our target should be acceptable. */
686  ptr2 = strchr(ptr1, '\n');
687  while (ptr2 != NULL && ptr2 < target) {
688    e->buffy++;
689    ptr1 = ptr2 + 1;
690    ptr2 = strchr(ptr1, '\n');
691  }
692  ptr2 = ptr1;
693  while (ptr2 != NULL && ptr2 < target) {
694    c = g_utf8_get_char(ptr2);
695    e->buffx += mk_wcwidth(c);
696    ptr2 = g_utf8_next_char(ptr2);
697  }
698}
699
700int _owl_editwin_cursor_adjustment(owl_editwin *e)
701{
702  char *ptr1, *ptr2;
703  gunichar c;
704  int x, i;
705
706  /* Find line */
707  ptr1 = e->buff;
708  ptr2 = strchr(ptr1, '\n');
709  for (i = 0; ptr2 != NULL && i < e->buffy; i++) {
710    ptr1 = ptr2 + 1;
711    ptr2 = strchr(ptr1, '\n');
712  }
713  ptr2 = ptr1;
714
715  /* Find char */
716  x = 0;
717  while (ptr2 != NULL && x < e->buffx) {
718    if (*ptr2 == '\n') return 0;
719    c = g_utf8_get_char(ptr2);
720    x += mk_wcwidth(c);
721    ptr2 = g_utf8_next_char(ptr2);
722  }
723 
724  /* calculate x offset */
725  return x - e->buffx;
726}
727
728void owl_editwin_adjust_for_locktext(owl_editwin *e)
729{
730  /* if we happen to have the cursor over locked text
731   * move it to be out of the locktext region */
732  if (_owl_editwin_get_index_from_xy(e) < e->lock) {
733    _owl_editwin_set_xy_by_index(e, e->lock);
734  }
735}
736
737void owl_editwin_backspace(owl_editwin *e)
738{
739  /* delete the char before the current one
740   * and shift later chars left
741   */
742  if (_owl_editwin_get_index_from_xy(e) > e->lock) {
743    owl_editwin_key_left(e);
744    owl_editwin_delete_char(e);
745  }
746  owl_editwin_adjust_for_locktext(e);
747}
748
749void owl_editwin_key_up(owl_editwin *e)
750{
751  if (e->buffy > 0) e->buffy--;
752  if (e->buffx >= owl_editwin_get_numcells_on_line(e, e->buffy)) {
753    e->buffx=owl_editwin_get_numcells_on_line(e, e->buffy);
754  }
755
756  /* do we need to scroll? */
757  if (e->buffy-e->topline < 0) {
758    e->topline-=e->winlines/2;
759  }
760
761  owl_editwin_adjust_for_locktext(e);
762}
763
764void owl_editwin_key_down(owl_editwin *e)
765{
766  /* move down if we can */
767  if (e->buffy+1 < owl_editwin_get_numlines(e)) e->buffy++;
768
769  /* if we're past the last character move back */
770  if (e->buffx >= owl_editwin_get_numcells_on_line(e, e->buffy)) {
771    e->buffx=owl_editwin_get_numcells_on_line(e, e->buffy);
772  }
773
774  /* do we need to scroll? */
775  if (e->buffy-e->topline > e->winlines) {
776    e->topline+=e->winlines/2;
777  }
778
779  /* adjust for locktext */
780  owl_editwin_adjust_for_locktext(e);
781}
782
783void owl_editwin_key_left(owl_editwin *e)
784{
785  int i;
786  char * p;
787  i = _owl_editwin_get_index_from_xy(e);
788  p = e->buff + i;
789  p = g_utf8_find_prev_char(e->buff, p);
790  while (p && g_unichar_ismark(g_utf8_get_char(p))) {
791    p = g_utf8_find_prev_char(e->buff, p);
792  }
793  if (p == NULL) p = e->buff;
794  _owl_editwin_set_xy_by_index(e, p - e->buff);
795
796  if (e->buffy - e->topline < 0) {
797    e->topline -= e->winlines / 2;
798  }
799
800  /* make sure to avoid locktext */
801  owl_editwin_adjust_for_locktext(e);
802}
803
804void owl_editwin_key_right(owl_editwin *e)
805{
806  int i;
807  char * p;
808  i = _owl_editwin_get_index_from_xy(e);
809  p = e->buff + i;
810  p = g_utf8_find_next_char(p, NULL);
811  while (p && g_unichar_ismark(g_utf8_get_char(p))) {
812    p = g_utf8_find_next_char(p, NULL);
813  }
814  if (p == NULL) {
815    _owl_editwin_set_xy_by_index(e, e->bufflen);
816  }
817  else {
818    _owl_editwin_set_xy_by_index(e, p - e->buff);
819  }
820
821  /* do we need to scroll down? */
822  if (e->buffy - e->topline >= e->winlines) {
823    e->topline += e->winlines / 2;
824  }
825}
826
827void owl_editwin_move_to_nextword(owl_editwin *e)
828{
829  int i, x;
830  gunichar c = '\0';
831
832  /* if we're starting on a space, find the first non-space */
833  i=_owl_editwin_get_index_from_xy(e);
834  if (e->buff[i]==' ') {
835    for (x=i; x<e->bufflen; x++) {
836      if (e->buff[x]!=' ' && e->buff[x]!='\n') {
837        _owl_editwin_set_xy_by_index(e, x);
838        break;
839      }
840    }
841  }
842
843  /* find the next space, newline or end of line and go
844     there, if already at the end of the line, continue on to the next */
845  i=owl_editwin_get_numcells_on_line(e, e->buffy);
846  c = _owl_editwin_get_char_at_xy(e);
847  if (e->buffx < i) {
848    /* move right till end of line */
849    while (e->buffx < i) {
850      owl_editwin_key_right(e);
851      c = _owl_editwin_get_char_at_xy(e);
852      if (c == ' ') return;
853      if (e->buffx == i) return;
854    }
855  } else if (e->buffx == i) {
856    /* try to move down */
857    if (e->style==OWL_EDITWIN_STYLE_MULTILINE) {
858      if (e->buffy+1 < owl_editwin_get_numlines(e)) {
859        e->buffx=0;
860        e->buffy++;
861        owl_editwin_move_to_nextword(e);
862      }
863    }
864  }
865}
866
867/* go backwards to the last non-space character
868 */
869void owl_editwin_move_to_previousword(owl_editwin *e)
870{
871  int i;
872  gunichar c;
873  char *ptr1, *ptr2;
874
875  /* are we already at the beginning of the word? */
876  c = _owl_editwin_get_char_at_xy(e);
877  i = _owl_editwin_get_index_from_xy(e);
878  ptr1 = e->buff + i;
879  if (*ptr1 != ' ' && *ptr1 != '\n' && *ptr1 != '\0' ) {
880    ptr1 = g_utf8_find_prev_char(e->buff, ptr1);
881    c = g_utf8_get_char(ptr1);
882    if (c == ' ' || c == '\n') {
883      owl_editwin_key_left(e);     
884    }
885  }
886
887  /* are we starting on a space character? */
888  i = _owl_editwin_get_index_from_xy(e);
889  while (e->buff[i] == ' ' || e->buff[i] == '\n' || e->buff[i] == '\0') {
890    /* find the first non-space */
891    owl_editwin_key_left(e);     
892    i = _owl_editwin_get_index_from_xy(e);
893  }
894
895  /* find the last non-space */
896  owl_editwin_key_left(e);
897  ptr1 = e->buff + _owl_editwin_get_index_from_xy(e);
898  while (ptr1 >= e->buff + e->lock) {
899    ptr2 = g_utf8_find_prev_char(e->buff, ptr1);
900    if (!ptr2) break;
901   
902    c = g_utf8_get_char(ptr2);
903    if (c == ' ' || c == '\n'){
904      break;
905    }
906    owl_editwin_key_left(e);
907    ptr1 = e->buff + _owl_editwin_get_index_from_xy(e);
908  }
909}
910
911
912void owl_editwin_delete_nextword(owl_editwin *e)
913{
914  char *ptr1, *start;
915  gunichar c;
916
917  if (e->bufflen==0) return;
918
919  start = ptr1 = e->buff + _owl_editwin_get_index_from_xy(e);
920  /* if we start out on a space character then jump past all the
921     spaces up first */
922  while (*ptr1 == ' ' || *ptr1 == '\n') {
923    ++ptr1;
924  }
925
926  /* then jump past the next word */
927 
928  while (ptr1 && ptr1 - e->buff < e->bufflen) {
929    c = g_utf8_get_char(ptr1);
930    if (c == ' ' || c == '\n' || c == '\0') break;
931    ptr1 = g_utf8_find_next_char(ptr1, NULL);
932  }
933
934  if (ptr1) { /* We broke on a space, */
935    ptr1 = g_utf8_find_next_char(ptr1, NULL);
936    if (ptr1) { /* and there's a character after it, */
937      /* nuke everything back to our starting point. */
938      _owl_editwin_remove_bytes(e, ptr1 - start);
939      return;
940    }
941  }
942 
943  /* If we get here, we ran out of string, drop what's left. */
944  *start = '\0';
945  e->bufflen = start - e->buff;
946}
947
948void owl_editwin_delete_previousword(owl_editwin *e)
949{
950  /* go backwards to the last non-space character, then delete chars */
951  int startpos, endpos;
952
953  startpos = _owl_editwin_get_index_from_xy(e);
954  owl_editwin_move_to_previousword(e);
955  endpos = _owl_editwin_get_index_from_xy(e);
956  _owl_editwin_remove_bytes(e, startpos-endpos);
957}
958
959void owl_editwin_delete_to_endofline(owl_editwin *e)
960{
961  int i;
962
963  if (owl_editwin_get_numchars_on_line(e, e->buffy) > e->buffx) {
964    /* normal line */
965    i=_owl_editwin_get_index_from_xy(e);
966    while(i < e->bufflen) {
967      if (e->buff[i]!='\n') {
968        owl_editwin_delete_char(e);
969      } else if ((e->buff[i]=='\n') && (i==e->bufflen-1)) {
970        owl_editwin_delete_char(e);
971      } else {
972        return;
973      }
974    }
975  } else if (e->buffy+1 < owl_editwin_get_numlines(e)) {
976    /* line with cursor at the end but not on very last line */
977    owl_editwin_key_right(e);
978    owl_editwin_backspace(e);
979  }
980}
981
982void owl_editwin_move_to_line_end(owl_editwin *e)
983{
984  e->buffx=owl_editwin_get_numcells_on_line(e, e->buffy);
985}
986
987void owl_editwin_move_to_line_start(owl_editwin *e)
988{
989  e->buffx=0;
990  owl_editwin_adjust_for_locktext(e);
991}
992
993void owl_editwin_move_to_end(owl_editwin *e)
994{
995  /* go to last char */
996  e->buffy=owl_editwin_get_numlines(e)-1;
997  e->buffx=owl_editwin_get_numcells_on_line(e, e->buffy);
998  owl_editwin_key_right(e);
999
1000  /* do we need to scroll? */
1001  /*
1002  if (e->buffy-e->topline > e->winlines) {
1003    e->topline+=e->winlines/2;
1004  }
1005  */
1006  owl_editwin_recenter(e);
1007}
1008
1009void owl_editwin_move_to_top(owl_editwin *e)
1010{
1011  _owl_editwin_set_xy_by_index(e, 0);
1012
1013  /* do we need to scroll? */
1014  e->topline=0;
1015
1016  owl_editwin_adjust_for_locktext(e);
1017}
1018
1019void owl_editwin_fill_paragraph(owl_editwin *e)
1020{
1021  int i, save;
1022
1023  /* save our starting point */
1024  save=_owl_editwin_get_index_from_xy(e);
1025
1026  /* scan back to the beginning of this paragraph */
1027  for (i=save; i>=e->lock; i--) {
1028    if ( (i<=e->lock) ||
1029         ((e->buff[i]=='\n') && (e->buff[i-1]=='\n'))) {
1030      _owl_editwin_set_xy_by_index(e, i+1);
1031      break;
1032    }
1033  }
1034
1035  /* main loop */
1036  while (1) {
1037    i = _owl_editwin_get_index_from_xy(e);
1038
1039    /* bail if we hit the end of the buffer */
1040    if (i >= e->bufflen || e->buff[i] == '\0') break;
1041
1042    /* bail if we hit the end of the paragraph */
1043    if (e->buff[i] == '\n' && e->buff[i+1] == '\n') break;
1044
1045    /* if we've travelled too far, linewrap */
1046    if ((e->buffx) >= e->fillcol) {
1047      _owl_editwin_linewrap_word(e);
1048    }
1049
1050    /* did we hit the end of a line too soon? */
1051    /* asedeno: Here we replace a newline with a space. We may want to
1052       consider removing the space if the characters to either side
1053       are CJK ideograms.*/
1054    i = _owl_editwin_get_index_from_xy(e);
1055    if (e->buff[i] == '\n' && e->buffx < e->fillcol - 1) {
1056      /* ********* we need to make sure we don't pull in a word that's too long ***********/
1057      e->buff[i]=' ';
1058    }
1059   
1060    /* fix spacing */
1061    i = _owl_editwin_get_index_from_xy(e);
1062    if (e->buff[i] == ' ' && e->buff[i+1] == ' ') {
1063      if (e->buff[i-1] == '.' || e->buff[i-1] == '!' || e->buff[i-1] == '?') {
1064        owl_editwin_key_right(e);
1065      } else {
1066        owl_editwin_delete_char(e);
1067        /* if we did this ahead of the save point, adjust it. Changing
1068           by one is fine here because we're only removing an ASCII
1069           space. */
1070        if (i < save) save--;
1071      }
1072    } else {
1073      owl_editwin_key_right(e);
1074    }
1075
1076  }
1077
1078  /* put cursor back at starting point */
1079  _owl_editwin_set_xy_by_index(e, save);
1080
1081  /* do we need to scroll? */
1082  if (e->buffy-e->topline < 0) {
1083    e->topline-=e->winlines/2;
1084  }
1085}
1086
1087/* returns true if only whitespace remains */
1088int owl_editwin_is_at_end(owl_editwin *e)
1089{
1090  int cur=_owl_editwin_get_index_from_xy(e);
1091  return (only_whitespace(e->buff+cur));
1092}
1093
1094int owl_editwin_check_dotsend(owl_editwin *e)
1095{
1096  char *p, *p_n, *p_p;
1097  gunichar c;
1098
1099  if (!e->dotsend) return(0);
1100
1101  p = g_utf8_find_prev_char(e->buff, e->buff + e->bufflen);
1102  p_n = g_utf8_find_next_char(p, NULL);
1103  p_p = g_utf8_find_prev_char(e->buff, p);
1104  c = g_utf8_get_char(p);
1105  while (p != NULL) {
1106    if (*p == '.'
1107        && p_p != NULL && (*p_p == '\n' || *p_p == '\r')
1108        && p_n != NULL && (*p_n == '\n' || *p_n == '\r')) {
1109      e->bufflen = p - e->buff;
1110      e->buff[e->bufflen] = '\0';
1111      return(1);
1112    }
1113    if (c != '\0' && !g_unichar_isspace(c)) return(0);
1114    p_n = p;
1115    p = p_p;
1116    c = g_utf8_get_char(p);
1117    p_p = g_utf8_find_prev_char(e->buff, p);
1118  }
1119  return(0);
1120}
1121
1122void owl_editwin_post_process_char(owl_editwin *e, owl_input j)
1123{
1124  /* check if we need to scroll down */
1125  if (e->buffy-e->topline >= e->winlines) {
1126    e->topline+=e->winlines/2;
1127  }
1128  if ((j.ch==13 || j.ch==10) && owl_editwin_check_dotsend(e)) {
1129    owl_command_editmulti_done(e);
1130    return;
1131  }
1132  owl_editwin_redisplay(e, 0); 
1133}
1134
1135void _owl_editwin_process_char(owl_editwin *e, gunichar j)
1136{
1137  if (!(g_unichar_iscntrl(j) && (j != 10) && (j != 13))) {
1138    owl_editwin_insert_char(e, j);
1139  }
1140}
1141
1142
1143void owl_editwin_process_char(owl_editwin *e, owl_input j)
1144{
1145  if (j.ch == ERR) return;
1146  /* Ignore ncurses control characters. */
1147  if (j.ch < 0x100) { 
1148    _owl_editwin_process_char(e, j.uch);
1149  }
1150}
1151
1152char *owl_editwin_get_text(owl_editwin *e)
1153{
1154  return(e->buff+e->lock);
1155}
1156
1157int owl_editwin_get_numchars_on_line(owl_editwin *e, int line)
1158{
1159  int i;
1160  char *ptr1, *ptr2;
1161
1162  if (e->bufflen==0) return(0);
1163 
1164  /* first go to the yth line */
1165  ptr1=e->buff;
1166  for (i=0; i<line; i++) {
1167    ptr2=strchr(ptr1, '\n');
1168    if (!ptr2) {
1169      /* we're already on the last line */
1170      return(0);
1171    }
1172    ptr1=ptr2+1;
1173  }
1174
1175  /* now count characters */
1176  i = 0;
1177  ptr2 = ptr1;
1178  while (ptr2 - e->buff < e->bufflen
1179         && *ptr2 != '\n') {
1180    ++i;
1181    ptr2 = g_utf8_next_char(ptr2);
1182  }
1183  return i;
1184}
1185
1186int owl_editwin_get_numcells_on_line(owl_editwin *e, int line)
1187{
1188  int i;
1189  char *ptr1, *ptr2;
1190  gunichar c;
1191
1192  if (e->bufflen==0) return(0);
1193 
1194  /* first go to the yth line */
1195  ptr1=e->buff;
1196  for (i=0; i<line; i++) {
1197    ptr2=strchr(ptr1, '\n');
1198    if (!ptr2) {
1199      /* we're already on the last line */
1200      return(0);
1201    }
1202    ptr1=ptr2+1;
1203  }
1204
1205  /* now count cells */
1206  i = 0;
1207  ptr2 = ptr1;
1208  while (ptr2 - e->buff < e->bufflen
1209         && *ptr2 != '\n') {
1210    c = g_utf8_get_char(ptr2);
1211    i += mk_wcwidth(c);
1212    ptr2 = g_utf8_next_char(ptr2);
1213  }
1214  return i;
1215}
1216
1217int owl_editwin_get_numlines(owl_editwin *e)
1218{
1219  return(owl_text_num_lines(e->buff));
1220}
1221
Note: See TracBrowser for help on using the repository browser.