remove stuffs
[wmaker-crm.git] / WINGs / wtext.c
blob60f6af8fbffaf98135ce31e2e010310e3390d161
2 /* WINGs WMText: multi-line/font/color/graphic text widget, by Nwanua. */
5 #include "WINGsP.h"
6 #include <ctype.h>
7 #include <X11/keysym.h>
8 #include <X11/Xatom.h>
10 #define DO_BLINK 0
12 /* TODO:
13 * - selection code... selects can be funny if it crosses over. use rect?
14 * - also inspect behaviour for WACenter and WARight
15 * - what if a widget grabs the click... howto say: "pressed me"?
16 * note that WMCreateEventHandler takes one data, but need widget & tPtr
17 * - FIX: graphix blocks MUST be skipped if monoFont even though they exist!
18 * - check if support for Horizontal Scroll is complete
19 * - assess danger of destroying widgets whose actions link to other pages
20 * - Tabs now are simply replaced by 4 spaces...
21 * - redo blink code to reduce paint event... use pixmap buffer...
22 * - add paragraph support (full) and '\n' code in getStream..
26 /* a Section is a section of a TextBlock that describes what parts
27 of a TextBlock has been laid out on which "line"...
28 o this greatly aids redraw, scroll and selection.
29 o this is created during layoutLine, but may be later modified.
30 o there may be many Sections per TextBlock, hence the array */
31 typedef struct {
32 unsigned int x, y; /* where to draw it from */
33 unsigned short w, h; /* its width and height */
34 unsigned short begin; /* where the layout begins */
35 unsigned short end ; /* where it ends */
36 unsigned short max_d; /* a quick hack for layOut if(laidOut) */
37 unsigned short last:1; /* is it the last section on a "line"? */
38 unsigned int _y:31; /* the "line" it and other textblocks are on */
39 } Section;
42 /* a TextBlock is a node in a doubly-linked list of TextBlocks containing:
43 o text for the block, color and font
44 o or a pointer to the pixmap
45 o OR a pointer to the widget and the (text) description for its graphic
48 typedef struct _TextBlock {
49 struct _TextBlock *next; /* next text block in linked list */
50 struct _TextBlock *prior; /* prior text block in linked list */
52 char *text; /* pointer to text (could be kanji) */
53 /* or to the object's description */
54 union {
55 WMFont *font; /* the font */
56 WMWidget *widget; /* the embedded widget */
57 WMPixmap *pixmap; /* the pixmap */
58 } d; /* description */
60 unsigned short used; /* number of chars in this block */
61 unsigned short allocated; /* size of allocation (in chars) */
62 WMColor *color; /* the color */
64 Section *sections; /* the region for layouts (a growable array) */
65 /* an _array_! of size _nsections_ */
67 unsigned short s_begin; /* where the selection begins */
68 unsigned short s_end; /* where it ends */
70 unsigned int first:1; /* first TextBlock in paragraph */
71 unsigned int blank:1; /* ie. blank paragraph */
72 unsigned int kanji:1; /* is of 16-bit characters or not */
73 unsigned int graphic:1; /* graphic or text: text=0 */
74 unsigned int object:1; /* embedded object or pixmap */
75 unsigned int underlined:1; /* underlined or not */
76 unsigned int selected:1; /* selected or not */
77 unsigned int nsections:8; /* over how many "lines" a TextBlock wraps */
78 int script:8; /* script in points: negative for subscript */
79 unsigned int marginN:8; /* which of the margins in the tPtr to use */
80 unsigned int nClicks:2; /* single, double, triple clicks */
81 unsigned int RESERVED:7;
82 } TextBlock;
85 /* I'm lazy: visible.h vs. visible.size.height :-) */
86 typedef struct {
87 int y, x, h, w;
88 } myRect;
91 typedef struct W_Text {
92 W_Class widgetClass; /* the class number of this widget */
93 W_View *view; /* the view referring to this instance */
95 WMRuler *ruler; /* the ruler widget to manipulate paragraphs */
97 WMScroller *vS; /* the vertical scroller */
98 unsigned int vpos; /* the current vertical position */
99 unsigned int prevVpos; /* the previous vertical position */
101 WMScroller *hS; /* the horizontal scroller */
102 unsigned int hpos; /* the current horizontal position */
103 unsigned int prevHpos; /* the previous horizontal position */
105 WMFont *dFont; /* the default font */
106 WMColor *dColor; /* the default color */
107 WMPixmap *dBulletPix; /* the default pixmap for bullets */
109 GC bgGC; /* the background GC to draw with */
110 GC fgGC; /* the foreground GC to draw with */
111 Pixmap db; /* the buffer on which to draw */
112 WMPixmap *bgPixmap; /* the background pixmap */
114 myRect visible; /* the actual rectangle that can be drawn into */
115 myRect cursor; /* the position and (height) of cursor */
116 myRect sel; /* the selection rectangle */
118 WMPoint clicked; /* where in the _document_ was clicked */
120 unsigned short tpos; /* the position in the currentTextBlock */
121 unsigned short docWidth; /* the width of the entire document */
122 unsigned int docHeight; /* the height of the entire document */
124 TextBlock *firstTextBlock;
125 TextBlock *lastTextBlock;
126 TextBlock *currentTextBlock;
128 WMArray *gfxItems; /* a nice array of graphic items */
130 #if DO_BLINK
131 WMHandlerID timerID; /* for nice twinky-winky */
132 #endif
134 WMAction *parser;
135 WMAction *writer;
136 WMTextDelegate *delegate;
137 Time lastClickTime;
139 WMRulerMargins *margins; /* an array of margins */
141 unsigned int nMargins:7; /* the total number of margins in use */
142 struct {
143 unsigned int monoFont:1; /* whether to ignore formats and graphic */
144 unsigned int focused:1; /* whether this instance has input focus */
145 unsigned int editable:1; /* "silly user, you can't edit me" */
146 unsigned int ownsSelection:1; /* "I ownz the current selection!" */
147 unsigned int pointerGrabbed:1;/* "heh, gib me pointer" */
148 unsigned int extendSelection:1; /* shift-drag to select more regions */
150 unsigned int rulerShown:1; /* whether the ruler is shown or not */
151 unsigned int frozen:1; /* whether screen updates are to be made */
152 unsigned int cursorShown:1; /* whether to show the cursor */
153 unsigned int acceptsGraphic:1;/* accept graphic when dropped */
154 unsigned int horizOnDemand:1;/* if a large image should appear*/
155 unsigned int needsLayOut:1; /* in case of Append/Deletes */
156 unsigned int ignoreNewLine:1;/* turn it into a ' ' in streams > 1 */
157 unsigned int indentNewLine:1;/* add " " for a newline typed */
158 unsigned int laidOut:1; /* have the TextBlocks all been laid out */
159 unsigned int waitingForSelection:1; /* I don't wanna wait in vain... */
160 unsigned int prepend:1; /* prepend=1, append=0 (for parsers) */
161 WMAlignment alignment:2; /* the alignment for text */
162 WMReliefType relief:3; /* the relief to display with */
163 unsigned int isOverGraphic:2;/* the mouse is over a graphic */
164 unsigned int first:1; /* for plain text parsing, newline? */
165 /* unsigned int RESERVED:1; */
166 } flags;
167 } Text;
170 #define NOTIFY(T,C,N,A) { WMNotification *notif = WMCreateNotification(N,T,A);\
171 if ((T)->delegate && (T)->delegate->C)\
172 (*(T)->delegate->C)((T)->delegate,notif);\
173 WMPostNotification(notif);\
174 WMReleaseNotification(notif);}
177 #define TYPETEXT 0
179 static void
180 output(char *ptr, int len)
182 char s[len+1];
183 memcpy(s, ptr, len);
184 s[len] = 0;
185 /* printf(" s is [%s] (%d)\n", s, strlen(s)); */
186 printf("[%s]\n", s);
190 #if DO_BLINK
191 #define CURSOR_BLINK_ON_DELAY 600
192 #define CURSOR_BLINK_OFF_DELAY 400
193 #endif
195 static char *default_bullet[] = {
196 "6 6 4 1",
197 " c None s None", ". c black",
198 "X c white", "o c #808080",
199 " ... ",
200 ".XX.. ",
201 ".XX..o",
202 ".....o",
203 " ...oo",
204 " ooo "};
206 static void handleEvents(XEvent *event, void *data);
207 static void layOutDocument(Text *tPtr);
208 static void updateScrollers(Text *tPtr);
211 static int
212 getMarginNumber(Text *tPtr, WMRulerMargins *margins)
214 unsigned int i=0;
216 for(i=0; i < tPtr->nMargins; i++) {
218 if(WMIsMarginEqualToMargin(&tPtr->margins[i], margins))
219 return i;
222 return -1;
227 static int
228 newMargin(Text *tPtr, WMRulerMargins *margins)
230 int n;
232 if (!margins) {
233 tPtr->margins[0].retainCount++;
234 return 0;
237 n = getMarginNumber(tPtr, margins);
239 if (n == -1) {
241 if(tPtr->nMargins >= 127) {
242 n = tPtr->nMargins-1;
243 return n;
246 tPtr->margins = wrealloc(tPtr->margins,
247 (++tPtr->nMargins)*sizeof(WMRulerMargins));
249 n = tPtr->nMargins-1;
250 tPtr->margins[n].left = margins->left;
251 tPtr->margins[n].first = margins->first;
252 tPtr->margins[n].body = margins->body;
253 tPtr->margins[n].right = margins->right;
254 /* for each tab... */
255 tPtr->margins[n].retainCount = 1;
256 } else {
257 tPtr->margins[n].retainCount++;
260 return n;
263 static Bool
264 sectionWasSelected(Text *tPtr, TextBlock *tb, XRectangle *rect, int s)
266 unsigned short i, w, lw, selected = False, extend = False;
267 myRect sel;
270 /* if selection rectangle completely encloses the section */
271 if ((tb->sections[s]._y >= tPtr->visible.y + tPtr->sel.y)
272 && (tb->sections[s]._y + tb->sections[s].h
273 <= tPtr->visible.y + tPtr->sel.y + tPtr->sel.h) ) {
274 sel.x = 0;
275 sel.w = tPtr->visible.w;
276 selected = extend = True;
278 /* or if it starts on a line and then goes further down */
279 } else if ((tb->sections[s]._y <= tPtr->visible.y + tPtr->sel.y)
280 && (tb->sections[s]._y + tb->sections[s].h
281 <= tPtr->visible.y + tPtr->sel.y + tPtr->sel.h)
282 && (tb->sections[s]._y + tb->sections[s].h
283 >= tPtr->visible.y + tPtr->sel.y) ) {
284 sel.x = WMAX(tPtr->sel.x, tPtr->clicked.x);
285 sel.w = tPtr->visible.w;
286 selected = extend = True;
288 /* or if it begins before a line, but ends on it */
289 } else if ((tb->sections[s]._y >= tPtr->visible.y + tPtr->sel.y)
290 && (tb->sections[s]._y + tb->sections[s].h
291 >= tPtr->visible.y + tPtr->sel.y + tPtr->sel.h)
292 && (tb->sections[s]._y
293 <= tPtr->visible.y + tPtr->sel.y + tPtr->sel.h) ) {
295 if (1||tPtr->sel.x + tPtr->sel.w > tPtr->clicked.x)
296 sel.w = tPtr->sel.x + tPtr->sel.w;
297 else
298 sel.w = tPtr->sel.x;
300 sel.x = 0;
301 selected = True;
303 /* or if the selection rectangle lies entirely within a line */
304 } else if ((tb->sections[s]._y <= tPtr->visible.y + tPtr->sel.y)
305 && (tPtr->sel.w >= 2)
306 && (tb->sections[s]._y + tb->sections[s].h
307 >= tPtr->visible.y + tPtr->sel.y + tPtr->sel.h) ) {
308 sel.x = tPtr->sel.x;
309 sel.w = tPtr->sel.w;
310 selected = True;
313 if (selected) {
314 selected = False;
316 /* if not within (modified) selection rectangle */
317 if ( tb->sections[s].x > sel.x + sel.w
318 || tb->sections[s].x + tb->sections[s].w < sel.x)
319 return False;
321 if (tb->graphic) {
322 if ( tb->sections[s].x + tb->sections[s].w <= sel.x + sel.w
323 && tb->sections[s].x >= sel.x) {
324 rect->width = tb->sections[s].w;
325 rect->x = tb->sections[s].x;
326 selected = True;
328 } else {
330 i = tb->sections[s].begin;
331 lw = 0;
333 if (0&& tb->sections[s].x >= sel.x) {
334 tb->s_begin = tb->sections[s].begin;
335 goto _selEnd;
338 while (++i <= tb->sections[s].end) {
340 w = WMWidthOfString(tb->d.font, &(tb->text[i-1]), 1);
341 lw += w;
343 if (lw + tb->sections[s].x >= sel.x
344 || i == tb->sections[s].end ) {
345 lw -= w;
346 i--;
347 tb->s_begin = (tb->selected? WMIN(tb->s_begin, i) : i);
348 break;
352 if (i > tb->sections[s].end) {
353 printf("WasSelected: (i > tb->sections[s].end) \n");
354 return False;
357 _selEnd: rect->x = tb->sections[s].x + lw;
358 lw = 0;
359 while(++i <= tb->sections[s].end) {
361 w = WMWidthOfString(tb->d.font, &(tb->text[i-1]), 1);
362 lw += w;
364 if (lw + rect->x >= sel.x + sel.w
365 || i == tb->sections[s].end ) {
367 if (i != tb->sections[s].end) {
368 lw -= w;
369 i--;
372 rect->width = lw;
373 if (tb->sections[s].last && sel.x + sel.w
374 >= tb->sections[s].x + tb->sections[s].w
375 && extend ) {
376 rect->width += (tPtr->visible.w - rect->x - lw);
379 tb->s_end = (tb->selected? WMAX(tb->s_end, i) : i);
380 selected = True;
381 break;
382 } } } }
384 if (selected) {
385 rect->y = tb->sections[s]._y - tPtr->vpos;
386 rect->height = tb->sections[s].h;
387 if(tb->graphic) { printf("graphic s%d h%d\n", s,tb->sections[s].h);}
389 return selected;
393 static void
394 setSelectionProperty(WMText *tPtr, WMFont *font, WMColor *color, int underlined)
396 TextBlock *tb;
397 int isFont=False;
399 tb = tPtr->firstTextBlock;
400 if (!tb || !tPtr->flags.ownsSelection)
401 return;
403 if(font && (!color || underlined==-1))
404 isFont = True;
406 while (tb) {
407 if (tPtr->flags.monoFont || tb->selected) {
409 if (tPtr->flags.monoFont || (tb->s_end - tb->s_begin == tb->used)
410 || tb->graphic) {
412 if(isFont) {
413 if(!tb->graphic) {
414 WMReleaseFont(tb->d.font);
415 tb->d.font = WMRetainFont(font);
417 } else if(underlined !=-1) {
418 tb->underlined = underlined;
419 } else {
420 WMReleaseColor(tb->color);
421 tb->color = WMRetainColor(color);
424 } else if (tb->s_end <= tb->used && tb->s_begin < tb->s_end) {
426 TextBlock *midtb, *otb = tb;
428 if(underlined != -1) {
429 midtb = (TextBlock *) WMCreateTextBlockWithText(tPtr,
430 &(tb->text[tb->s_begin]), tb->d.font, tb->color,
431 False, (tb->s_end - tb->s_begin));
432 } else {
433 midtb = (TextBlock *) WMCreateTextBlockWithText(tPtr,
434 &(tb->text[tb->s_begin]),
435 (isFont?font:tb->d.font),
436 (isFont?tb->color:color),
437 False, (tb->s_end - tb->s_begin));
441 if (midtb) {
442 if(underlined != -1) {
443 midtb->underlined = underlined;
444 } else {
445 midtb->underlined = otb->underlined;
448 midtb->selected = !True;
449 midtb->s_begin = 0;
450 midtb->s_end = midtb->used;
451 tPtr->currentTextBlock = tb;
452 WMAppendTextBlock(tPtr, midtb);
453 tb = tPtr->currentTextBlock;
456 if (otb->used - otb->s_end > 0) {
457 TextBlock *ntb;
458 ntb = (TextBlock *)
459 WMCreateTextBlockWithText(tPtr,
460 &(otb->text[otb->s_end]), otb->d.font, otb->color,
461 False, otb->used - otb->s_end);
463 if (ntb) {
464 ntb->underlined = otb->underlined;
465 ntb->selected = False;
466 WMAppendTextBlock(tPtr, ntb);
467 tb = tPtr->currentTextBlock;
471 if (midtb) {
472 tPtr->currentTextBlock = midtb;
475 otb->selected = False;
476 otb->used = otb->s_begin;
480 tb = tb->next;
483 tPtr->flags.needsLayOut = True;
484 WMThawText(tPtr);
486 /* in case the size changed... */
487 if(isFont && tPtr->currentTextBlock) {
488 TextBlock *tb = tPtr->currentTextBlock;
490 printf("%d %d %d\n", tPtr->sel.y, tPtr->sel.h, tPtr->sel.w);
491 tPtr->sel.y = 3 + tb->sections[0]._y;
492 tPtr->sel.h = tb->sections[tb->nsections-1]._y - tb->sections[0]._y;
493 tPtr->sel.w = tb->sections[tb->nsections-1].w;
494 if(tb->sections[tb->nsections-1]._y != tb->sections[0]._y) {
495 tPtr->sel.x = 0;
497 printf("%d %d %d\n\n\n", tPtr->sel.y, tPtr->sel.h, tPtr->sel.w);
503 static Bool
504 removeSelection(Text *tPtr)
506 TextBlock *tb = NULL;
507 Bool first = False;
509 if (!(tb = tPtr->firstTextBlock))
510 return False;
512 while (tb) {
513 if (tb->selected) {
514 if(!first && !tb->graphic) {
515 WMReleaseFont(tPtr->dFont);
516 tPtr->dFont = WMRetainFont(tb->d.font);
517 first = True;
520 if ( (tb->s_end - tb->s_begin == tb->used) || tb->graphic) {
521 tPtr->currentTextBlock = tb;
522 WMDestroyTextBlock(tPtr, WMRemoveTextBlock(tPtr));
523 tb = tPtr->currentTextBlock;
524 if (tb)
525 tPtr->tpos = 0;
526 continue;
528 } else if (tb->s_end <= tb->used) {
529 memmove(&(tb->text[tb->s_begin]),
530 &(tb->text[tb->s_end]), tb->used - tb->s_end);
531 tb->used -= (tb->s_end - tb->s_begin);
532 tb->selected = False;
533 tPtr->tpos = tb->s_begin;
538 tb = tb->next;
540 return True;
543 static TextBlock *
544 getFirstNonGraphicBlockFor(TextBlock *tb, short dir)
546 TextBlock *hold = tb;
548 if (!tb)
549 return NULL;
551 while (tb) {
552 if (!tb->graphic)
553 break;
554 tb = (dir? tb->next : tb->prior);
557 if(!tb) {
558 tb = hold;
559 while (tb) {
560 if (!tb->graphic)
561 break;
562 tb = (dir? tb->prior : tb->next);
566 if(!tb)
567 return NULL;
569 return tb;
573 static Bool
574 updateStartForCurrentTextBlock(Text *tPtr, int x, int y, int *dir,
575 TextBlock *tb)
577 if (tPtr->flags.monoFont && tb->graphic) {
578 tb = getFirstNonGraphicBlockFor(tb, *dir);
579 if(!tb)
580 return 0;
582 if (tb->graphic) {
583 tPtr->currentTextBlock =
584 (dir? tPtr->lastTextBlock : tPtr->firstTextBlock);
585 tPtr->tpos = 0;
586 return 0;
591 if(!tb->sections)
592 layOutDocument(tPtr);
593 if(!tb->sections)
594 return 0;
596 *dir = !(y <= tb->sections[0].y);
597 if(*dir) {
598 if ( ( y <= tb->sections[0]._y + tb->sections[0].h )
599 && (y >= tb->sections[0]._y ) ) {
600 /* if it's on the same line */
601 if(x < tb->sections[0].x)
602 *dir = 0;
604 } else {
605 if ( ( y <= tb->sections[tb->nsections-1]._y
606 + tb->sections[tb->nsections-1].h )
607 && (y >= tb->sections[tb->nsections-1]._y ) ) {
608 /* if it's on the same line */
609 if(x > tb->sections[tb->nsections-1].x)
610 *dir = 1;
614 return 1;
618 static void
619 paintText(Text *tPtr)
621 TextBlock *tb;
622 WMFont *font;
623 GC gc, greyGC;
624 char *text;
625 int len, y, c, s, done=False, prev_y=-23, dir /* 1 = down */;
626 WMScreen *scr = tPtr->view->screen;
627 Display *dpy = tPtr->view->screen->display;
628 Window win = tPtr->view->window;
630 if (!tPtr->view->flags.realized || !tPtr->db || tPtr->flags.frozen)
631 return;
633 XFillRectangle(dpy, tPtr->db, tPtr->bgGC,
634 0, 0, tPtr->visible.w, tPtr->visible.h);
636 if (tPtr->bgPixmap) {
637 WMDrawPixmap(tPtr->bgPixmap, tPtr->db,
638 (tPtr->visible.w-tPtr->visible.x-tPtr->bgPixmap->width)/2,
639 (tPtr->visible.h-tPtr->visible.y-tPtr->bgPixmap->height)/2);
642 if (! (tb = tPtr->currentTextBlock)) {
643 if (! (tb = tPtr->firstTextBlock)) {
644 goto _copy_area;
648 if (tPtr->flags.ownsSelection)
649 greyGC = WMColorGC(WMGrayColor(scr));
651 done = False;
655 /* first, which direction? Don't waste time looking all over,
656 since the parts to be drawn will most likely be near what
657 was previously drawn */
658 if(!updateStartForCurrentTextBlock(tPtr, 0, tPtr->vpos, &dir, tb))
659 goto _copy_area;
661 while(tb) {
663 if (tb->graphic && tPtr->flags.monoFont)
664 goto _getSibling;
666 if(dir) {
667 if(tPtr->vpos <= tb->sections[tb->nsections-1]._y
668 + tb->sections[tb->nsections-1].h)
669 break;
670 } else {
671 if(tPtr->vpos >= tb->sections[tb->nsections-1]._y
672 + tb->sections[tb->nsections-1].h)
673 break;
676 _getSibling:
677 if(dir) {
678 if(tb->next)
679 tb = tb->next;
680 else break;
681 } else {
682 if(tb->prior)
683 tb = tb->prior;
684 else break;
689 /* first, place all text that can be viewed */
690 while (!done && tb) {
692 /* paragraph diagnostic
693 if(tb->blank) {tb->text[0] = 'F'; } */
695 if (tb->graphic) {
696 tb = tb->next;
697 continue;
700 tb->selected = False;
702 for(s=0; s<tb->nsections && !done; s++) {
704 if (tb->sections[s]._y > tPtr->vpos + tPtr->visible.h) {
705 done = True;
706 break;
709 if ( tb->sections[s].y + tb->sections[s].h < tPtr->vpos)
710 continue;
712 if (tPtr->flags.monoFont) {
713 font = tPtr->dFont;
714 gc = tPtr->fgGC;
715 } else {
716 font = tb->d.font;
717 gc = WMColorGC(tb->color);
720 if (tPtr->flags.ownsSelection) {
721 XRectangle rect;
723 if ( sectionWasSelected(tPtr, tb, &rect, s)) {
724 tb->selected = True;
725 XFillRectangle(dpy, tPtr->db, greyGC,
726 rect.x, rect.y, rect.width, rect.height);
730 prev_y = tb->sections[s]._y;
732 len = tb->sections[s].end - tb->sections[s].begin;
733 text = &(tb->text[tb->sections[s].begin]);
734 y = tb->sections[s].y - tPtr->vpos;
735 WMDrawString(scr, tPtr->db, gc, font,
736 tb->sections[s].x - tPtr->hpos, y, text, len);
738 if (!tPtr->flags.monoFont && tb->underlined) {
739 XDrawLine(dpy, tPtr->db, gc,
740 tb->sections[s].x - tPtr->hpos,
741 y + font->y + 1,
742 tb->sections[s].x + tb->sections[s].w - tPtr->hpos,
743 y + font->y + 1);
748 tb = (!done? tb->next : NULL);
752 /* now , show all graphic items that can be viewed */
753 c = WMGetArrayItemCount(tPtr->gfxItems);
754 if (c > 0 && !tPtr->flags.monoFont) {
755 int j, h;
757 for(j=0; j<c; j++) {
758 tb = (TextBlock *) WMGetFromArray(tPtr->gfxItems, j);
760 /* if it's not viewable, and mapped, unmap it */
761 if (tb->sections[0]._y + tb->sections[0].h <= tPtr->vpos
762 || tb->sections[0]._y >= tPtr->vpos + tPtr->visible.h ) {
764 if(tb->object) {
765 if ((W_VIEW(tb->d.widget))->flags.mapped) {
766 WMUnmapWidget(tb->d.widget);
769 } else {
770 /* if it's viewable, and not mapped, map it */
771 if(tb->object) {
772 W_View *view = W_VIEW(tb->d.widget);
774 if (!view->flags.realized)
775 WMRealizeWidget(tb->d.widget);
776 if(!view->flags.mapped) {
777 XMapWindow(view->screen->display, view->window);
778 XFlush(view->screen->display);
779 view->flags.mapped = 1;
783 if (tPtr->flags.ownsSelection) {
784 XRectangle rect;
786 if ( sectionWasSelected(tPtr, tb, &rect, 0)) {
787 tb->selected = True;
788 XFillRectangle(dpy, tPtr->db, greyGC,
789 rect.x, rect.y, rect.width, rect.height);
793 if(tb->object) {
794 WMMoveWidget(tb->d.widget,
795 tb->sections[0].x + tPtr->visible.x - tPtr->hpos,
796 tb->sections[0].y + tPtr->visible.y - tPtr->vpos);
797 h = WMWidgetHeight(tb->d.widget) + 1;
799 } else {
800 WMDrawPixmap(tb->d.pixmap, tPtr->db,
801 tb->sections[0].x - tPtr->hpos,
802 tb->sections[0].y - tPtr->vpos);
803 h = tb->d.pixmap->height + 1;
807 if (!tPtr->flags.monoFont && tb->underlined) {
808 XDrawLine(dpy, tPtr->db, WMColorGC(tb->color),
809 tb->sections[0].x - tPtr->hpos,
810 tb->sections[0].y + h - tPtr->vpos,
811 tb->sections[0].x + tb->sections[0].w - tPtr->hpos,
812 tb->sections[0].y + h - tPtr->vpos);
813 } } } }
816 _copy_area:
817 if (tPtr->flags.editable && tPtr->flags.cursorShown
818 && tPtr->cursor.x != -23 && tPtr->flags.focused) {
819 int y = tPtr->cursor.y - tPtr->vpos;
820 XDrawLine(dpy, tPtr->db, tPtr->fgGC,
821 tPtr->cursor.x, y,
822 tPtr->cursor.x, y + tPtr->cursor.h);
825 XCopyArea(dpy, tPtr->db, win, tPtr->bgGC, 0, 0,
826 tPtr->visible.w, tPtr->visible.h,
827 tPtr->visible.x, tPtr->visible.y);
829 W_DrawRelief(scr, win, 0, 0,
830 tPtr->view->size.width, tPtr->view->size.height,
831 tPtr->flags.relief);
833 if (tPtr->ruler && tPtr->flags.rulerShown)
834 XDrawLine(dpy, win, tPtr->fgGC,
835 2, 42, tPtr->view->size.width-4, 42);
839 static void
840 mouseOverObject(Text *tPtr, int x, int y)
842 TextBlock *tb;
843 Bool result = False;
845 x -= tPtr->visible.x;
846 x += tPtr->hpos;
847 y -= tPtr->visible.y;
848 y += tPtr->vpos;
850 if(tPtr->flags.ownsSelection) {
851 if(tPtr->sel.x <= x
852 && tPtr->sel.y <= y
853 && tPtr->sel.x + tPtr->sel.w >= x
854 && tPtr->sel.y + tPtr->sel.h >= y) {
855 tPtr->flags.isOverGraphic = 1;
856 result = True;
861 if(!result) {
862 int j, c = WMGetArrayItemCount(tPtr->gfxItems);
864 if (c<1)
865 tPtr->flags.isOverGraphic = 0;
868 for(j=0; j<c; j++) {
869 tb = (TextBlock *) WMGetFromArray(tPtr->gfxItems, j);
871 if(!tb || !tb->sections) {
872 tPtr->flags.isOverGraphic = 0;
873 return;
876 if(!tb->object) {
877 if(tb->sections[0].x <= x
878 && tb->sections[0].y <= y
879 && tb->sections[0].x + tb->sections[0].w >= x
880 && tb->sections[0].y + tb->d.pixmap->height >= y ) {
881 tPtr->flags.isOverGraphic = 3;
882 result = True;
883 break;
891 if(!result)
892 tPtr->flags.isOverGraphic = 0;
895 tPtr->view->attribs.cursor = (result?
896 tPtr->view->screen->defaultCursor
897 : tPtr->view->screen->textCursor);
899 XSetWindowAttributes attribs;
900 attribs.cursor = tPtr->view->attribs.cursor;
901 XChangeWindowAttributes(tPtr->view->screen->display,
902 tPtr->view->window, CWCursor,
903 &attribs);
907 #if DO_BLINK
909 static void
910 blinkCursor(void *data)
912 Text *tPtr = (Text*)data;
914 if (tPtr->flags.cursorShown) {
915 tPtr->timerID = WMAddTimerHandler(CURSOR_BLINK_OFF_DELAY,
916 blinkCursor, data);
917 } else {
918 tPtr->timerID = WMAddTimerHandler(CURSOR_BLINK_ON_DELAY,
919 blinkCursor, data);
921 paintText(tPtr);
922 tPtr->flags.cursorShown = !tPtr->flags.cursorShown;
924 #endif
926 static void
927 updateCursorPosition(Text *tPtr)
929 TextBlock *tb = NULL;
930 int x, y, h, s;
932 if(tPtr->flags.needsLayOut)
933 layOutDocument(tPtr);
935 if (! (tb = tPtr->currentTextBlock)) {
936 if (! (tb = tPtr->firstTextBlock)) {
937 tPtr->tpos = 0;
938 tPtr->cursor.h = tPtr->dFont->height;
939 tPtr->cursor.y = 2;
940 tPtr->cursor.x = 2;
941 return;
946 if(tb->blank) {
947 tPtr->tpos = 0;
948 y = tb->sections[0].y;
949 h = tb->sections[0].h;
950 x = tb->sections[0].x;
952 } else if(tb->graphic) {
953 y = tb->sections[0].y;
954 h = tb->sections[0].h;
955 x = tb->sections[0].x;
957 } else {
958 if(tPtr->tpos > tb->used)
959 tPtr->tpos = tb->used;
961 for(s=0; s<tb->nsections-1; s++) {
963 if(tPtr->tpos >= tb->sections[s].begin
964 && tPtr->tpos <= tb->sections[s].end)
965 break;
968 y = tb->sections[s]._y;
969 h = tb->sections[s].h;
970 x = tb->sections[s].x + WMWidthOfString(
971 (tPtr->flags.monoFont?tPtr->dFont:tb->d.font),
972 &tb->text[tb->sections[s].begin],
973 tPtr->tpos - tb->sections[s].begin);
976 tPtr->cursor.y = y;
977 tPtr->cursor.h = h;
978 tPtr->cursor.x = x;
981 /* scroll the bars if the cursor is not visible */
982 if(tPtr->flags.editable && tPtr->cursor.x != -23) {
983 if(tPtr->cursor.y+tPtr->cursor.h
984 > tPtr->vpos+tPtr->visible.y+tPtr->visible.h) {
985 tPtr->vpos +=
986 (tPtr->cursor.y+tPtr->cursor.h+10
987 - (tPtr->vpos+tPtr->visible.y+tPtr->visible.h));
988 } else if(tPtr->cursor.y < tPtr->vpos+tPtr->visible.y) {
989 tPtr->vpos -= (tPtr->vpos+tPtr->visible.y-tPtr->cursor.y);
994 updateScrollers(tPtr);
998 static void
999 cursorToTextPosition(Text *tPtr, int x, int y)
1001 TextBlock *tb = NULL;
1002 int done=False, s, pos, len, _w, _y, dir=1; /* 1 == "down" */
1003 char *text;
1005 if(tPtr->flags.needsLayOut)
1006 layOutDocument(tPtr);
1008 y += (tPtr->vpos - tPtr->visible.y);
1009 if (y<0)
1010 y = 0;
1012 x -= (tPtr->visible.x - 2);
1013 if (x<0)
1014 x=0;
1016 /* clicked is relative to document, not window... */
1017 tPtr->clicked.x = x;
1018 tPtr->clicked.y = y;
1020 if (! (tb = tPtr->currentTextBlock)) {
1021 if (! (tb = tPtr->firstTextBlock)) {
1022 tPtr->tpos = 0;
1023 tPtr->cursor.h = tPtr->dFont->height;
1024 tPtr->cursor.y = 2;
1025 tPtr->cursor.x = 2;
1026 return;
1030 /* first, which direction? Most likely, newly clicked
1031 position will be close to previous */
1032 if(!updateStartForCurrentTextBlock(tPtr, x, y, &dir, tb))
1033 return;
1036 s = (dir? 0 : tb->nsections-1);
1037 if ( y >= tb->sections[s]._y
1038 && y <= tb->sections[s]._y + tb->sections[s].h) {
1039 goto _doneV;
1042 /* get the first (or last) section of the TextBlock that
1043 lies about the vertical click point */
1044 done = False;
1045 while (!done && tb) {
1047 if (tPtr->flags.monoFont && tb->graphic) {
1048 if( (dir?tb->next:tb->prior))
1049 tb = (dir?tb->next:tb->prior);
1050 continue;
1053 s = (dir? 0 : tb->nsections-1);
1054 while (!done && (dir? (s<tb->nsections) : (s>=0) )) {
1056 if ( (dir? (y <= tb->sections[s]._y + tb->sections[s].h) :
1057 ( y >= tb->sections[s]._y ) ) ) {
1058 done = True;
1059 } else {
1060 dir? s++ : s--;
1064 if (!done) {
1065 if ( (dir? tb->next : tb->prior)) {
1066 tb = (dir ? tb->next : tb->prior);
1067 } else {
1068 pos = tb->used;
1069 break; /* goto _doneH; */
1075 if (s<0 || s>=tb->nsections) {
1076 s = (dir? tb->nsections-1 : 0);
1079 _doneV:
1080 /* we have the line, which TextBlock on that line is it? */
1081 pos = (dir?0:tb->sections[s].begin);
1082 if (tPtr->flags.monoFont && tb->graphic) {
1083 TextBlock *hold = tb;
1084 tb = getFirstNonGraphicBlockFor(hold, dir);
1086 if(!tb) {
1087 tPtr->tpos = 0;
1088 tb = hold;
1089 s = 0;
1090 goto _doNothing;
1095 if(tb->blank)
1096 _w = 0;
1098 _y = tb->sections[s]._y;
1100 while (tb) {
1102 if (tPtr->flags.monoFont && tb->graphic) {
1103 tb = (dir ? tb->next : tb->prior);
1104 continue;
1107 if (dir) {
1108 if (tb->graphic) {
1109 if(tb->object)
1110 _w = WMWidgetWidth(tb->d.widget)-5;
1111 else
1112 _w = tb->d.pixmap->width-5;
1114 if (tb->sections[0].x + _w >= x)
1115 break;
1116 } else {
1117 text = &(tb->text[tb->sections[s].begin]);
1118 len = tb->sections[s].end - tb->sections[s].begin;
1119 _w = WMWidthOfString(tb->d.font, text, len);
1120 if (tb->sections[s].x + _w >= x)
1121 break;
1124 } else {
1125 if (tb->sections[s].x <= x)
1126 break;
1129 if ((dir? tb->next : tb->prior)) {
1130 TextBlock *nxt = (dir? tb->next : tb->prior);
1131 if (tPtr->flags.monoFont && nxt->graphic) {
1132 nxt = getFirstNonGraphicBlockFor(nxt, dir);
1133 if (!nxt) {
1134 pos = (dir?0:tb->sections[s].begin);
1135 tPtr->cursor.x = tb->sections[s].x;
1136 goto _doneH;
1140 if (_y != nxt->sections[dir?0:nxt->nsections-1]._y) {
1141 /* this must be the last/first on this line. stop */
1142 pos = (dir? tb->sections[s].end : 0);
1143 tPtr->cursor.x = tb->sections[s].x;
1144 if (!tb->blank) {
1145 if (tb->graphic) {
1146 if(tb->object)
1147 tPtr->cursor.x += WMWidgetWidth(tb->d.widget);
1148 else
1149 tPtr->cursor.x += tb->d.pixmap->width;
1150 } else if (pos > tb->sections[s].begin) {
1151 tPtr->cursor.x +=
1152 WMWidthOfString(tb->d.font,
1153 &(tb->text[tb->sections[s].begin]),
1154 pos - tb->sections[s].begin);
1157 goto _doneH;
1161 if ( (dir? tb->next : tb->prior)) {
1162 tb = (dir ? tb->next : tb->prior);
1163 } else {
1164 done = True;
1165 break;
1168 if (tb)
1169 s = (dir? 0 : tb->nsections-1);
1172 /* we have said TextBlock, now where within it? */
1173 if (tb) {
1174 if(tb->graphic) {
1175 int gw = (tb->object ?
1176 WMWidgetWidth(tb->d.widget) : tb->d.pixmap->width);
1178 tPtr->cursor.x = tb->sections[0].x;
1180 if(x > tPtr->cursor.x + gw/2) {
1181 pos = 1;
1182 printf("here x%d: %d\n", x, tPtr->cursor.x + gw/2);
1183 tPtr->cursor.x += gw;
1184 } else pos = 0;
1186 s = 0;
1187 goto _doneH;
1189 } else {
1190 WMFont *f = tb->d.font;
1191 len = tb->sections[s].end - tb->sections[s].begin;
1192 text = &(tb->text[tb->sections[s].begin]);
1194 _w = x - tb->sections[s].x;
1195 pos = 0;
1197 while (pos<len && WMWidthOfString(f, text, pos+1) < _w)
1198 pos++;
1200 tPtr->cursor.x = tb->sections[s].x +
1201 (pos? WMWidthOfString(f, text, pos) : 0);
1203 pos += tb->sections[s].begin;
1207 _doneH:
1208 tPtr->tpos = (pos<tb->used)? pos : tb->used;
1209 _doNothing:
1210 if (!tb)
1211 printf("...for this app will surely crash :-)\n");
1213 tPtr->currentTextBlock = tb;
1214 tPtr->cursor.h = tb->sections[s].h;
1215 tPtr->cursor.y = tb->sections[s]._y;
1217 /* scroll the bars if the cursor is not visible */
1218 if(tPtr->flags.editable && tPtr->cursor.x != -23) {
1219 if(tPtr->cursor.y+tPtr->cursor.h
1220 > tPtr->vpos+tPtr->visible.y+tPtr->visible.h) {
1221 tPtr->vpos +=
1222 (tPtr->cursor.y+tPtr->cursor.h+10
1223 - (tPtr->vpos+tPtr->visible.y+tPtr->visible.h));
1224 updateScrollers(tPtr);
1225 } else if(tPtr->cursor.y < tPtr->vpos+tPtr->visible.y) {
1226 tPtr->vpos -= (tPtr->vpos+tPtr->visible.y-tPtr->cursor.y);
1227 updateScrollers(tPtr);
1235 static void
1236 updateScrollers(Text *tPtr)
1239 if (tPtr->flags.frozen)
1240 return;
1242 if (tPtr->vS) {
1243 if (tPtr->docHeight < tPtr->visible.h) {
1244 WMSetScrollerParameters(tPtr->vS, 0, 1);
1245 tPtr->vpos = 0;
1246 } else {
1247 float hmax = (float)(tPtr->docHeight);
1248 WMSetScrollerParameters(tPtr->vS,
1249 ((float)tPtr->vpos)/(hmax - (float)tPtr->visible.h),
1250 (float)tPtr->visible.h/hmax);
1252 } else tPtr->vpos = 0;
1254 if (tPtr->hS) {
1255 if (tPtr->docWidth < tPtr->visible.w) {
1256 WMSetScrollerParameters(tPtr->hS, 0, 1);
1257 tPtr->hpos = 0;
1258 } else {
1259 float wmax = (float)(tPtr->docWidth);
1260 WMSetScrollerParameters(tPtr->hS,
1261 ((float)tPtr->hpos)/(wmax - (float)tPtr->visible.w),
1262 (float)tPtr->visible.w/wmax);
1264 } else tPtr->hpos = 0;
1267 static void
1268 scrollersCallBack(WMWidget *w, void *self)
1270 Text *tPtr = (Text *)self;
1271 Bool scroll = False;
1272 int which;
1274 if (!tPtr->view->flags.realized || tPtr->flags.frozen)
1275 return;
1277 if (w == tPtr->vS) {
1278 int height;
1279 height = tPtr->visible.h;
1281 which = WMGetScrollerHitPart(tPtr->vS);
1282 switch(which) {
1284 case WSDecrementLine:
1285 if (tPtr->vpos > 0) {
1286 if (tPtr->vpos>16) tPtr->vpos-=16;
1287 else tPtr->vpos=0;
1288 scroll=True;
1290 break;
1292 case WSIncrementLine: {
1293 int limit = tPtr->docHeight - height;
1294 if (tPtr->vpos < limit) {
1295 if (tPtr->vpos<limit-16) tPtr->vpos+=16;
1296 else tPtr->vpos=limit;
1297 scroll = True;
1300 break;
1302 case WSDecrementPage:
1303 if(((int)tPtr->vpos - (int)height) >= 0)
1304 tPtr->vpos -= height;
1305 else
1306 tPtr->vpos = 0;
1308 scroll = True;
1309 break;
1311 case WSIncrementPage:
1312 tPtr->vpos += height;
1313 if (tPtr->vpos > (tPtr->docHeight - height))
1314 tPtr->vpos = tPtr->docHeight - height;
1315 scroll = True;
1316 break;
1319 case WSKnob:
1320 tPtr->vpos = WMGetScrollerValue(tPtr->vS)
1321 * (float)(tPtr->docHeight - height);
1322 scroll = True;
1323 break;
1325 case WSKnobSlot:
1326 case WSNoPart:
1327 break;
1329 scroll = (tPtr->vpos != tPtr->prevVpos);
1330 tPtr->prevVpos = tPtr->vpos;
1334 if (w == tPtr->hS) {
1335 int width = tPtr->visible.w;
1337 which = WMGetScrollerHitPart(tPtr->hS);
1338 switch(which) {
1340 case WSDecrementLine:
1341 if (tPtr->hpos > 0) {
1342 if (tPtr->hpos>16) tPtr->hpos-=16;
1343 else tPtr->hpos=0;
1344 scroll=True;
1345 }break;
1347 case WSIncrementLine: {
1348 int limit = tPtr->docWidth - width;
1349 if (tPtr->hpos < limit) {
1350 if (tPtr->hpos<limit-16) tPtr->hpos+=16;
1351 else tPtr->hpos=limit;
1352 scroll = True;
1353 }}break;
1355 case WSDecrementPage:
1356 if(((int)tPtr->hpos - (int)width) >= 0)
1357 tPtr->hpos -= width;
1358 else
1359 tPtr->hpos = 0;
1361 scroll = True;
1362 break;
1364 case WSIncrementPage:
1365 tPtr->hpos += width;
1366 if (tPtr->hpos > (tPtr->docWidth - width))
1367 tPtr->hpos = tPtr->docWidth - width;
1368 scroll = True;
1369 break;
1372 case WSKnob:
1373 tPtr->hpos = WMGetScrollerValue(tPtr->hS)
1374 * (float)(tPtr->docWidth - width);
1375 scroll = True;
1376 break;
1378 case WSKnobSlot:
1379 case WSNoPart:
1380 break;
1382 scroll = (tPtr->hpos != tPtr->prevHpos);
1383 tPtr->prevHpos = tPtr->hpos;
1386 if (scroll) {
1387 updateScrollers(tPtr);
1388 paintText(tPtr);
1394 typedef struct {
1395 TextBlock *tb;
1396 unsigned short begin, end; /* what part of the text block */
1397 } myLineItems;
1400 static int
1401 layOutLine(Text *tPtr, myLineItems *items, int nitems, int x, int y)
1403 int i, j=0, lw = 0, line_height=0, max_d=0, len, n;
1404 WMFont *font;
1405 char *text;
1406 TextBlock *tb, *tbsame=NULL;
1408 if(!items || nitems == 0)
1409 return 0;
1411 for(i=0; i<nitems; i++) {
1412 tb = items[i].tb;
1414 if (tb->graphic) {
1415 if (!tPtr->flags.monoFont) {
1416 if(tb->object) {
1417 WMWidget *wdt = tb->d.widget;
1418 line_height = WMAX(line_height, WMWidgetHeight(wdt));
1419 if (tPtr->flags.alignment != WALeft)
1420 lw += WMWidgetWidth(wdt);
1421 } else {
1422 line_height = WMAX(line_height,
1423 tb->d.pixmap->height + max_d);
1424 if (tPtr->flags.alignment != WALeft)
1425 lw += tb->d.pixmap->width;
1429 } else {
1430 font = (tPtr->flags.monoFont)?tPtr->dFont : tb->d.font;
1431 max_d = WMAX(max_d, abs(font->height-font->y));
1432 line_height = WMAX(line_height, font->height + max_d);
1433 text = &(tb->text[items[i].begin]);
1434 len = items[i].end - items[i].begin;
1435 if (tPtr->flags.alignment != WALeft)
1436 lw += WMWidthOfString(font, text, len);
1440 if (tPtr->flags.alignment == WARight) {
1441 j = tPtr->visible.w - lw;
1442 } else if (tPtr->flags.alignment == WACenter) {
1443 j = (int) ((float)(tPtr->visible.w - lw))/2.0;
1446 for(i=0; i<nitems; i++) {
1447 tb = items[i].tb;
1449 if (tbsame == tb) { /* extend it, since it's on same line */
1450 tb->sections[tb->nsections-1].end = items[i].end;
1451 n = tb->nsections-1;
1452 } else {
1453 tb->sections = wrealloc(tb->sections,
1454 (++tb->nsections)*sizeof(Section));
1455 n = tb->nsections-1;
1456 tb->sections[n]._y = y + max_d;
1457 tb->sections[n].max_d = max_d;
1458 tb->sections[n].x = x+j;
1459 tb->sections[n].h = line_height;
1460 tb->sections[n].begin = items[i].begin;
1461 tb->sections[n].end = items[i].end;
1464 tb->sections[n].last = (i+1 == nitems);
1466 if (tb->graphic) {
1467 if (!tPtr->flags.monoFont) {
1468 if(tb->object) {
1469 WMWidget *wdt = tb->d.widget;
1470 tb->sections[n].y = max_d + y
1471 + line_height - WMWidgetHeight(wdt);
1472 tb->sections[n].w = WMWidgetWidth(wdt);
1473 } else {
1474 tb->sections[n].y = y + line_height
1475 + max_d - tb->d.pixmap->height;
1476 tb->sections[n].w = tb->d.pixmap->width;
1478 x += tb->sections[n].w;
1480 } else {
1481 font = (tPtr->flags.monoFont)? tPtr->dFont : tb->d.font;
1482 len = items[i].end - items[i].begin;
1483 text = &(tb->text[items[i].begin]);
1485 tb->sections[n].y = y+line_height-font->y;
1486 tb->sections[n].w =
1487 WMWidthOfString(font,
1488 &(tb->text[tb->sections[n].begin]),
1489 tb->sections[n].end - tb->sections[n].begin);
1491 x += WMWidthOfString(font, text, len);
1494 tbsame = tb;
1497 return line_height;
1502 static void
1503 layOutDocument(Text *tPtr)
1505 TextBlock *tb;
1506 myLineItems *items = NULL;
1507 unsigned int itemsSize=0, nitems=0, begin, end;
1508 WMFont *font;
1509 unsigned int x, y=0, lw = 0, width=0, bmargin;
1510 char *start=NULL, *mark=NULL;
1512 if ( tPtr->flags.frozen || (!(tb = tPtr->firstTextBlock)) )
1513 return;
1515 assert(tPtr->visible.w > 20);
1517 tPtr->docWidth = tPtr->visible.w;
1518 x = tPtr->margins[tb->marginN].first;
1519 bmargin = tPtr->margins[tb->marginN].body;
1521 /* only partial layOut needed: re-Lay only affected textblocks */
1522 if (tPtr->flags.laidOut) {
1523 tb = tPtr->currentTextBlock;
1525 /* search backwards for textblocks on same line */
1526 while (tb->prior) {
1527 if (!tb->sections || tb->nsections<1) {
1528 tb = tPtr->firstTextBlock;
1529 tPtr->flags.laidOut = False;
1530 y = 0;
1531 goto _layOut;
1534 if(!tb->prior->sections || tb->prior->nsections<1) {
1535 tb = tPtr->firstTextBlock;
1536 tPtr->flags.laidOut = False;
1537 y = 0;
1538 goto _layOut;
1541 if (tb->sections[0]._y !=
1542 tb->prior->sections[tb->prior->nsections-1]._y) {
1543 break;
1545 tb = tb->prior;
1548 if(tb->prior && tb->prior->sections && tb->prior->nsections>0) {
1549 y = tb->prior->sections[tb->prior->nsections-1]._y +
1550 tb->prior->sections[tb->prior->nsections-1].h -
1551 tb->prior->sections[tb->prior->nsections-1].max_d;
1552 } else {
1553 y = 0;
1557 _layOut:
1558 while (tb) {
1560 if (tb->sections && tb->nsections>0) {
1561 wfree(tb->sections);
1562 tb->sections = NULL;
1563 tb->nsections = 0;
1566 if (tb->blank && tb->next && !tb->next->first) {
1567 TextBlock *next = tb->next;
1568 tPtr->currentTextBlock = tb;
1569 WMDestroyTextBlock(tPtr, WMRemoveTextBlock(tPtr));
1570 tb = next;
1571 tb->first = True;
1572 continue;
1575 if (tb->first && tb != tPtr->firstTextBlock) {
1576 y += layOutLine(tPtr, items, nitems, x, y);
1577 x = tPtr->margins[tb->marginN].first;
1578 bmargin = tPtr->margins[tb->marginN].body;
1579 nitems = 0;
1580 lw = 0;
1583 if (tb->graphic) {
1584 if (!tPtr->flags.monoFont) {
1585 if(tb->object)
1586 width = WMWidgetWidth(tb->d.widget);
1587 else
1588 width = tb->d.pixmap->width;
1590 if (width > tPtr->docWidth)
1591 tPtr->docWidth = width;
1593 lw += width;
1594 if (lw >= tPtr->visible.w - x ) {
1595 y += layOutLine(tPtr, items, nitems, x, y);
1596 nitems = 0;
1597 x = bmargin;
1598 lw = width;
1601 if(nitems + 1> itemsSize) {
1602 items = wrealloc(items,
1603 (++itemsSize)*sizeof(myLineItems));
1606 items[nitems].tb = tb;
1607 items[nitems].begin = 0;
1608 items[nitems].end = 0;
1609 nitems++;
1612 } else if ((start = tb->text)) {
1613 begin = end = 0;
1614 font = tPtr->flags.monoFont?tPtr->dFont:tb->d.font;
1616 while (start) {
1617 mark = strchr(start, ' ');
1618 if (mark) {
1619 end += (int)(mark-start)+1;
1620 start = mark+1;
1621 } else {
1622 end += strlen(start);
1623 start = mark;
1626 if (end > tb->used)
1627 end = tb->used;
1629 if (end-begin > 0) {
1631 width = WMWidthOfString(font,
1632 &tb->text[begin], end-begin);
1634 /* if it won't fit, char wrap it */
1635 if (width >= tPtr->visible.w) {
1636 char *t = &tb->text[begin];
1637 int l=end-begin, i=0;
1638 do {
1639 width = WMWidthOfString(font, t, ++i);
1640 } while (width < tPtr->visible.w && i < l);
1641 if(i>2) i--;
1642 end = begin+i;
1643 start = &tb->text[end];
1646 lw += width;
1649 if (lw >= tPtr->visible.w - x) {
1650 y += layOutLine(tPtr, items, nitems, x, y);
1651 lw = width;
1652 x = bmargin;
1653 nitems = 0;
1656 if(nitems + 1 > itemsSize) {
1657 items = wrealloc(items,
1658 (++itemsSize)*sizeof(myLineItems));
1661 items[nitems].tb = tb;
1662 items[nitems].begin = begin;
1663 items[nitems].end = end;
1664 nitems++;
1666 begin = end;
1671 /* not yet fully ready. but is already VERY FAST for a 3Mbyte file ;-) */
1672 if(0&&tPtr->flags.laidOut
1673 && tb->next && tb->next->sections && tb->next->nsections>0
1674 && (tPtr->vpos + tPtr->visible.h
1675 < tb->next->sections[0]._y)) {
1676 if(tPtr->lastTextBlock->sections
1677 && tPtr->lastTextBlock->nsections > 0 ) {
1678 TextBlock *ltb = tPtr->lastTextBlock;
1679 int ly = ltb->sections[ltb->nsections-1]._y;
1680 int lh = ltb->sections[ltb->nsections-1].h;
1681 int ss, sd;
1683 lh += 1 + tPtr->visible.y + ltb->sections[ltb->nsections-1].max_d;
1684 printf("it's %d\n", tPtr->visible.y + ltb->sections[ltb->nsections-1].max_d);
1686 y += layOutLine(tPtr, items, nitems, x, y);
1687 ss= ly+lh-y;
1688 sd = tPtr->docHeight-y;
1690 printf("dif %d-%d: %d\n", ss, sd, ss-sd);
1691 y += tb->next->sections[0]._y-y;
1692 nitems = 0;
1693 printf("nitems%d\n", nitems);
1694 if(ss-sd!=0)
1695 y = tPtr->docHeight+ss-sd;
1697 break;
1698 } else {
1699 tPtr->flags.laidOut = False;
1703 tb = tb->next;
1707 if (nitems > 0)
1708 y += layOutLine(tPtr, items, nitems, x, y);
1710 if (tPtr->docHeight != y+10) {
1711 tPtr->docHeight = y+10;
1712 updateScrollers(tPtr);
1715 if(tPtr->docWidth > tPtr->visible.w && !tPtr->hS) {
1716 XEvent event;
1718 tPtr->flags.horizOnDemand = True;
1719 WMSetTextHasHorizontalScroller((WMText*)tPtr, True);
1720 event.type = Expose;
1721 handleEvents(&event, (void *)tPtr);
1723 } else if(tPtr->docWidth <= tPtr->visible.w
1724 && tPtr->hS && tPtr->flags.horizOnDemand ) {
1725 tPtr->flags.horizOnDemand = False;
1726 WMSetTextHasHorizontalScroller((WMText*)tPtr, False);
1729 tPtr->flags.laidOut = True;
1731 if(items && itemsSize > 0)
1732 wfree(items);
1734 if (W_VIEW_REALIZED(tPtr->view) && W_VIEW_MAPPED(tPtr->view))
1735 paintText(tPtr);
1739 static void
1740 textDidResize(W_ViewDelegate *self, WMView *view)
1742 Text *tPtr = (Text *)view->self;
1743 unsigned short w = tPtr->view->size.width;
1744 unsigned short h = tPtr->view->size.height;
1745 unsigned short rh = 0, vw = 0, rel;
1747 rel = (tPtr->flags.relief == WRFlat);
1749 if (tPtr->ruler && tPtr->flags.rulerShown) {
1750 WMMoveWidget(tPtr->ruler, 2, 2);
1751 WMResizeWidget(tPtr->ruler, w - 4, 40);
1752 rh = 40;
1755 if (tPtr->vS) {
1756 WMMoveWidget(tPtr->vS, 1 - (rel?1:0), rh + 1 - (rel?1:0));
1757 WMResizeWidget(tPtr->vS, 20, h - rh - 2 + (rel?2:0));
1758 vw = 20;
1759 WMSetRulerOffset(tPtr->ruler,22);
1760 } else WMSetRulerOffset(tPtr->ruler, 2);
1762 if (tPtr->hS) {
1763 if (tPtr->vS) {
1764 WMMoveWidget(tPtr->hS, vw, h - 21);
1765 WMResizeWidget(tPtr->hS, w - vw - 1, 20);
1766 } else {
1767 WMMoveWidget(tPtr->hS, vw+1, h - 21);
1768 WMResizeWidget(tPtr->hS, w - vw - 2, 20);
1772 tPtr->visible.x = (tPtr->vS)?24:4;
1773 tPtr->visible.y = (tPtr->ruler && tPtr->flags.rulerShown)?43:3;
1774 tPtr->visible.w = tPtr->view->size.width - tPtr->visible.x - 8;
1775 tPtr->visible.h = tPtr->view->size.height - tPtr->visible.y;
1776 tPtr->visible.h -= (tPtr->hS)?20:0;
1777 tPtr->margins[0].right = tPtr->visible.w;
1779 if (tPtr->view->flags.realized) {
1781 if (tPtr->db) {
1782 XFreePixmap(tPtr->view->screen->display, tPtr->db);
1783 tPtr->db = (Pixmap) NULL;
1786 if (tPtr->visible.w < 40)
1787 tPtr->visible.w = 40;
1788 if (tPtr->visible.h < 20)
1789 tPtr->visible.h = 20;
1791 if(!tPtr->db) {
1792 tPtr->db = XCreatePixmap(tPtr->view->screen->display,
1793 tPtr->view->window, tPtr->visible.w,
1794 tPtr->visible.h, tPtr->view->screen->depth);
1798 WMThawText(tPtr);
1801 W_ViewDelegate _TextViewDelegate =
1803 NULL,
1804 NULL,
1805 textDidResize,
1806 NULL,
1809 /* nice, divisble-by-16 blocks */
1810 #define reqBlockSize(requested) (requested + 16 - (requested%16))
1813 static void
1814 clearText(Text *tPtr)
1816 tPtr->vpos = tPtr->hpos = 0;
1817 tPtr->docHeight = tPtr->docWidth = 0;
1818 tPtr->cursor.x = -23;
1820 if (!tPtr->firstTextBlock)
1821 return;
1823 while (tPtr->currentTextBlock)
1824 WMDestroyTextBlock(tPtr, WMRemoveTextBlock(tPtr));
1826 tPtr->firstTextBlock = NULL;
1827 tPtr->currentTextBlock = NULL;
1828 tPtr->lastTextBlock = NULL;
1829 WMEmptyArray(tPtr->gfxItems);
1832 static void
1833 deleteTextInteractively(Text *tPtr, KeySym ksym)
1835 TextBlock *tb;
1836 Bool back = (Bool) (ksym == XK_BackSpace);
1837 Bool done = 1;
1838 Bool wasFirst = 0;
1840 if (!tPtr->flags.editable) {
1841 XBell(tPtr->view->screen->display, 0);
1842 return;
1845 if ( !(tb = tPtr->currentTextBlock) )
1846 return;
1848 if (tPtr->flags.ownsSelection) {
1849 if(removeSelection(tPtr))
1850 layOutDocument(tPtr);
1851 return;
1854 wasFirst = tb->first;
1855 if (back && tPtr->tpos < 1) {
1856 if (tb->prior) {
1857 if(tb->prior->blank) {
1858 tPtr->currentTextBlock = tb->prior;
1859 WMRemoveTextBlock(tPtr);
1860 tPtr->currentTextBlock = tb;
1861 tb->first = True;
1862 layOutDocument(tPtr);
1863 return;
1864 } else {
1865 if(tb->blank) {
1866 TextBlock *prior = tb->prior;
1867 tPtr->currentTextBlock = tb;
1868 WMRemoveTextBlock(tPtr);
1869 tb = prior;
1870 } else {
1871 tb = tb->prior;
1874 tPtr->tpos = tb->used;
1875 tPtr->currentTextBlock = tb;
1876 done = 1;
1877 if(wasFirst) {
1878 if(tb->next)
1879 tb->next->first = False;
1880 layOutDocument(tPtr);
1881 return;
1887 if ( (tb->used > 0) && ((back?tPtr->tpos > 0:1))
1888 && (tPtr->tpos <= tb->used) && !tb->graphic) {
1889 if (back)
1890 tPtr->tpos--;
1891 memmove(&(tb->text[tPtr->tpos]),
1892 &(tb->text[tPtr->tpos + 1]), tb->used - tPtr->tpos);
1893 tb->used--;
1894 done = 0;
1897 if ( (back? (tPtr->tpos < 1 && !done) : ( tPtr->tpos >= tb->used))
1898 || tb->graphic) {
1900 TextBlock *sibling = (back? tb->prior : tb->next);
1902 if(tb->used == 0 || tb->graphic)
1903 WMDestroyTextBlock(tPtr, WMRemoveTextBlock(tPtr));
1905 if (sibling) {
1906 tPtr->currentTextBlock = sibling;
1907 tPtr->tpos = (back? sibling->used : 0);
1911 layOutDocument(tPtr);
1915 static void
1916 insertTextInteractively(Text *tPtr, char *text, int len)
1918 TextBlock *tb;
1919 char *newline = NULL;
1921 if (!tPtr->flags.editable) {
1922 XBell(tPtr->view->screen->display, 0);
1923 return;
1926 if (len < 1 || !text)
1927 return;
1930 if(tPtr->flags.ignoreNewLine && *text == '\n' && len == 1)
1931 return;
1934 if (tPtr->flags.ownsSelection)
1935 removeSelection(tPtr);
1938 if (tPtr->flags.ignoreNewLine) {
1939 int i;
1940 for(i=0; i<len; i++) {
1941 if (text[i] == '\n')
1942 text[i] = ' ';
1946 tb = tPtr->currentTextBlock;
1947 if (!tb || tb->graphic) {
1948 tPtr->tpos = 0;
1949 WMAppendTextStream(tPtr, text);
1950 layOutDocument(tPtr);
1951 return;
1954 if ((newline = strchr(text, '\n'))) {
1955 int nlen = (int)(newline-text);
1956 int s = tb->used - tPtr->tpos;
1957 char save[s];
1958 if (!tb->blank && nlen>0) {
1959 if (s > 0) {
1960 memcpy(save, &tb->text[tPtr->tpos], s);
1961 tb->used -= (tb->used - tPtr->tpos);
1963 insertTextInteractively(tPtr, text, nlen);
1964 newline++;
1965 WMAppendTextStream(tPtr, newline);
1966 if (s>0)
1967 insertTextInteractively(tPtr, save, s);
1969 } else {
1970 if (tPtr->tpos>0 && tPtr->tpos < tb->used
1971 && !tb->graphic && tb->text) {
1973 void *ntb = WMCreateTextBlockWithText(
1974 tPtr, &tb->text[tPtr->tpos],
1975 tb->d.font, tb->color, True, tb->used - tPtr->tpos);
1976 tb->used = tPtr->tpos;
1977 WMAppendTextBlock(tPtr, ntb);
1978 tPtr->tpos = 0;
1980 } else if (tPtr->tpos == tb->used || tPtr->tpos == 0) {
1981 if(tPtr->flags.indentNewLine) {
1982 WMAppendTextBlock(tPtr, WMCreateTextBlockWithText(tPtr,
1983 " ", tb->d.font, tb->color, True, 4));
1984 tPtr->tpos = 4;
1985 } else {
1986 WMAppendTextBlock(tPtr, WMCreateTextBlockWithText(tPtr,
1987 NULL, tb->d.font, tb->color, True, 0));
1988 tPtr->tpos = 0;
1993 } else {
1994 if (tb->used + len >= tb->allocated) {
1995 tb->allocated = reqBlockSize(tb->used+len);
1996 tb->text = wrealloc(tb->text, tb->allocated);
1999 if (tb->blank) {
2000 memcpy(tb->text, text, len);
2001 tb->used = len;
2002 tPtr->tpos = len;
2003 tb->text[tb->used] = 0;
2004 tb->blank = False;
2006 } else {
2007 memmove(&(tb->text[tPtr->tpos+len]), &tb->text[tPtr->tpos],
2008 tb->used-tPtr->tpos+1);
2009 memmove(&tb->text[tPtr->tpos], text, len);
2010 tb->used += len;
2011 tPtr->tpos += len;
2012 tb->text[tb->used] = 0;
2017 layOutDocument(tPtr);
2021 static void
2022 selectRegion(Text *tPtr, int x, int y)
2025 if (x < 0 || y < 0)
2026 return;
2028 y += (tPtr->flags.rulerShown? 40: 0);
2029 y += tPtr->vpos;
2030 if (y>10)
2031 y -= 10; /* the original offset */
2033 x -= tPtr->visible.x-2;
2034 if (x<0)
2035 x=0;
2037 tPtr->sel.x = WMAX(0, WMIN(tPtr->clicked.x, x));
2038 tPtr->sel.w = abs(tPtr->clicked.x - x);
2039 tPtr->sel.y = WMAX(0, WMIN(tPtr->clicked.y, y));
2040 tPtr->sel.h = abs(tPtr->clicked.y - y);
2042 tPtr->flags.ownsSelection = True;
2043 paintText(tPtr);
2047 static void
2048 releaseSelection(Text *tPtr)
2050 TextBlock *tb = tPtr->firstTextBlock;
2052 while(tb) {
2053 tb->selected = False;
2054 tb = tb->next;
2056 tPtr->flags.ownsSelection = False;
2057 WMDeleteSelectionHandler(tPtr->view, XA_PRIMARY,
2058 CurrentTime);
2060 paintText(tPtr);
2064 WMData*
2065 requestHandler(WMView *view, Atom selection, Atom target, void *cdata,
2066 Atom *type)
2068 Text *tPtr = view->self;
2069 Display *dpy = tPtr->view->screen->display;
2070 Atom _TARGETS;
2071 Atom TEXT = XInternAtom(dpy, "TEXT", False);
2072 Atom COMPOUND_TEXT = XInternAtom(dpy, "COMPOUND_TEXT", False);
2073 WMData *data = NULL;
2076 if (target == XA_STRING || target == TEXT || target == COMPOUND_TEXT) {
2077 char *text = WMGetTextSelectedStream(tPtr);
2079 if (text) {
2080 data = WMCreateDataWithBytes(text, strlen(text));
2081 WMSetDataFormat(data, TYPETEXT);
2083 *type = target;
2084 return data;
2085 } else printf("didn't get it\n");
2087 _TARGETS = XInternAtom(dpy, "TARGETS", False);
2088 if (target == _TARGETS) {
2089 Atom *ptr;
2091 ptr = wmalloc(4 * sizeof(Atom));
2092 ptr[0] = _TARGETS;
2093 ptr[1] = XA_STRING;
2094 ptr[2] = TEXT;
2095 ptr[3] = COMPOUND_TEXT;
2097 data = WMCreateDataWithBytes(ptr, 4*4);
2098 WMSetDataFormat(data, 32);
2100 *type = target;
2101 return data;
2104 return NULL;
2107 static void
2108 lostHandler(WMView *view, Atom selection, void *cdata)
2110 releaseSelection((WMText *)view->self);
2113 static WMSelectionProcs selectionHandler = {
2114 requestHandler, lostHandler, NULL
2118 static void
2119 ownershipObserver(void *observerData, WMNotification *notification)
2121 if (observerData != WMGetNotificationClientData(notification))
2122 lostHandler(WMWidgetView(observerData), XA_PRIMARY, NULL);
2125 static void
2126 autoSelectText(Text *tPtr, int clicks)
2128 int x, start;
2129 TextBlock *tb;
2130 char *mark = NULL, behind, ahead;
2132 if(!(tb = tPtr->currentTextBlock))
2133 return;
2135 if(clicks == 2) {
2138 switch(tb->text[tPtr->tpos]) {
2139 case ' ': return;
2141 case '<': case '>': behind = '<'; ahead = '>'; break;
2142 case '{': case '}': behind = '{'; ahead = '}'; break;
2143 case '[': case ']': behind = '['; ahead = ']'; break;
2145 default: behind = ahead = ' ';
2148 tPtr->sel.y = tPtr->cursor.y+5;
2149 tPtr->sel.h = 6;/*tPtr->cursor.h-10;*/
2151 if(tb->graphic) {
2152 tPtr->sel.x = tb->sections[0].x;
2153 tPtr->sel.w = tb->sections[0].w;
2154 } else {
2155 WMFont *font = tPtr->flags.monoFont?tPtr->dFont:tb->d.font;
2157 start = tPtr->tpos;
2158 while(start > 0 && tb->text[start-1] != behind)
2159 start--;
2161 x = tPtr->cursor.x;
2162 if(tPtr->tpos > start){
2163 x -= WMWidthOfString(font, &tb->text[start],
2164 tPtr->tpos - start);
2166 tPtr->sel.x = (x<0?0:x)+1;
2168 if((mark = strchr(&tb->text[start], ahead))) {
2169 tPtr->sel.w = WMWidthOfString(font, &tb->text[start],
2170 (int)(mark - &tb->text[start]));
2171 } else if(tb->used > start) {
2172 tPtr->sel.w = WMWidthOfString(font, &tb->text[start],
2173 tb->used - start);
2177 } else if(clicks == 3) {
2178 TextBlock *cur = tb;
2180 while(tb && !tb->first) {
2181 tb = tb->prior;
2183 tPtr->sel.y = tb->sections[0]._y;
2185 tb = cur;
2186 while(tb->next && !tb->next->first) {
2187 tb = tb->next;
2189 tPtr->sel.h = tb->sections[tb->nsections-1]._y
2190 + 5 - tPtr->sel.y;
2192 tPtr->sel.x = 0;
2193 tPtr->sel.w = tPtr->docWidth;
2194 tPtr->clicked.x = 0; /* only for now, fix sel. code */
2197 if (!tPtr->flags.ownsSelection) {
2198 WMCreateSelectionHandler(tPtr->view,
2199 XA_PRIMARY, tPtr->lastClickTime, &selectionHandler, NULL);
2200 tPtr->flags.ownsSelection = True;
2202 paintText(tPtr);
2207 static void
2208 fontChanged(void *observerData, WMNotification *notification)
2210 WMText *tPtr = (WMText *) observerData;
2211 WMFont *font = (WMFont *)WMGetNotificationClientData(notification);
2212 printf("fontChanged\n");
2214 if(!tPtr || !font)
2215 return;
2217 if (tPtr->flags.ownsSelection)
2218 WMSetTextSelectionFont(tPtr, font);
2222 static void
2223 handleTextKeyPress(Text *tPtr, XEvent *event)
2225 char buffer[2];
2226 KeySym ksym;
2227 int control_pressed = False;
2228 TextBlock *tb = NULL;
2230 if (((XKeyEvent *) event)->state & ControlMask)
2231 control_pressed = True;
2232 buffer[XLookupString(&event->xkey, buffer, 1, &ksym, NULL)] = 0;
2234 switch(ksym) {
2236 case XK_Left:
2237 if(!(tb = tPtr->currentTextBlock))
2238 break;
2239 if(tb->graphic)
2240 goto L_imaGFX;
2242 if(tPtr->tpos==0) {
2243 L_imaGFX: if(tb->prior) {
2244 tPtr->currentTextBlock = tb->prior;
2245 tPtr->tpos = tPtr->currentTextBlock->used -1;
2246 } else tPtr->tpos = 0;
2247 } else tPtr->tpos--;
2248 updateCursorPosition(tPtr);
2249 paintText(tPtr);
2250 break;
2252 case XK_Right:
2253 if(!(tb = tPtr->currentTextBlock))
2254 break;
2255 if(tb->graphic)
2256 goto R_imaGFX;
2257 if(tPtr->tpos == tb->used) {
2258 R_imaGFX: if(tb->next) {
2259 tPtr->currentTextBlock = tb->next;
2260 tPtr->tpos = 1;
2261 } else tPtr->tpos = tb->used;
2262 } else tPtr->tpos++;
2263 updateCursorPosition(tPtr);
2264 paintText(tPtr);
2265 break;
2267 case XK_Down:
2268 cursorToTextPosition(tPtr, tPtr->cursor.x + tPtr->visible.x,
2269 tPtr->clicked.y + tPtr->cursor.h - tPtr->vpos);
2270 paintText(tPtr);
2271 break;
2273 case XK_Up:
2274 cursorToTextPosition(tPtr, tPtr->cursor.x + tPtr->visible.x,
2275 tPtr->visible.y + tPtr->cursor.y - tPtr->vpos - 3);
2276 paintText(tPtr);
2277 break;
2279 case XK_BackSpace:
2280 case XK_Delete:
2281 #ifdef XK_KP_Delete
2282 case XK_KP_Delete:
2283 #endif
2284 deleteTextInteractively(tPtr, ksym);
2285 updateCursorPosition(tPtr);
2286 paintText(tPtr);
2287 break;
2289 case XK_Control_R :
2290 case XK_Control_L :
2291 control_pressed = True;
2292 break;
2294 case XK_Tab:
2295 insertTextInteractively(tPtr, " ", 4);
2296 updateCursorPosition(tPtr);
2297 paintText(tPtr);
2298 break;
2300 case XK_Return:
2301 buffer[0] = '\n';
2302 default:
2303 if (buffer[0] != 0 && !control_pressed) {
2304 insertTextInteractively(tPtr, buffer, 1);
2305 updateCursorPosition(tPtr);
2306 paintText(tPtr);
2308 } else if (control_pressed && ksym==XK_r) {
2309 Bool i = !tPtr->flags.rulerShown;
2310 WMShowTextRuler(tPtr, i);
2311 tPtr->flags.rulerShown = i;
2313 else if (control_pressed && buffer[0] == '\a')
2314 XBell(tPtr->view->screen->display, 0);
2317 if (!control_pressed && tPtr->flags.ownsSelection)
2318 releaseSelection(tPtr);
2322 static void
2323 pasteText(WMView *view, Atom selection, Atom target, Time timestamp,
2324 void *cdata, WMData *data)
2326 Text *tPtr = (Text *)view->self;
2327 char *text;
2329 tPtr->flags.waitingForSelection = 0;
2331 if (data) {
2332 text = (char*)WMDataBytes(data);
2334 if (tPtr->parser) {
2335 (tPtr->parser) (tPtr, (void *) text);
2336 layOutDocument(tPtr);
2337 } else insertTextInteractively(tPtr, text, strlen(text));
2338 updateCursorPosition(tPtr);
2339 paintText(tPtr);
2341 } else {
2342 int n;
2344 text = XFetchBuffer(tPtr->view->screen->display, &n, 0);
2346 if (text) {
2347 text[n] = 0;
2348 if (tPtr->parser) {
2349 (tPtr->parser) (tPtr, (void *) text);
2350 layOutDocument(tPtr);
2351 } else insertTextInteractively(tPtr, text, n);
2352 updateCursorPosition(tPtr);
2353 paintText(tPtr);
2355 XFree(text);
2363 static void
2364 handleActionEvents(XEvent *event, void *data)
2366 Text *tPtr = (Text *)data;
2367 Display *dpy = event->xany.display;
2368 KeySym ksym;
2371 switch (event->type) {
2372 case KeyPress:
2373 ksym = XLookupKeysym((XKeyEvent*)event, 0);
2374 if (ksym == XK_Shift_R || ksym == XK_Shift_L) {
2375 tPtr->flags.extendSelection = True;
2376 return;
2379 if (tPtr->flags.focused) {
2380 XGrabPointer(dpy, W_VIEW(tPtr)->window, False,
2381 PointerMotionMask|ButtonPressMask|ButtonReleaseMask,
2382 GrabModeAsync, GrabModeAsync, None,
2383 tPtr->view->screen->invisibleCursor, CurrentTime);
2384 tPtr->flags.pointerGrabbed = True;
2385 handleTextKeyPress(tPtr, event);
2387 } break;
2389 case KeyRelease:
2390 ksym = XLookupKeysym((XKeyEvent*)event, 0);
2391 if (ksym == XK_Shift_R || ksym == XK_Shift_L) {
2392 tPtr->flags.extendSelection = False;
2393 return;
2394 /* end modify flag so selection can be extended */
2396 break;
2399 case MotionNotify:
2401 if (tPtr->flags.pointerGrabbed) {
2402 tPtr->flags.pointerGrabbed = False;
2403 XUngrabPointer(dpy, CurrentTime);
2406 if(tPtr->flags.waitingForSelection)
2407 break;
2409 if ((event->xmotion.state & Button1Mask)) {
2410 TextBlock *tb = tPtr->currentTextBlock;
2412 if(tPtr->flags.isOverGraphic && tb && tb->graphic && !tb->object) {
2413 WMSize offs;
2414 WMPixmap *pixmap = tb->d.pixmap;
2415 char *types[2] = {"application/X-image", NULL};
2417 offs.width = 2;
2418 offs.height = 2;
2420 WMDragImageFromView(tPtr->view, pixmap, types,
2421 wmkpoint(event->xmotion.x_root, event->xmotion.y_root),
2422 offs, event, True);
2425 } else {
2426 if (!tPtr->flags.ownsSelection) {
2427 WMCreateSelectionHandler(tPtr->view,
2428 XA_PRIMARY, event->xbutton.time,
2429 &selectionHandler, NULL);
2430 tPtr->flags.ownsSelection = True;
2433 selectRegion(tPtr, event->xmotion.x, event->xmotion.y);
2434 break;
2437 mouseOverObject(tPtr, event->xmotion.x, event->xmotion.y);
2438 break;
2441 case ButtonPress:
2443 if (tPtr->flags.pointerGrabbed) {
2444 tPtr->flags.pointerGrabbed = False;
2445 XUngrabPointer(dpy, CurrentTime);
2446 break;
2449 if (tPtr->flags.waitingForSelection)
2450 break;
2452 if (tPtr->flags.extendSelection) {
2453 selectRegion(tPtr, event->xmotion.x, event->xmotion.y);
2454 return;
2457 if (tPtr->flags.ownsSelection)
2458 releaseSelection(tPtr);
2461 if (event->xbutton.button == Button1) {
2463 if(WMIsDoubleClick(event)) {
2464 TextBlock *tb = tPtr->currentTextBlock;
2466 tPtr->lastClickTime = event->xbutton.time;
2467 if(tb && tb->graphic && !tb->object) {
2468 char desc[tb->used+1];
2469 memcpy(desc, tb->text, tb->used);
2470 desc[tb->used] = 0;
2471 if(tPtr->delegate) {
2472 if(tPtr->delegate->didDoubleClickOnPicture)
2473 (*tPtr->delegate->didDoubleClickOnPicture)
2474 (tPtr->delegate, desc);
2476 } else {
2477 autoSelectText(tPtr, 2);
2479 break;
2480 } else if(event->xbutton.time - tPtr->lastClickTime
2481 < WINGsConfiguration.doubleClickDelay) {
2482 tPtr->lastClickTime = event->xbutton.time;
2483 autoSelectText(tPtr, 3);
2484 break;
2487 if (!tPtr->flags.focused) {
2488 WMSetFocusToWidget(tPtr);
2489 tPtr->flags.focused = True;
2492 tPtr->lastClickTime = event->xbutton.time;
2493 cursorToTextPosition(tPtr, event->xmotion.x, event->xmotion.y);
2494 paintText(tPtr);
2497 if (event->xbutton.button
2498 == WINGsConfiguration.mouseWheelDown) {
2499 WMScrollText(tPtr, 16);
2500 break;
2503 if (event->xbutton.button
2504 == WINGsConfiguration.mouseWheelUp) {
2505 WMScrollText(tPtr, -16);
2506 break;
2509 if (event->xbutton.button == Button2) {
2510 char *text = NULL;
2511 int n;
2513 if (!tPtr->flags.editable) {
2514 XBell(dpy, 0);
2515 break;
2518 if (!WMRequestSelection(tPtr->view, XA_PRIMARY, XA_STRING,
2519 event->xbutton.time, pasteText, NULL)) {
2521 text = XFetchBuffer(tPtr->view->screen->display, &n, 0);
2522 tPtr->flags.waitingForSelection = 0;
2524 if (text) {
2525 text[n] = 0;
2527 if (tPtr->parser) {
2528 (tPtr->parser) (tPtr, (void *) text);
2529 layOutDocument(tPtr);
2531 else
2532 insertTextInteractively(tPtr, text, n);
2534 XFree(text);
2535 #if 0
2536 NOTIFY(tPtr, didChange, WMTextDidChangeNotification,
2537 (void*)WMInsertTextEvent);
2538 #endif
2539 updateCursorPosition(tPtr);
2540 paintText(tPtr);
2542 } else {
2543 tPtr->flags.waitingForSelection = True;
2546 break;
2550 case ButtonRelease:
2551 if (tPtr->flags.pointerGrabbed) {
2552 tPtr->flags.pointerGrabbed = False;
2553 XUngrabPointer(dpy, CurrentTime);
2554 break;
2557 if (tPtr->flags.waitingForSelection)
2558 break;
2564 static void
2565 handleEvents(XEvent *event, void *data)
2567 Text *tPtr = (Text *)data;
2569 switch(event->type) {
2570 case Expose:
2572 if (event->xexpose.count!=0)
2573 break;
2575 if(tPtr->hS) {
2576 if (!(W_VIEW(tPtr->hS))->flags.realized)
2577 WMRealizeWidget(tPtr->hS);
2580 if(tPtr->vS) {
2581 if (!(W_VIEW(tPtr->vS))->flags.realized)
2582 WMRealizeWidget(tPtr->vS);
2585 if(tPtr->ruler) {
2586 if (!(W_VIEW(tPtr->ruler))->flags.realized)
2587 WMRealizeWidget(tPtr->ruler);
2591 if(!tPtr->db)
2592 textDidResize(tPtr->view->delegate, tPtr->view);
2594 paintText(tPtr);
2595 break;
2597 case FocusIn:
2598 if (W_FocusedViewOfToplevel(W_TopLevelOfView(tPtr->view))
2599 != tPtr->view)
2600 return;
2601 tPtr->flags.focused = True;
2602 #if DO_BLINK
2603 if (tPtr->flags.editable && !tPtr->timerID) {
2604 tPtr->timerID = WMAddTimerHandler(12+0*CURSOR_BLINK_ON_DELAY,
2605 blinkCursor, tPtr);
2607 #endif
2609 break;
2611 case FocusOut:
2612 tPtr->flags.focused = False;
2613 paintText(tPtr);
2614 #if DO_BLINK
2615 if (tPtr->timerID) {
2616 WMDeleteTimerHandler(tPtr->timerID);
2617 tPtr->timerID = NULL;
2619 #endif
2620 break;
2623 case DestroyNotify:
2624 clearText(tPtr);
2625 if(tPtr->db)
2626 XFreePixmap(tPtr->view->screen->display, tPtr->db);
2627 if(tPtr->gfxItems)
2628 WMEmptyArray(tPtr->gfxItems);
2629 #if DO_BLINK
2630 if (tPtr->timerID)
2631 WMDeleteTimerHandler(tPtr->timerID);
2632 #endif
2633 WMReleaseFont(tPtr->dFont);
2634 WMReleaseColor(tPtr->dColor);
2635 WMDeleteSelectionHandler(tPtr->view, XA_PRIMARY, CurrentTime);
2636 WMRemoveNotificationObserver(tPtr);
2638 wfree(tPtr);
2640 break;
2646 static void
2647 insertPlainText(Text *tPtr, char *text)
2649 char *start, *mark;
2650 void *tb = NULL;
2652 start = text;
2653 while (start) {
2654 mark = strchr(start, '\n');
2655 if (mark) {
2656 tb = WMCreateTextBlockWithText(tPtr,
2657 start, tPtr->dFont,
2658 tPtr->dColor, tPtr->flags.first, (int)(mark-start));
2659 start = mark+1;
2660 tPtr->flags.first = True;
2661 } else {
2662 if (start && strlen(start)) {
2663 tb = WMCreateTextBlockWithText(tPtr, start, tPtr->dFont,
2664 tPtr->dColor, tPtr->flags.first, strlen(start));
2665 } else tb = NULL;
2666 tPtr->flags.first = False;
2667 start = mark;
2670 if (tPtr->flags.prepend)
2671 WMPrependTextBlock(tPtr, tb);
2672 else
2673 WMAppendTextBlock(tPtr, tb);
2678 static void
2679 rulerMoveCallBack(WMWidget *w, void *self)
2681 Text *tPtr = (Text *)self;
2683 if (!tPtr)
2684 return;
2685 if (W_CLASS(tPtr) != WC_Text)
2686 return;
2688 paintText(tPtr);
2692 static void
2693 rulerReleaseCallBack(WMWidget *w, void *self)
2695 Text *tPtr = (Text *)self;
2697 if (!tPtr)
2698 return;
2699 if (W_CLASS(tPtr) != WC_Text)
2700 return;
2702 WMThawText(tPtr);
2703 return;
2706 static unsigned
2707 draggingSourceOperation(WMView *self, Bool local)
2709 return WDOperationCopy;
2712 static WMData*
2713 fetchDragData(WMView *self, char *type)
2715 TextBlock *tb = ((WMText *)self->self)->currentTextBlock;
2716 char *desc;
2717 WMData *data;
2719 if (!tb)
2720 return NULL;
2722 printf("type is [%s]\n", type);
2723 desc = wmalloc(tb->used+1);
2724 memcpy(desc, tb->text, tb->used);
2725 desc[tb->used] = 0;
2726 data = WMCreateDataWithBytes(desc, strlen(desc)+1);
2728 wfree(desc);
2730 return data;
2734 static WMDragSourceProcs _DragSourceProcs = {
2735 draggingSourceOperation,
2736 NULL,
2737 NULL,
2738 fetchDragData
2742 static unsigned
2743 draggingEntered(WMView *self, WMDraggingInfo *info)
2745 printf("draggingEntered\n");
2746 return WDOperationCopy;
2750 static unsigned
2751 draggingUpdated(WMView *self, WMDraggingInfo *info)
2753 return WDOperationCopy;
2757 static void
2758 draggingExited(WMView *self, WMDraggingInfo *info)
2760 printf("draggingExited\n");
2763 static Bool
2764 prepareForDragOperation(WMView *self, WMDraggingInfo *info)
2766 printf("prepareForDragOperation\n");
2767 return True;
2771 char *badbadbad;
2773 static void
2774 receivedData(WMView *view, Atom selection, Atom target, Time timestamp,
2775 void *cdata, WMData *data)
2777 badbadbad = wstrdup((char *)WMDataBytes(data));
2781 /* when it's done in WINGs, remove this */
2783 Bool
2784 requestDroppedData(WMView *view, WMDraggingInfo *info, char *type)
2786 WMScreen *scr = W_VIEW_SCREEN(view);
2788 if (!WMRequestSelection(scr->dragInfo.destView,
2789 scr->xdndSelectionAtom,
2790 XInternAtom(scr->display, type, False),
2791 scr->dragInfo.timestamp,
2792 receivedData, &scr->dragInfo)) {
2793 wwarning("could not request data for dropped data");
2797 XEvent ev;
2799 ev.type = ClientMessage;
2800 ev.xclient.message_type = scr->xdndFinishedAtom;
2801 ev.xclient.format = 32;
2802 ev.xclient.window = info->destinationWindow;
2803 ev.xclient.data.l[0] = 0;
2804 ev.xclient.data.l[1] = 0;
2805 ev.xclient.data.l[2] = 0;
2806 ev.xclient.data.l[3] = 0;
2807 ev.xclient.data.l[4] = 0;
2809 XSendEvent(scr->display, info->sourceWindow, False, 0, &ev);
2810 XFlush(scr->display);
2812 return True;
2815 static Bool
2816 performDragOperation(WMView *self, WMDraggingInfo *info)
2818 WMColor *color;
2819 WMText *tPtr = (WMText *)self->self;
2821 if (!tPtr)
2822 return True;
2824 requestDroppedData(tPtr->view, info, "application/X-color");
2825 color = WMCreateNamedColor(W_VIEW_SCREEN(self), badbadbad, True);
2826 if(color) {
2827 WMSetTextSelectionColor(tPtr, color);
2828 WMReleaseColor(color);
2833 return True;
2836 static void
2837 concludeDragOperation(WMView *self, WMDraggingInfo *info)
2839 printf("concludeDragOperation\n");
2843 static WMDragDestinationProcs _DragDestinationProcs = {
2844 draggingEntered,
2845 draggingUpdated,
2846 draggingExited,
2847 prepareForDragOperation,
2848 performDragOperation,
2849 concludeDragOperation
2853 char *
2854 getStream(WMText *tPtr, int sel, int array)
2856 TextBlock *tb = NULL;
2857 char *text = NULL;
2858 unsigned long where = 0;
2860 if (!tPtr)
2861 return NULL;
2863 if (!(tb = tPtr->firstTextBlock))
2864 return NULL;
2866 if (tPtr->writer) {
2867 (tPtr->writer) (tPtr, (void *) text);
2868 return text;
2871 tb = tPtr->firstTextBlock;
2872 while (tb) {
2874 if (!tb->graphic || (tb->graphic && !tPtr->flags.monoFont)) {
2876 if (!sel || (tb->graphic && tb->selected)) {
2878 if (!tPtr->flags.ignoreNewLine && (tb->first || tb->blank)
2879 && tb != tPtr->firstTextBlock) {
2880 text = wrealloc(text, where+1);
2881 text[where++] = '\n';
2884 if(tb->blank)
2885 goto _gSnext;
2887 if(tb->graphic && array) {
2888 text = wrealloc(text, where+4);
2889 text[where++] = 0xFA;
2890 text[where++] = (tb->used>>8)&0x0ff;
2891 text[where++] = tb->used&0x0ff;
2892 text[where++] = tb->allocated; /* extra info */
2894 text = wrealloc(text, where+tb->used);
2895 memcpy(&text[where], tb->text, tb->used);
2896 where += tb->used;
2899 } else if (sel && tb->selected) {
2901 if (!tPtr->flags.ignoreNewLine && tb->blank) {
2902 text = wrealloc(text, where+1);
2903 text[where++] = '\n';
2906 if(tb->blank)
2907 goto _gSnext;
2909 text = wrealloc(text, where+(tb->s_end - tb->s_begin));
2910 memcpy(&text[where], &tb->text[tb->s_begin],
2911 tb->s_end - tb->s_begin);
2912 where += tb->s_end - tb->s_begin;
2917 _gSnext:tb = tb->next;
2920 /* +1 for the end of string, let's be nice */
2921 text = wrealloc(text, where+1);
2922 text[where] = 0;
2923 return text;
2927 static void
2928 releaseStreamObjects(void *data)
2930 if(data)
2931 wfree(data);
2934 WMArray *
2935 getStreamObjects(WMText *tPtr, int sel)
2937 WMArray *array = WMCreateArrayWithDestructor(4, releaseStreamObjects);
2938 WMData *data;
2939 char *stream;
2940 unsigned short len;
2941 char *start, *fa, *desc;
2943 stream = getStream(tPtr, sel, 1);
2944 if(!stream)
2945 return NULL;
2947 start = stream;
2948 while (start) {
2950 fa = strchr(start, 0xFA);
2951 if (fa) {
2952 if((int)(fa - start)>0) {
2953 desc = start;
2954 desc[(int)(fa - start)] = 0;
2955 data = WMCreateDataWithBytes((void *)desc, (int)(fa - start));
2956 WMSetDataFormat(data, TYPETEXT);
2957 WMAddToArray(array, (void *) data);
2960 len = *(fa+1)*0xff + *(fa+2);
2961 data = WMCreateDataWithBytes((void *)(fa+4), len);
2962 WMSetDataFormat(data, *(fa+3));
2963 WMAddToArray(array, (void *) data);
2964 start = fa + len + 4;
2966 } else {
2967 if (start && strlen(start)) {
2968 data = WMCreateDataWithBytes((void *)start, strlen(start));
2969 WMSetDataFormat(data, TYPETEXT);
2970 WMAddToArray(array, (void *) data);
2972 start = fa;
2976 wfree(stream);
2977 return array;
2981 WMText *
2982 WMCreateTextForDocumentType(WMWidget *parent, WMAction *parser, WMAction *writer)
2984 Text *tPtr;
2986 tPtr = wmalloc(sizeof(Text));
2987 memset(tPtr, 0, sizeof(Text));
2988 tPtr->widgetClass = WC_Text;
2989 tPtr->view = W_CreateView(W_VIEW(parent));
2990 if (!tPtr->view) {
2991 perror("could not create text's view\n");
2992 wfree(tPtr);
2993 return NULL;
2995 tPtr->view->self = tPtr;
2996 tPtr->view->attribs.cursor = tPtr->view->screen->textCursor;
2997 tPtr->view->attribFlags |= CWOverrideRedirect | CWCursor;
2998 W_ResizeView(tPtr->view, 250, 200);
3000 tPtr->dColor = WMWhiteColor(tPtr->view->screen);
3001 tPtr->bgGC = WMColorGC(tPtr->dColor);
3002 W_SetViewBackgroundColor(tPtr->view, tPtr->dColor);
3003 WMReleaseColor(tPtr->dColor);
3005 tPtr->dColor = WMBlackColor(tPtr->view->screen);
3006 tPtr->fgGC = WMColorGC(tPtr->dColor);
3008 tPtr->ruler = NULL;
3009 tPtr->vS = NULL;
3010 tPtr->hS = NULL;
3012 tPtr->dFont = WMRetainFont(WMSystemFontOfSize(tPtr->view->screen, 12));
3014 tPtr->view->delegate = &_TextViewDelegate;
3016 tPtr->delegate = NULL;
3018 #if DO_BLINK
3019 tPtr->timerID = NULL;
3020 #endif
3022 WMCreateEventHandler(tPtr->view, ExposureMask|StructureNotifyMask
3023 |EnterWindowMask|LeaveWindowMask|FocusChangeMask,
3024 handleEvents, tPtr);
3026 WMCreateEventHandler(tPtr->view, ButtonReleaseMask|ButtonPressMask
3027 |KeyReleaseMask|KeyPressMask|Button1MotionMask,
3028 handleActionEvents, tPtr);
3030 WMAddNotificationObserver(ownershipObserver, tPtr,
3031 "_lostOwnership", tPtr);
3033 WMSetViewDragSourceProcs(tPtr->view, &_DragSourceProcs);
3034 WMSetViewDragDestinationProcs(tPtr->view, &_DragDestinationProcs);
3038 char *types[3] = {"application/X-color", "application/X-image", NULL};
3039 WMRegisterViewForDraggedTypes(tPtr->view, types);
3042 WMAddNotificationObserver(fontChanged, tPtr,
3043 "WMFontPanelDidChangeNotification", tPtr);
3045 tPtr->firstTextBlock = NULL;
3046 tPtr->lastTextBlock = NULL;
3047 tPtr->currentTextBlock = NULL;
3048 tPtr->tpos = 0;
3050 tPtr->gfxItems = WMCreateArray(4);
3052 tPtr->parser = parser;
3053 tPtr->writer = writer;
3055 tPtr->sel.x = tPtr->sel.y = 2;
3056 tPtr->sel.w = tPtr->sel.h = 0;
3058 tPtr->clicked.x = tPtr->clicked.y = 2;
3060 tPtr->visible.x = tPtr->visible.y = 2;
3061 tPtr->visible.h = tPtr->view->size.height;
3062 tPtr->visible.w = tPtr->view->size.width - 4;
3064 tPtr->cursor.x = -23;
3066 tPtr->docWidth = 0;
3067 tPtr->docHeight = 0;
3068 tPtr->dBulletPix = WMCreatePixmapFromXPMData(tPtr->view->screen,
3069 default_bullet);
3070 tPtr->db = (Pixmap) NULL;
3071 tPtr->bgPixmap = NULL;
3073 tPtr->margins = WMGetRulerMargins(NULL);
3074 tPtr->margins->right = tPtr->visible.w;
3075 tPtr->nMargins = 1;
3077 tPtr->flags.rulerShown = False;
3078 tPtr->flags.monoFont = False;
3079 tPtr->flags.focused = False;
3080 tPtr->flags.editable = True;
3081 tPtr->flags.ownsSelection = False;
3082 tPtr->flags.pointerGrabbed = False;
3083 tPtr->flags.extendSelection = False;
3084 tPtr->flags.frozen = False;
3085 tPtr->flags.cursorShown = True;
3086 tPtr->flags.acceptsGraphic = False;
3087 tPtr->flags.horizOnDemand = False;
3088 tPtr->flags.needsLayOut = False;
3089 tPtr->flags.ignoreNewLine = False;
3090 tPtr->flags.indentNewLine = False;
3091 tPtr->flags.laidOut = False;
3092 tPtr->flags.waitingForSelection = False;
3093 tPtr->flags.prepend = False;
3094 tPtr->flags.isOverGraphic = False;
3095 tPtr->flags.relief = WRSunken;
3096 tPtr->flags.isOverGraphic = 0;
3097 tPtr->flags.alignment = WALeft;
3098 tPtr->flags.first = True;
3100 return tPtr;
3103 void
3104 WMPrependTextStream(WMText *tPtr, char *text)
3106 CHECK_CLASS(tPtr, WC_Text);
3108 if(!text) {
3109 if (tPtr->flags.ownsSelection)
3110 releaseSelection(tPtr);
3111 clearText(tPtr);
3112 updateScrollers(tPtr);
3113 return;
3116 tPtr->flags.prepend = True;
3117 if (text && tPtr->parser)
3118 (tPtr->parser) (tPtr, (void *) text);
3119 else
3120 insertPlainText(tPtr, text);
3122 tPtr->flags.needsLayOut = True;
3123 tPtr->tpos = 0;
3124 if(!tPtr->flags.frozen) {
3125 layOutDocument(tPtr);
3130 void
3131 WMAppendTextStream(WMText *tPtr, char *text)
3133 CHECK_CLASS(tPtr, WC_Text);
3135 if(!text) {
3136 if (tPtr->flags.ownsSelection)
3137 releaseSelection(tPtr);
3138 clearText(tPtr);
3139 updateScrollers(tPtr);
3140 return;
3143 tPtr->flags.prepend = False;
3144 if (text && tPtr->parser)
3145 (tPtr->parser) (tPtr, (void *) text);
3146 else
3147 insertPlainText(tPtr, text);
3149 tPtr->flags.needsLayOut = True;
3150 if(tPtr->currentTextBlock)
3151 tPtr->tpos = tPtr->currentTextBlock->used;
3153 if(!tPtr->flags.frozen) {
3154 layOutDocument(tPtr);
3159 char *
3160 WMGetTextStream(WMText *tPtr)
3162 CHECK_CLASS(tPtr, WC_Text);
3163 return getStream(tPtr, 0, 0);
3166 char *
3167 WMGetTextSelectedStream(WMText *tPtr)
3169 CHECK_CLASS(tPtr, WC_Text);
3170 return getStream(tPtr, 1, 0);
3173 WMArray *
3174 WMGetTextObjects(WMText *tPtr)
3176 CHECK_CLASS(tPtr, WC_Text);
3177 return getStreamObjects(tPtr, 0);
3180 WMArray *
3181 WMGetTextSelectedObjects(WMText *tPtr)
3183 CHECK_CLASS(tPtr, WC_Text);
3184 return getStreamObjects(tPtr, 1);
3188 void
3189 WMSetTextDelegate(WMText *tPtr, WMTextDelegate *delegate)
3191 CHECK_CLASS(tPtr, WC_Text);
3193 tPtr->delegate = delegate;
3197 void *
3198 WMCreateTextBlockWithObject(WMText *tPtr, WMWidget *w,
3199 char *description, WMColor *color,
3200 unsigned short first, unsigned short extraInfo)
3202 TextBlock *tb;
3204 if (!w || !description || !color)
3205 return NULL;
3207 tb = wmalloc(sizeof(TextBlock));
3208 if (!tb)
3209 return NULL;
3211 tb->text = wstrdup(description);
3212 tb->used = strlen(description);
3213 tb->blank = False;
3214 tb->d.widget = w;
3215 tb->color = WMRetainColor(color);
3216 tb->marginN = newMargin(tPtr, NULL);
3217 tb->allocated = extraInfo;
3218 tb->first = first;
3219 tb->kanji = False;
3220 tb->graphic = True;
3221 tb->object = True;
3222 tb->underlined = False;
3223 tb->selected = False;
3224 tb->script = 0;
3225 tb->sections = NULL;
3226 tb->nsections = 0;
3227 tb->prior = NULL;
3228 tb->next = NULL;
3230 return tb;
3234 void *
3235 WMCreateTextBlockWithPixmap(WMText *tPtr, WMPixmap *p,
3236 char *description, WMColor *color,
3237 unsigned short first, unsigned short extraInfo)
3239 TextBlock *tb;
3241 if (!p || !description || !color)
3242 return NULL;
3244 tb = wmalloc(sizeof(TextBlock));
3245 if (!tb)
3246 return NULL;
3248 tb->text = wstrdup(description);
3249 tb->used = strlen(description);
3250 tb->blank = False;
3251 tb->d.pixmap = WMRetainPixmap(p);
3252 tb->color = WMRetainColor(color);
3253 tb->marginN = newMargin(tPtr, NULL);
3254 tb->allocated = extraInfo;
3255 tb->first = first;
3256 tb->kanji = False;
3257 tb->graphic = True;
3258 tb->object = False;
3259 tb->underlined = False;
3260 tb->selected = False;
3261 tb->script = 0;
3262 tb->sections = NULL;
3263 tb->nsections = 0;
3264 tb->prior = NULL;
3265 tb->next = NULL;
3267 return tb;
3271 void*
3272 WMCreateTextBlockWithText(WMText *tPtr, char *text, WMFont *font, WMColor *color,
3273 unsigned short first, unsigned short len)
3275 TextBlock *tb;
3277 if (!font || !color)
3278 return NULL;
3280 tb = wmalloc(sizeof(TextBlock));
3281 if (!tb)
3282 return NULL;
3284 tb->allocated = reqBlockSize(len);
3285 tb->text = (char *)wmalloc(tb->allocated);
3286 memset(tb->text, 0, tb->allocated);
3288 if (len < 1|| !text || (*text == '\n' && len==1 )) {
3289 *tb->text = ' ';
3290 tb->used = 1;
3291 tb->blank = True;
3292 } else {
3293 memcpy(tb->text, text, len);
3294 tb->used = len;
3295 tb->blank = False;
3297 tb->text[tb->used] = 0;
3299 tb->d.font = WMRetainFont(font);
3300 tb->color = WMRetainColor(color);
3301 tb->marginN = newMargin(tPtr, NULL);
3302 tb->first = first;
3303 tb->kanji = False;
3304 tb->graphic = False;
3305 tb->underlined = False;
3306 tb->selected = False;
3307 tb->script = 0;
3308 tb->sections = NULL;
3309 tb->nsections = 0;
3310 tb->prior = NULL;
3311 tb->next = NULL;
3312 return tb;
3315 void
3316 WMSetTextBlockProperties(WMText *tPtr, void *vtb, unsigned int first,
3317 unsigned int kanji, unsigned int underlined, int script,
3318 WMRulerMargins *margins)
3320 TextBlock *tb = (TextBlock *) vtb;
3321 if (!tb)
3322 return;
3324 tb->first = first;
3325 tb->kanji = kanji;
3326 tb->underlined = underlined;
3327 tb->script = script;
3328 tb->marginN = newMargin(tPtr, margins);
3331 void
3332 WMGetTextBlockProperties(WMText *tPtr, void *vtb, unsigned int *first,
3333 unsigned int *kanji, unsigned int *underlined, int *script,
3334 WMRulerMargins *margins)
3336 TextBlock *tb = (TextBlock *) vtb;
3337 if (!tb)
3338 return;
3340 if (first) *first = tb->first;
3341 if (kanji) *kanji = tb->kanji;
3342 if (underlined) *underlined = tb->underlined;
3343 if (script) *script = tb->script;
3344 if (margins) margins = &tPtr->margins[tb->marginN];
3349 void
3350 WMPrependTextBlock(WMText *tPtr, void *vtb)
3352 TextBlock *tb = (TextBlock *)vtb;
3354 if (!tPtr || !tb)
3355 return;
3357 if (tb->graphic) {
3358 if(tb->object) {
3359 WMWidget *w = tb->d.widget;
3360 if (W_CLASS(w) != WC_TextField && W_CLASS(w) != WC_Text) {
3361 (W_VIEW(w))->attribs.cursor = tPtr->view->screen->defaultCursor;
3362 (W_VIEW(w))->attribFlags |= CWOverrideRedirect | CWCursor;
3365 WMAddToArray(tPtr->gfxItems, (void *)tb);
3366 tPtr->tpos = 0;
3367 } else tPtr->tpos = tb->used;
3369 if (!tPtr->lastTextBlock || !tPtr->firstTextBlock) {
3370 tb->next = tb->prior = NULL;
3371 tb->first = True;
3372 tPtr->lastTextBlock = tPtr->firstTextBlock
3373 = tPtr->currentTextBlock = tb;
3374 return;
3377 if(!tb->first) {
3378 tb->marginN = tPtr->currentTextBlock->marginN;
3381 tb->next = tPtr->currentTextBlock;
3382 tb->prior = tPtr->currentTextBlock->prior;
3383 if (tPtr->currentTextBlock->prior)
3384 tPtr->currentTextBlock->prior->next = tb;
3386 tPtr->currentTextBlock->prior = tb;
3387 if (!tb->prior)
3388 tPtr->firstTextBlock = tb;
3390 tPtr->currentTextBlock = tb;
3394 void
3395 WMAppendTextBlock(WMText *tPtr, void *vtb)
3397 TextBlock *tb = (TextBlock *)vtb;
3399 if (!tPtr || !tb)
3400 return;
3402 if (tb->graphic) {
3403 if(tb->object) {
3404 WMWidget *w = tb->d.widget;
3405 if (W_CLASS(w) != WC_TextField && W_CLASS(w) != WC_Text) {
3406 (W_VIEW(w))->attribs.cursor =
3407 tPtr->view->screen->defaultCursor;
3408 (W_VIEW(w))->attribFlags |= CWOverrideRedirect | CWCursor;
3411 WMAddToArray(tPtr->gfxItems, (void *)tb);
3412 tPtr->tpos = 0;
3413 } else tPtr->tpos = tb->used;
3415 if (!tPtr->lastTextBlock || !tPtr->firstTextBlock) {
3416 tb->next = tb->prior = NULL;
3417 tb->first = True;
3418 tPtr->lastTextBlock = tPtr->firstTextBlock
3419 = tPtr->currentTextBlock = tb;
3420 return;
3423 if(!tb->first) {
3424 tb->marginN = tPtr->currentTextBlock->marginN;
3427 tb->next = tPtr->currentTextBlock->next;
3428 tb->prior = tPtr->currentTextBlock;
3429 if (tPtr->currentTextBlock->next)
3430 tPtr->currentTextBlock->next->prior = tb;
3432 tPtr->currentTextBlock->next = tb;
3434 if (!tb->next)
3435 tPtr->lastTextBlock = tb;
3437 tPtr->currentTextBlock = tb;
3440 void *
3441 WMRemoveTextBlock(WMText *tPtr)
3443 TextBlock *tb = NULL;
3445 if (!tPtr || !tPtr->firstTextBlock || !tPtr->lastTextBlock
3446 || !tPtr->currentTextBlock) {
3447 /* printf("cannot remove non existent TextBlock!\n"); */
3448 return NULL;
3451 tb = tPtr->currentTextBlock;
3452 if (tb->graphic) {
3453 WMRemoveFromArray(tPtr->gfxItems, (void *)tb);
3455 if(tb->object) {
3456 WMUnmapWidget(tb->d.widget);
3460 if (tPtr->currentTextBlock == tPtr->firstTextBlock) {
3461 if (tPtr->currentTextBlock->next)
3462 tPtr->currentTextBlock->next->prior = NULL;
3464 tPtr->firstTextBlock = tPtr->currentTextBlock->next;
3465 tPtr->currentTextBlock = tPtr->firstTextBlock;
3467 } else if (tPtr->currentTextBlock == tPtr->lastTextBlock) {
3468 tPtr->currentTextBlock->prior->next = NULL;
3469 tPtr->lastTextBlock = tPtr->currentTextBlock->prior;
3470 tPtr->currentTextBlock = tPtr->lastTextBlock;
3471 } else {
3472 tPtr->currentTextBlock->prior->next = tPtr->currentTextBlock->next;
3473 tPtr->currentTextBlock->next->prior = tPtr->currentTextBlock->prior;
3474 tPtr->currentTextBlock = tPtr->currentTextBlock->next;
3477 return (void *)tb;
3480 void
3481 WMDestroyTextBlock(WMText *tPtr, void *vtb)
3483 TextBlock *tb = (TextBlock *)vtb;
3484 if (!tPtr || !tb)
3485 return;
3487 if (tb->graphic) {
3488 if(tb->object) {
3489 /* naturally, there's a danger to destroying
3490 widgets whose action brings us here:
3491 ie. press a button to destroy it... need to
3492 find a safer way. till then... this stays commented out */
3493 /* WMDestroyWidget(tb->d.widget);
3494 wfree(tb->d.widget); */
3495 tb->d.widget = NULL;
3496 } else {
3497 WMReleasePixmap(tb->d.pixmap);
3498 tb->d.pixmap = NULL;
3500 } else {
3501 WMReleaseFont(tb->d.font);
3504 WMReleaseColor(tb->color);
3505 if (tb->sections && tb->nsections > 0)
3506 wfree(tb->sections);
3507 wfree(tb->text);
3508 wfree(tb);
3509 tb = NULL;
3514 void
3515 WMSetTextForegroundColor(WMText *tPtr, WMColor *color)
3517 if (!tPtr)
3518 return;
3520 if (color)
3521 tPtr->fgGC = WMColorGC(color);
3522 else
3523 tPtr->fgGC = WMColorGC(WMBlackColor(tPtr->view->screen));
3525 paintText(tPtr);
3528 void
3529 WMSetTextBackgroundColor(WMText *tPtr, WMColor *color)
3531 if (!tPtr)
3532 return;
3534 if (color) {
3535 tPtr->bgGC = WMColorGC(color);
3536 W_SetViewBackgroundColor(tPtr->view, color);
3537 } else {
3538 tPtr->bgGC = WMColorGC(WMWhiteColor(tPtr->view->screen));
3539 W_SetViewBackgroundColor(tPtr->view,
3540 WMWhiteColor(tPtr->view->screen));
3543 paintText(tPtr);
3546 void WMSetTextBackgroundPixmap(WMText *tPtr, WMPixmap *pixmap)
3548 if (!tPtr)
3549 return;
3551 if (tPtr->bgPixmap)
3552 WMReleasePixmap(tPtr->bgPixmap);
3554 if (pixmap)
3555 tPtr->bgPixmap = WMRetainPixmap(pixmap);
3556 else
3557 tPtr->bgPixmap = NULL;
3560 void
3561 WMSetTextRelief(WMText *tPtr, WMReliefType relief)
3563 if (!tPtr)
3564 return;
3565 tPtr->flags.relief = relief;
3566 textDidResize(tPtr->view->delegate, tPtr->view);
3569 void
3570 WMSetTextHasHorizontalScroller(WMText *tPtr, Bool shouldhave)
3572 if (!tPtr)
3573 return;
3575 if (shouldhave && !tPtr->hS) {
3576 tPtr->hS = WMCreateScroller(tPtr);
3577 (W_VIEW(tPtr->hS))->attribs.cursor = tPtr->view->screen->defaultCursor;
3578 (W_VIEW(tPtr->hS))->attribFlags |= CWOverrideRedirect | CWCursor;
3579 WMSetScrollerArrowsPosition(tPtr->hS, WSAMinEnd);
3580 WMSetScrollerAction(tPtr->hS, scrollersCallBack, tPtr);
3581 WMMapWidget(tPtr->hS);
3582 } else if (!shouldhave && tPtr->hS) {
3583 WMUnmapWidget(tPtr->hS);
3584 WMDestroyWidget(tPtr->hS);
3585 tPtr->hS = NULL;
3588 tPtr->hpos = 0;
3589 tPtr->prevHpos = 0;
3590 textDidResize(tPtr->view->delegate, tPtr->view);
3594 void
3595 WMSetTextHasRuler(WMText *tPtr, Bool shouldhave)
3597 if (!tPtr)
3598 return;
3600 if(shouldhave && !tPtr->ruler) {
3601 tPtr->ruler = WMCreateRuler(tPtr);
3602 (W_VIEW(tPtr->ruler))->attribs.cursor =
3603 tPtr->view->screen->defaultCursor;
3604 (W_VIEW(tPtr->ruler))->attribFlags |= CWOverrideRedirect | CWCursor;
3605 WMSetRulerReleaseAction(tPtr->ruler, rulerReleaseCallBack, tPtr);
3606 WMSetRulerMoveAction(tPtr->ruler, rulerMoveCallBack, tPtr);
3607 } else if(!shouldhave && tPtr->ruler) {
3608 WMShowTextRuler(tPtr, False);
3609 WMDestroyWidget(tPtr->ruler);
3610 tPtr->ruler = NULL;
3612 textDidResize(tPtr->view->delegate, tPtr->view);
3615 void
3616 WMShowTextRuler(WMText *tPtr, Bool show)
3618 if(!tPtr)
3619 return;
3620 if(!tPtr->ruler)
3621 return;
3623 if(tPtr->flags.monoFont)
3624 show = False;
3626 tPtr->flags.rulerShown = show;
3627 if(show) {
3628 WMMapWidget(tPtr->ruler);
3629 } else {
3630 WMUnmapWidget(tPtr->ruler);
3633 textDidResize(tPtr->view->delegate, tPtr->view);
3636 Bool
3637 WMGetTextRulerShown(WMText *tPtr)
3639 if(!tPtr)
3640 return 0;
3642 if(!tPtr->ruler)
3643 return 0;
3645 return tPtr->flags.rulerShown;
3649 void
3650 WMSetTextHasVerticalScroller(WMText *tPtr, Bool shouldhave)
3652 if (!tPtr)
3653 return;
3655 if (shouldhave && !tPtr->vS) {
3656 tPtr->vS = WMCreateScroller(tPtr);
3657 (W_VIEW(tPtr->vS))->attribs.cursor = tPtr->view->screen->defaultCursor;
3658 (W_VIEW(tPtr->vS))->attribFlags |= CWOverrideRedirect | CWCursor;
3659 WMSetScrollerArrowsPosition(tPtr->vS, WSAMaxEnd);
3660 WMSetScrollerAction(tPtr->vS, scrollersCallBack, tPtr);
3661 WMMapWidget(tPtr->vS);
3662 } else if (!shouldhave && tPtr->vS) {
3663 WMUnmapWidget(tPtr->vS);
3664 WMDestroyWidget(tPtr->vS);
3665 tPtr->vS = NULL;
3668 tPtr->vpos = 0;
3669 tPtr->prevVpos = 0;
3670 textDidResize(tPtr->view->delegate, tPtr->view);
3675 Bool
3676 WMScrollText(WMText *tPtr, int amount)
3678 Bool scroll=False;
3679 if (!tPtr)
3680 return False;
3681 if (amount == 0 || !tPtr->view->flags.realized)
3682 return False;
3684 if (amount < 0) {
3685 if (tPtr->vpos > 0) {
3686 if (tPtr->vpos > abs(amount)) tPtr->vpos += amount;
3687 else tPtr->vpos=0;
3688 scroll=True;
3689 } } else {
3690 int limit = tPtr->docHeight - tPtr->visible.h;
3691 if (tPtr->vpos < limit) {
3692 if (tPtr->vpos < limit-amount) tPtr->vpos += amount;
3693 else tPtr->vpos = limit;
3694 scroll = True;
3695 } }
3697 if (scroll && tPtr->vpos != tPtr->prevVpos) {
3698 updateScrollers(tPtr);
3699 paintText(tPtr);
3701 tPtr->prevVpos = tPtr->vpos;
3702 return scroll;
3705 Bool
3706 WMPageText(WMText *tPtr, Bool direction)
3708 if (!tPtr) return False;
3709 if (!tPtr->view->flags.realized) return False;
3711 return WMScrollText(tPtr, direction?tPtr->visible.h:-tPtr->visible.h);
3714 void
3715 WMSetTextEditable(WMText *tPtr, Bool editable)
3717 if (!tPtr)
3718 return;
3719 tPtr->flags.editable = editable;
3722 int
3723 WMGetTextEditable(WMText *tPtr)
3725 if (!tPtr)
3726 return 0;
3727 return tPtr->flags.editable;
3730 void
3731 WMSetTextIndentNewLines(WMText *tPtr, Bool indent)
3733 if (!tPtr)
3734 return;
3735 tPtr->flags.indentNewLine = indent;
3738 void
3739 WMSetTextIgnoresNewline(WMText *tPtr, Bool ignore)
3741 if (!tPtr)
3742 return;
3743 tPtr->flags.ignoreNewLine = ignore;
3746 Bool
3747 WMGetTextIgnoresNewline(WMText *tPtr)
3749 if (!tPtr)
3750 return True;
3751 return tPtr->flags.ignoreNewLine;
3754 void
3755 WMSetTextUsesMonoFont(WMText *tPtr, Bool mono)
3757 if (!tPtr)
3758 return;
3760 if (mono) {
3761 if(tPtr->flags.rulerShown)
3762 WMShowTextRuler(tPtr, False);
3763 if(tPtr->flags.alignment != WALeft)
3764 tPtr->flags.alignment = WALeft;
3767 tPtr->flags.monoFont = mono;
3768 textDidResize(tPtr->view->delegate, tPtr->view);
3771 Bool
3772 WMGetTextUsesMonoFont(WMText *tPtr)
3774 if (!tPtr)
3775 return True;
3776 return tPtr->flags.monoFont;
3780 void
3781 WMSetTextDefaultFont(WMText *tPtr, WMFont *font)
3783 if (!tPtr)
3784 return;
3786 WMReleaseFont(tPtr->dFont);
3787 if (font)
3788 tPtr->dFont = WMRetainFont(font);
3789 else
3790 tPtr->dFont = WMRetainFont(WMSystemFontOfSize(tPtr->view->screen, 12));
3793 WMFont *
3794 WMGetTextDefaultFont(WMText *tPtr)
3796 if (!tPtr)
3797 return NULL;
3798 else
3799 return WMRetainFont(tPtr->dFont);
3802 void
3803 WMSetTextDefaultColor(WMText *tPtr, WMColor *color)
3805 if (!tPtr)
3806 return;
3808 WMReleaseColor(tPtr->dColor);
3809 if (color)
3810 tPtr->dColor = WMRetainColor(color);
3811 else
3812 tPtr->dColor = WMBlackColor(tPtr->view->screen);
3815 WMColor *
3816 WMGetTextDefaultColor(WMText *tPtr)
3818 if (!tPtr)
3819 return NULL;
3820 else
3821 return WMRetainColor(tPtr->dColor);
3824 void
3825 WMSetTextAlignment(WMText *tPtr, WMAlignment alignment)
3827 if (!tPtr)
3828 return;
3829 if(tPtr->flags.monoFont)
3830 tPtr->flags.alignment = WALeft;
3831 else
3832 tPtr->flags.alignment = alignment;
3833 WMThawText(tPtr);
3836 int
3837 WMGetTextInsertType(WMText *tPtr)
3839 if (!tPtr)
3840 return 0;
3841 return tPtr->flags.prepend;
3845 void
3846 WMSetTextSelectionColor(WMText *tPtr, WMColor *color)
3848 if (!tPtr || !color)
3849 return;
3851 setSelectionProperty(tPtr, NULL, color, -1);
3854 WMColor *
3855 WMGetTextSelectionColor(WMText *tPtr)
3857 TextBlock *tb;
3859 if (!tPtr)
3860 return NULL;
3862 tb = tPtr->currentTextBlock;
3864 if (!tb || !tPtr->flags.ownsSelection)
3865 return NULL;
3867 if(!tb->selected)
3868 return NULL;
3870 return tb->color;
3874 void
3875 WMSetTextSelectionFont(WMText *tPtr, WMFont *font)
3877 if (!tPtr || !font)
3878 return;
3880 setSelectionProperty(tPtr, font, NULL, -1) ;
3883 WMFont *
3884 WMGetTextSelectionFont(WMText *tPtr)
3886 TextBlock *tb;
3888 if (!tPtr)
3889 return NULL;
3891 tb = tPtr->currentTextBlock;
3893 if (!tb || !tPtr->flags.ownsSelection)
3894 return NULL;
3896 if(!tb->selected)
3897 return NULL;
3899 if(tb->graphic) {
3900 tb = getFirstNonGraphicBlockFor(tb, 1);
3901 if(!tb)
3902 return NULL;
3904 return (tb->selected ? tb->d.font : NULL);
3908 void
3909 WMSetTextSelectionUnderlined(WMText *tPtr, int underlined)
3911 if (!tPtr || (underlined!=0 && underlined !=1))
3912 return;
3914 setSelectionProperty(tPtr, NULL, NULL, underlined);
3918 int
3919 WMGetTextSelectionUnderlined(WMText *tPtr)
3921 TextBlock *tb;
3923 if (!tPtr)
3924 return 0;
3926 tb = tPtr->currentTextBlock;
3928 if (!tb || !tPtr->flags.ownsSelection)
3929 return 0;
3931 if(!tb->selected)
3932 return 0;
3934 return tb->underlined;
3938 void
3939 WMFreezeText(WMText *tPtr)
3941 if (!tPtr)
3942 return;
3944 tPtr->flags.frozen = True;
3948 void
3949 WMThawText(WMText *tPtr)
3951 if (!tPtr)
3952 return;
3954 tPtr->flags.frozen = False;
3956 if(tPtr->flags.monoFont) {
3957 int j, c = WMGetArrayItemCount(tPtr->gfxItems);
3958 TextBlock *tb;
3960 /* make sure to unmap widgets no matter where they are */
3961 /* they'll be later remapped if needed by paintText */
3962 for(j=0; j<c; j++) {
3963 if ((tb = (TextBlock *) WMGetFromArray(tPtr->gfxItems, j))) {
3964 if (tb->object && ((W_VIEW(tb->d.widget))->flags.mapped))
3965 WMUnmapWidget(tb->d.widget);
3971 tPtr->flags.laidOut = False;
3972 layOutDocument(tPtr);
3973 updateScrollers(tPtr);
3974 paintText(tPtr);
3975 tPtr->flags.needsLayOut = False;
3979 /* find first occurence of a string */
3980 static char *
3981 mystrstr(char *haystack, char *needle, unsigned short len, char *end,
3982 Bool caseSensitive)
3984 char *ptr;
3986 if(!haystack || !needle || !end)
3987 return NULL;
3989 for (ptr = haystack; ptr < end; ptr++) {
3990 if(caseSensitive) {
3991 if (*ptr == *needle && !strncmp(ptr, needle, len))
3992 return ptr;
3994 } else {
3995 if (tolower(*ptr) == tolower(*needle) &&
3996 !strncasecmp(ptr, needle, len))
3997 return ptr;
4001 return NULL;
4004 /* find last occurence of a string */
4005 static char *
4006 mystrrstr(char *haystack, char *needle, unsigned short len, char *end,
4007 Bool caseSensitive)
4009 char *ptr;
4011 if(!haystack || !needle || !end)
4012 return NULL;
4014 for (ptr = haystack-2; ptr > end; ptr--) {
4015 if(caseSensitive) {
4016 if (*ptr == *needle && !strncmp(ptr, needle, len))
4017 return ptr;
4018 } else {
4019 if (tolower(*ptr) == tolower(*needle) &&
4020 !strncasecmp(ptr, needle, len))
4021 return ptr;
4025 return NULL;
4029 Bool
4030 WMFindInTextStream(WMText *tPtr, char *needle, Bool direction,
4031 Bool caseSensitive)
4033 TextBlock *tb;
4034 char *mark=NULL;
4035 unsigned short pos;
4037 if (!tPtr || !needle)
4038 return False;
4040 #if 0
4041 if (! (tb = tPtr->currentTextBlock)) {
4042 if (! (tb = ( (direction > 0) ?
4043 tPtr->firstTextBlock : tPtr->lastTextBlock) ) ){
4044 return False;
4046 } else {
4047 /* if(tb != ((direction>0) ?tPtr->firstTextBlock : tPtr->lastTextBlock))
4048 tb = (direction>0) ? tb->next : tb->prior; */
4049 if(tb != tPtr->lastTextBlock)
4050 tb = tb->prior;
4052 #endif
4053 tb = tPtr->currentTextBlock;
4054 pos = tPtr->tpos;
4057 while(tb) {
4058 if (!tb->graphic) {
4060 if(direction > 0) {
4061 if(pos+1 < tb->used)
4062 pos++;
4064 if(tb->used - pos> 0 && pos > 0) {
4065 mark = mystrstr(&tb->text[pos], needle,
4066 strlen(needle), &tb->text[tb->used], caseSensitive);
4068 } else {
4069 tb = tb->next;
4070 pos = 0;
4071 continue;
4074 } else {
4075 if(pos-1 > 0)
4076 pos--;
4078 if(pos > 0) {
4079 mark = mystrrstr(&tb->text[pos], needle,
4080 strlen(needle), tb->text, caseSensitive);
4081 } else {
4082 tb = tb->prior;
4083 if(!tb)
4084 return False;
4085 pos = tb->used;
4086 continue;
4091 if(mark) {
4092 WMFont *font = tPtr->flags.monoFont?tPtr->dFont:tb->d.font;
4094 tPtr->tpos = (int)(mark - tb->text);
4095 tPtr->currentTextBlock = tb;
4096 updateCursorPosition(tPtr);
4097 tPtr->sel.y = tPtr->cursor.y+5;
4098 tPtr->sel.h = tPtr->cursor.h-10;
4099 tPtr->sel.x = tPtr->cursor.x +1;
4100 tPtr->sel.w = WMIN(WMWidthOfString(font,
4101 &tb->text[tPtr->tpos], strlen(needle)),
4102 tPtr->docWidth - tPtr->sel.x);
4103 tPtr->flags.ownsSelection = True;
4104 paintText(tPtr);
4106 return True;
4110 tb = (direction>0) ? tb->next : tb->prior;
4111 if(tb) {
4112 pos = (direction>0) ? 0 : tb->used;
4116 return False;
4120 Bool
4121 WMReplaceTextSelection(WMText *tPtr, char *replacement)
4123 if (!tPtr)
4124 return False;
4126 if (!tPtr->flags.ownsSelection)
4127 return False;
4129 removeSelection(tPtr);
4131 if(replacement) {
4132 insertTextInteractively(tPtr, replacement, strlen(replacement));
4133 updateCursorPosition(tPtr);
4134 paintText(tPtr);
4137 return True;