fixed reqBlockSize... sometimes X%Y was zero... very bad
[wmaker-crm.git] / WINGs / wtext.c
blob001575e8a7d613880232d649d78caf5d0dab2f82
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 #define TEXT_BUFFER_INCR 8
1810 #define reqBlockSize(requested) (requested + TEXT_BUFFER_INCR)
1812 static void
1813 clearText(Text *tPtr)
1815 tPtr->vpos = tPtr->hpos = 0;
1816 tPtr->docHeight = tPtr->docWidth = 0;
1817 tPtr->cursor.x = -23;
1819 if (!tPtr->firstTextBlock)
1820 return;
1822 while (tPtr->currentTextBlock)
1823 WMDestroyTextBlock(tPtr, WMRemoveTextBlock(tPtr));
1825 tPtr->firstTextBlock = NULL;
1826 tPtr->currentTextBlock = NULL;
1827 tPtr->lastTextBlock = NULL;
1828 WMEmptyArray(tPtr->gfxItems);
1831 static void
1832 deleteTextInteractively(Text *tPtr, KeySym ksym)
1834 TextBlock *tb;
1835 Bool back = (Bool) (ksym == XK_BackSpace);
1836 Bool done = 1;
1837 Bool wasFirst = 0;
1839 if (!tPtr->flags.editable) {
1840 return;
1843 if ( !(tb = tPtr->currentTextBlock) )
1844 return;
1846 if (tPtr->flags.ownsSelection) {
1847 if(removeSelection(tPtr))
1848 layOutDocument(tPtr);
1849 return;
1852 wasFirst = tb->first;
1853 if (back && tPtr->tpos < 1) {
1854 if (tb->prior) {
1855 if(tb->prior->blank) {
1856 tPtr->currentTextBlock = tb->prior;
1857 WMRemoveTextBlock(tPtr);
1858 tPtr->currentTextBlock = tb;
1859 tb->first = True;
1860 layOutDocument(tPtr);
1861 return;
1862 } else {
1863 if(tb->blank) {
1864 TextBlock *prior = tb->prior;
1865 tPtr->currentTextBlock = tb;
1866 WMRemoveTextBlock(tPtr);
1867 tb = prior;
1868 } else {
1869 tb = tb->prior;
1872 tPtr->tpos = tb->used;
1873 tPtr->currentTextBlock = tb;
1874 done = 1;
1875 if(wasFirst) {
1876 if(tb->next)
1877 tb->next->first = False;
1878 layOutDocument(tPtr);
1879 return;
1885 if ( (tb->used > 0) && ((back?tPtr->tpos > 0:1))
1886 && (tPtr->tpos <= tb->used) && !tb->graphic) {
1887 if (back)
1888 tPtr->tpos--;
1889 memmove(&(tb->text[tPtr->tpos]),
1890 &(tb->text[tPtr->tpos + 1]), tb->used - tPtr->tpos);
1891 tb->used--;
1892 done = 0;
1895 if ( (back? (tPtr->tpos < 1 && !done) : ( tPtr->tpos >= tb->used))
1896 || tb->graphic) {
1898 TextBlock *sibling = (back? tb->prior : tb->next);
1900 if(tb->used == 0 || tb->graphic)
1901 WMDestroyTextBlock(tPtr, WMRemoveTextBlock(tPtr));
1903 if (sibling) {
1904 tPtr->currentTextBlock = sibling;
1905 tPtr->tpos = (back? sibling->used : 0);
1909 layOutDocument(tPtr);
1913 static void
1914 insertTextInteractively(Text *tPtr, char *text, int len)
1916 TextBlock *tb;
1917 char *newline = NULL;
1919 if (!tPtr->flags.editable) {
1920 return;
1923 if (len < 1 || !text)
1924 return;
1927 if(tPtr->flags.ignoreNewLine && *text == '\n' && len == 1)
1928 return;
1931 if (tPtr->flags.ownsSelection)
1932 removeSelection(tPtr);
1935 if (tPtr->flags.ignoreNewLine) {
1936 int i;
1937 for(i=0; i<len; i++) {
1938 if (text[i] == '\n')
1939 text[i] = ' ';
1943 tb = tPtr->currentTextBlock;
1944 if (!tb || tb->graphic) {
1945 tPtr->tpos = 0;
1946 WMAppendTextStream(tPtr, text);
1947 layOutDocument(tPtr);
1948 return;
1951 if ((newline = strchr(text, '\n'))) {
1952 int nlen = (int)(newline-text);
1953 int s = tb->used - tPtr->tpos;
1954 char save[s];
1955 if (!tb->blank && nlen>0) {
1956 if (s > 0) {
1957 memcpy(save, &tb->text[tPtr->tpos], s);
1958 tb->used -= (tb->used - tPtr->tpos);
1960 insertTextInteractively(tPtr, text, nlen);
1961 newline++;
1962 WMAppendTextStream(tPtr, newline);
1963 if (s>0)
1964 insertTextInteractively(tPtr, save, s);
1966 } else {
1967 if (tPtr->tpos>0 && tPtr->tpos < tb->used
1968 && !tb->graphic && tb->text) {
1970 void *ntb = WMCreateTextBlockWithText(
1971 tPtr, &tb->text[tPtr->tpos],
1972 tb->d.font, tb->color, True, tb->used - tPtr->tpos);
1973 tb->used = tPtr->tpos;
1974 WMAppendTextBlock(tPtr, ntb);
1975 tPtr->tpos = 0;
1977 } else if (tPtr->tpos == tb->used || tPtr->tpos == 0) {
1978 if(tPtr->flags.indentNewLine) {
1979 WMAppendTextBlock(tPtr, WMCreateTextBlockWithText(tPtr,
1980 " ", tb->d.font, tb->color, True, 4));
1981 tPtr->tpos = 4;
1982 } else {
1983 WMAppendTextBlock(tPtr, WMCreateTextBlockWithText(tPtr,
1984 NULL, tb->d.font, tb->color, True, 0));
1985 tPtr->tpos = 0;
1990 } else {
1991 if (tb->used + len >= tb->allocated) {
1992 tb->allocated = reqBlockSize(tb->used+len);
1993 printf("realloced %d... %d\n", tb->allocated, tb->used+len);
1994 tb->text = wrealloc(tb->text, tb->allocated);
1997 if (tb->blank) {
1998 memcpy(tb->text, text, len);
1999 tb->used = len;
2000 tPtr->tpos = len;
2001 tb->text[tb->used] = 0;
2002 tb->blank = False;
2004 } else {
2005 memmove(&(tb->text[tPtr->tpos+len]), &tb->text[tPtr->tpos],
2006 tb->used-tPtr->tpos+1);
2007 memmove(&tb->text[tPtr->tpos], text, len);
2008 tb->used += len;
2009 tPtr->tpos += len;
2010 tb->text[tb->used] = 0;
2015 layOutDocument(tPtr);
2019 static void
2020 selectRegion(Text *tPtr, int x, int y)
2023 if (x < 0 || y < 0)
2024 return;
2026 y += (tPtr->flags.rulerShown? 40: 0);
2027 y += tPtr->vpos;
2028 if (y>10)
2029 y -= 10; /* the original offset */
2031 x -= tPtr->visible.x-2;
2032 if (x<0)
2033 x=0;
2035 tPtr->sel.x = WMAX(0, WMIN(tPtr->clicked.x, x));
2036 tPtr->sel.w = abs(tPtr->clicked.x - x);
2037 tPtr->sel.y = WMAX(0, WMIN(tPtr->clicked.y, y));
2038 tPtr->sel.h = abs(tPtr->clicked.y - y);
2040 tPtr->flags.ownsSelection = True;
2041 paintText(tPtr);
2045 static void
2046 releaseSelection(Text *tPtr)
2048 TextBlock *tb = tPtr->firstTextBlock;
2050 while(tb) {
2051 tb->selected = False;
2052 tb = tb->next;
2054 tPtr->flags.ownsSelection = False;
2055 WMDeleteSelectionHandler(tPtr->view, XA_PRIMARY,
2056 CurrentTime);
2058 paintText(tPtr);
2062 WMData*
2063 requestHandler(WMView *view, Atom selection, Atom target, void *cdata,
2064 Atom *type)
2066 Text *tPtr = view->self;
2067 Display *dpy = tPtr->view->screen->display;
2068 Atom _TARGETS;
2069 Atom TEXT = XInternAtom(dpy, "TEXT", False);
2070 Atom COMPOUND_TEXT = XInternAtom(dpy, "COMPOUND_TEXT", False);
2071 WMData *data = NULL;
2074 if (target == XA_STRING || target == TEXT || target == COMPOUND_TEXT) {
2075 char *text = WMGetTextSelectedStream(tPtr);
2077 if (text) {
2078 data = WMCreateDataWithBytes(text, strlen(text));
2079 WMSetDataFormat(data, TYPETEXT);
2081 *type = target;
2082 return data;
2083 } else printf("didn't get it\n");
2085 _TARGETS = XInternAtom(dpy, "TARGETS", False);
2086 if (target == _TARGETS) {
2087 Atom *ptr;
2089 ptr = wmalloc(4 * sizeof(Atom));
2090 ptr[0] = _TARGETS;
2091 ptr[1] = XA_STRING;
2092 ptr[2] = TEXT;
2093 ptr[3] = COMPOUND_TEXT;
2095 data = WMCreateDataWithBytes(ptr, 4*4);
2096 WMSetDataFormat(data, 32);
2098 *type = target;
2099 return data;
2102 return NULL;
2105 static void
2106 lostHandler(WMView *view, Atom selection, void *cdata)
2108 releaseSelection((WMText *)view->self);
2111 static WMSelectionProcs selectionHandler = {
2112 requestHandler, lostHandler, NULL
2116 static void
2117 ownershipObserver(void *observerData, WMNotification *notification)
2119 if (observerData != WMGetNotificationClientData(notification))
2120 lostHandler(WMWidgetView(observerData), XA_PRIMARY, NULL);
2123 static void
2124 autoSelectText(Text *tPtr, int clicks)
2126 int x, start;
2127 TextBlock *tb;
2128 char *mark = NULL, behind, ahead;
2130 if(!(tb = tPtr->currentTextBlock))
2131 return;
2133 if(clicks == 2) {
2136 switch(tb->text[tPtr->tpos]) {
2137 case ' ': return;
2139 case '<': case '>': behind = '<'; ahead = '>'; break;
2140 case '{': case '}': behind = '{'; ahead = '}'; break;
2141 case '[': case ']': behind = '['; ahead = ']'; break;
2143 default: behind = ahead = ' ';
2146 tPtr->sel.y = tPtr->cursor.y+5;
2147 tPtr->sel.h = 6;/*tPtr->cursor.h-10;*/
2149 if(tb->graphic) {
2150 tPtr->sel.x = tb->sections[0].x;
2151 tPtr->sel.w = tb->sections[0].w;
2152 } else {
2153 WMFont *font = tPtr->flags.monoFont?tPtr->dFont:tb->d.font;
2155 start = tPtr->tpos;
2156 while(start > 0 && tb->text[start-1] != behind)
2157 start--;
2159 x = tPtr->cursor.x;
2160 if(tPtr->tpos > start){
2161 x -= WMWidthOfString(font, &tb->text[start],
2162 tPtr->tpos - start);
2164 tPtr->sel.x = (x<0?0:x)+1;
2166 if((mark = strchr(&tb->text[start], ahead))) {
2167 tPtr->sel.w = WMWidthOfString(font, &tb->text[start],
2168 (int)(mark - &tb->text[start]));
2169 } else if(tb->used > start) {
2170 tPtr->sel.w = WMWidthOfString(font, &tb->text[start],
2171 tb->used - start);
2175 } else if(clicks == 3) {
2176 TextBlock *cur = tb;
2178 while(tb && !tb->first) {
2179 tb = tb->prior;
2181 tPtr->sel.y = tb->sections[0]._y;
2183 tb = cur;
2184 while(tb->next && !tb->next->first) {
2185 tb = tb->next;
2187 tPtr->sel.h = tb->sections[tb->nsections-1]._y
2188 + 5 - tPtr->sel.y;
2190 tPtr->sel.x = 0;
2191 tPtr->sel.w = tPtr->docWidth;
2192 tPtr->clicked.x = 0; /* only for now, fix sel. code */
2195 if (!tPtr->flags.ownsSelection) {
2196 WMCreateSelectionHandler(tPtr->view,
2197 XA_PRIMARY, tPtr->lastClickTime, &selectionHandler, NULL);
2198 tPtr->flags.ownsSelection = True;
2200 paintText(tPtr);
2205 static void
2206 fontChanged(void *observerData, WMNotification *notification)
2208 WMText *tPtr = (WMText *) observerData;
2209 WMFont *font = (WMFont *)WMGetNotificationClientData(notification);
2210 printf("fontChanged\n");
2212 if(!tPtr || !font)
2213 return;
2215 if (tPtr->flags.ownsSelection)
2216 WMSetTextSelectionFont(tPtr, font);
2220 static void
2221 handleTextKeyPress(Text *tPtr, XEvent *event)
2223 char buffer[64];
2224 KeySym ksym;
2225 int control_pressed = False;
2226 TextBlock *tb = NULL;
2228 if (((XKeyEvent *) event)->state & ControlMask)
2229 control_pressed = True;
2230 buffer[XLookupString(&event->xkey, buffer, 63, &ksym, NULL)] = 0;
2231 if(!*buffer)
2232 return;
2235 switch(ksym) {
2237 case XK_Left:
2238 if(!(tb = tPtr->currentTextBlock))
2239 break;
2240 if(tb->graphic)
2241 goto L_imaGFX;
2243 if(tPtr->tpos==0) {
2244 L_imaGFX: if(tb->prior) {
2245 tPtr->currentTextBlock = tb->prior;
2246 tPtr->tpos = tPtr->currentTextBlock->used -1;
2247 } else tPtr->tpos = 0;
2248 } else tPtr->tpos--;
2249 updateCursorPosition(tPtr);
2250 paintText(tPtr);
2251 break;
2253 case XK_Right:
2254 if(!(tb = tPtr->currentTextBlock))
2255 break;
2256 if(tb->graphic)
2257 goto R_imaGFX;
2258 if(tPtr->tpos == tb->used) {
2259 R_imaGFX: if(tb->next) {
2260 tPtr->currentTextBlock = tb->next;
2261 tPtr->tpos = 1;
2262 } else tPtr->tpos = tb->used;
2263 } else tPtr->tpos++;
2264 updateCursorPosition(tPtr);
2265 paintText(tPtr);
2266 break;
2268 case XK_Down:
2269 cursorToTextPosition(tPtr, tPtr->cursor.x + tPtr->visible.x,
2270 tPtr->clicked.y + tPtr->cursor.h - tPtr->vpos);
2271 paintText(tPtr);
2272 break;
2274 case XK_Up:
2275 cursorToTextPosition(tPtr, tPtr->cursor.x + tPtr->visible.x,
2276 tPtr->visible.y + tPtr->cursor.y - tPtr->vpos - 3);
2277 paintText(tPtr);
2278 break;
2280 case XK_BackSpace:
2281 case XK_Delete:
2282 #ifdef XK_KP_Delete
2283 case XK_KP_Delete:
2284 #endif
2285 deleteTextInteractively(tPtr, ksym);
2286 updateCursorPosition(tPtr);
2287 paintText(tPtr);
2288 break;
2290 case XK_Control_R :
2291 case XK_Control_L :
2292 control_pressed = True;
2293 break;
2295 case XK_Tab:
2296 insertTextInteractively(tPtr, " ", 4);
2297 updateCursorPosition(tPtr);
2298 paintText(tPtr);
2299 break;
2301 case XK_Return:
2302 *buffer = '\n';
2303 default:
2304 if (*buffer != 0 && !control_pressed) {
2305 insertTextInteractively(tPtr, buffer, strlen(buffer));
2306 updateCursorPosition(tPtr);
2307 paintText(tPtr);
2309 } else if (control_pressed && ksym==XK_r) {
2310 Bool i = !tPtr->flags.rulerShown;
2311 WMShowTextRuler(tPtr, i);
2312 tPtr->flags.rulerShown = i;
2314 else if (control_pressed && *buffer == '\a')
2315 XBell(tPtr->view->screen->display, 0);
2316 else
2317 WMRelayToNextResponder(tPtr->view, event);
2320 if (!control_pressed && tPtr->flags.ownsSelection)
2321 releaseSelection(tPtr);
2325 static void
2326 pasteText(WMView *view, Atom selection, Atom target, Time timestamp,
2327 void *cdata, WMData *data)
2329 Text *tPtr = (Text *)view->self;
2330 char *text;
2332 tPtr->flags.waitingForSelection = 0;
2334 if (data) {
2335 text = (char*)WMDataBytes(data);
2337 if (tPtr->parser) {
2338 (tPtr->parser) (tPtr, (void *) text);
2339 layOutDocument(tPtr);
2340 } else insertTextInteractively(tPtr, text, strlen(text));
2341 updateCursorPosition(tPtr);
2342 paintText(tPtr);
2344 } else {
2345 int n;
2347 text = XFetchBuffer(tPtr->view->screen->display, &n, 0);
2349 if (text) {
2350 text[n] = 0;
2351 if (tPtr->parser) {
2352 (tPtr->parser) (tPtr, (void *) text);
2353 layOutDocument(tPtr);
2354 } else insertTextInteractively(tPtr, text, n);
2355 updateCursorPosition(tPtr);
2356 paintText(tPtr);
2358 XFree(text);
2366 static void
2367 handleActionEvents(XEvent *event, void *data)
2369 Text *tPtr = (Text *)data;
2370 Display *dpy = event->xany.display;
2371 KeySym ksym;
2374 switch (event->type) {
2375 case KeyPress:
2376 ksym = XLookupKeysym((XKeyEvent*)event, 0);
2377 if (ksym == XK_Shift_R || ksym == XK_Shift_L) {
2378 tPtr->flags.extendSelection = True;
2379 return;
2382 if (tPtr->flags.focused) {
2383 XGrabPointer(dpy, W_VIEW(tPtr)->window, False,
2384 PointerMotionMask|ButtonPressMask|ButtonReleaseMask,
2385 GrabModeAsync, GrabModeAsync, None,
2386 tPtr->view->screen->invisibleCursor, CurrentTime);
2387 tPtr->flags.pointerGrabbed = True;
2388 handleTextKeyPress(tPtr, event);
2390 } break;
2392 case KeyRelease:
2393 ksym = XLookupKeysym((XKeyEvent*)event, 0);
2394 if (ksym == XK_Shift_R || ksym == XK_Shift_L) {
2395 tPtr->flags.extendSelection = False;
2396 return;
2397 /* end modify flag so selection can be extended */
2399 break;
2402 case MotionNotify:
2404 if (tPtr->flags.pointerGrabbed) {
2405 tPtr->flags.pointerGrabbed = False;
2406 XUngrabPointer(dpy, CurrentTime);
2409 if(tPtr->flags.waitingForSelection)
2410 break;
2412 if ((event->xmotion.state & Button1Mask)) {
2413 TextBlock *tb = tPtr->currentTextBlock;
2415 if(tPtr->flags.isOverGraphic && tb && tb->graphic && !tb->object) {
2416 WMSize offs;
2417 WMPixmap *pixmap = tb->d.pixmap;
2418 char *types[2] = {"application/X-image", NULL};
2420 offs.width = 2;
2421 offs.height = 2;
2423 WMDragImageFromView(tPtr->view, pixmap, types,
2424 wmkpoint(event->xmotion.x_root, event->xmotion.y_root),
2425 offs, event, True);
2428 } else {
2429 if (!tPtr->flags.ownsSelection) {
2430 WMCreateSelectionHandler(tPtr->view,
2431 XA_PRIMARY, event->xbutton.time,
2432 &selectionHandler, NULL);
2433 tPtr->flags.ownsSelection = True;
2436 selectRegion(tPtr, event->xmotion.x, event->xmotion.y);
2437 break;
2440 mouseOverObject(tPtr, event->xmotion.x, event->xmotion.y);
2441 break;
2444 case ButtonPress:
2446 if (tPtr->flags.pointerGrabbed) {
2447 tPtr->flags.pointerGrabbed = False;
2448 XUngrabPointer(dpy, CurrentTime);
2449 break;
2452 if (tPtr->flags.waitingForSelection)
2453 break;
2455 if (tPtr->flags.extendSelection) {
2456 selectRegion(tPtr, event->xmotion.x, event->xmotion.y);
2457 return;
2460 if (tPtr->flags.ownsSelection)
2461 releaseSelection(tPtr);
2464 if (event->xbutton.button == Button1) {
2466 if(WMIsDoubleClick(event)) {
2467 TextBlock *tb = tPtr->currentTextBlock;
2469 tPtr->lastClickTime = event->xbutton.time;
2470 if(tb && tb->graphic && !tb->object) {
2471 char desc[tb->used+1];
2472 memcpy(desc, tb->text, tb->used);
2473 desc[tb->used] = 0;
2474 if(tPtr->delegate) {
2475 if(tPtr->delegate->didDoubleClickOnPicture)
2476 (*tPtr->delegate->didDoubleClickOnPicture)
2477 (tPtr->delegate, desc);
2479 } else {
2480 autoSelectText(tPtr, 2);
2482 break;
2483 } else if(event->xbutton.time - tPtr->lastClickTime
2484 < WINGsConfiguration.doubleClickDelay) {
2485 tPtr->lastClickTime = event->xbutton.time;
2486 autoSelectText(tPtr, 3);
2487 break;
2490 if (!tPtr->flags.focused) {
2491 WMSetFocusToWidget(tPtr);
2492 tPtr->flags.focused = True;
2495 tPtr->lastClickTime = event->xbutton.time;
2496 cursorToTextPosition(tPtr, event->xmotion.x, event->xmotion.y);
2497 paintText(tPtr);
2500 if (event->xbutton.button
2501 == WINGsConfiguration.mouseWheelDown) {
2502 WMScrollText(tPtr, 16);
2503 break;
2506 if (event->xbutton.button
2507 == WINGsConfiguration.mouseWheelUp) {
2508 WMScrollText(tPtr, -16);
2509 break;
2512 if (event->xbutton.button == Button2) {
2513 char *text = NULL;
2514 int n;
2516 if (!tPtr->flags.editable) {
2517 XBell(dpy, 0);
2518 break;
2521 if (!WMRequestSelection(tPtr->view, XA_PRIMARY, XA_STRING,
2522 event->xbutton.time, pasteText, NULL)) {
2524 text = XFetchBuffer(tPtr->view->screen->display, &n, 0);
2525 tPtr->flags.waitingForSelection = 0;
2527 if (text) {
2528 text[n] = 0;
2530 if (tPtr->parser) {
2531 (tPtr->parser) (tPtr, (void *) text);
2532 layOutDocument(tPtr);
2534 else
2535 insertTextInteractively(tPtr, text, n);
2537 XFree(text);
2538 #if 0
2539 NOTIFY(tPtr, didChange, WMTextDidChangeNotification,
2540 (void*)WMInsertTextEvent);
2541 #endif
2542 updateCursorPosition(tPtr);
2543 paintText(tPtr);
2545 } else {
2546 tPtr->flags.waitingForSelection = True;
2549 break;
2553 case ButtonRelease:
2554 if (tPtr->flags.pointerGrabbed) {
2555 tPtr->flags.pointerGrabbed = False;
2556 XUngrabPointer(dpy, CurrentTime);
2557 break;
2560 if (tPtr->flags.waitingForSelection)
2561 break;
2567 static void
2568 handleEvents(XEvent *event, void *data)
2570 Text *tPtr = (Text *)data;
2572 switch(event->type) {
2573 case Expose:
2575 if (event->xexpose.count!=0)
2576 break;
2578 if(tPtr->hS) {
2579 if (!(W_VIEW(tPtr->hS))->flags.realized)
2580 WMRealizeWidget(tPtr->hS);
2583 if(tPtr->vS) {
2584 if (!(W_VIEW(tPtr->vS))->flags.realized)
2585 WMRealizeWidget(tPtr->vS);
2588 if(tPtr->ruler) {
2589 if (!(W_VIEW(tPtr->ruler))->flags.realized)
2590 WMRealizeWidget(tPtr->ruler);
2594 if(!tPtr->db)
2595 textDidResize(tPtr->view->delegate, tPtr->view);
2597 paintText(tPtr);
2598 break;
2600 case FocusIn:
2601 if (W_FocusedViewOfToplevel(W_TopLevelOfView(tPtr->view))
2602 != tPtr->view)
2603 return;
2604 tPtr->flags.focused = True;
2605 #if DO_BLINK
2606 if (tPtr->flags.editable && !tPtr->timerID) {
2607 tPtr->timerID = WMAddTimerHandler(12+0*CURSOR_BLINK_ON_DELAY,
2608 blinkCursor, tPtr);
2610 #endif
2612 break;
2614 case FocusOut:
2615 tPtr->flags.focused = False;
2616 paintText(tPtr);
2617 #if DO_BLINK
2618 if (tPtr->timerID) {
2619 WMDeleteTimerHandler(tPtr->timerID);
2620 tPtr->timerID = NULL;
2622 #endif
2623 break;
2626 case DestroyNotify:
2627 clearText(tPtr);
2628 if(tPtr->db)
2629 XFreePixmap(tPtr->view->screen->display, tPtr->db);
2630 if(tPtr->gfxItems)
2631 WMEmptyArray(tPtr->gfxItems);
2632 #if DO_BLINK
2633 if (tPtr->timerID)
2634 WMDeleteTimerHandler(tPtr->timerID);
2635 #endif
2636 WMReleaseFont(tPtr->dFont);
2637 WMReleaseColor(tPtr->dColor);
2638 WMDeleteSelectionHandler(tPtr->view, XA_PRIMARY, CurrentTime);
2639 WMRemoveNotificationObserver(tPtr);
2641 wfree(tPtr);
2643 break;
2649 static void
2650 insertPlainText(Text *tPtr, char *text)
2652 char *start, *mark;
2653 void *tb = NULL;
2655 start = text;
2656 while (start) {
2657 mark = strchr(start, '\n');
2658 if (mark) {
2659 tb = WMCreateTextBlockWithText(tPtr,
2660 start, tPtr->dFont,
2661 tPtr->dColor, tPtr->flags.first, (int)(mark-start));
2662 start = mark+1;
2663 tPtr->flags.first = True;
2664 } else {
2665 if (start && strlen(start)) {
2666 tb = WMCreateTextBlockWithText(tPtr, start, tPtr->dFont,
2667 tPtr->dColor, tPtr->flags.first, strlen(start));
2668 } else tb = NULL;
2669 tPtr->flags.first = False;
2670 start = mark;
2673 if (tPtr->flags.prepend)
2674 WMPrependTextBlock(tPtr, tb);
2675 else
2676 WMAppendTextBlock(tPtr, tb);
2681 static void
2682 rulerMoveCallBack(WMWidget *w, void *self)
2684 Text *tPtr = (Text *)self;
2686 if (!tPtr)
2687 return;
2688 if (W_CLASS(tPtr) != WC_Text)
2689 return;
2691 paintText(tPtr);
2695 static void
2696 rulerReleaseCallBack(WMWidget *w, void *self)
2698 Text *tPtr = (Text *)self;
2700 if (!tPtr)
2701 return;
2702 if (W_CLASS(tPtr) != WC_Text)
2703 return;
2705 WMThawText(tPtr);
2706 return;
2709 static unsigned
2710 draggingSourceOperation(WMView *self, Bool local)
2712 return WDOperationCopy;
2715 static WMData*
2716 fetchDragData(WMView *self, char *type)
2718 TextBlock *tb = ((WMText *)self->self)->currentTextBlock;
2719 char *desc;
2720 WMData *data;
2722 if (!tb)
2723 return NULL;
2725 printf("type is [%s]\n", type);
2726 desc = wmalloc(tb->used+1);
2727 memcpy(desc, tb->text, tb->used);
2728 desc[tb->used] = 0;
2729 data = WMCreateDataWithBytes(desc, strlen(desc)+1);
2731 wfree(desc);
2733 return data;
2737 static WMDragSourceProcs _DragSourceProcs = {
2738 draggingSourceOperation,
2739 NULL,
2740 NULL,
2741 fetchDragData
2745 static unsigned
2746 draggingEntered(WMView *self, WMDraggingInfo *info)
2748 printf("draggingEntered\n");
2749 return WDOperationCopy;
2753 static unsigned
2754 draggingUpdated(WMView *self, WMDraggingInfo *info)
2756 return WDOperationCopy;
2760 static void
2761 draggingExited(WMView *self, WMDraggingInfo *info)
2763 printf("draggingExited\n");
2766 static Bool
2767 prepareForDragOperation(WMView *self, WMDraggingInfo *info)
2769 printf("prepareForDragOperation\n");
2770 return True;
2774 char *badbadbad;
2776 static void
2777 receivedData(WMView *view, Atom selection, Atom target, Time timestamp,
2778 void *cdata, WMData *data)
2780 badbadbad = wstrdup((char *)WMDataBytes(data));
2784 /* when it's done in WINGs, remove this */
2786 Bool
2787 requestDroppedData(WMView *view, WMDraggingInfo *info, char *type)
2789 WMScreen *scr = W_VIEW_SCREEN(view);
2791 if (!WMRequestSelection(scr->dragInfo.destView,
2792 scr->xdndSelectionAtom,
2793 XInternAtom(scr->display, type, False),
2794 scr->dragInfo.timestamp,
2795 receivedData, &scr->dragInfo)) {
2796 wwarning("could not request data for dropped data");
2800 XEvent ev;
2802 ev.type = ClientMessage;
2803 ev.xclient.message_type = scr->xdndFinishedAtom;
2804 ev.xclient.format = 32;
2805 ev.xclient.window = info->destinationWindow;
2806 ev.xclient.data.l[0] = 0;
2807 ev.xclient.data.l[1] = 0;
2808 ev.xclient.data.l[2] = 0;
2809 ev.xclient.data.l[3] = 0;
2810 ev.xclient.data.l[4] = 0;
2812 XSendEvent(scr->display, info->sourceWindow, False, 0, &ev);
2813 XFlush(scr->display);
2815 return True;
2818 static Bool
2819 performDragOperation(WMView *self, WMDraggingInfo *info)
2821 WMColor *color;
2822 WMText *tPtr = (WMText *)self->self;
2824 if (!tPtr)
2825 return True;
2827 requestDroppedData(tPtr->view, info, "application/X-color");
2828 color = WMCreateNamedColor(W_VIEW_SCREEN(self), badbadbad, True);
2829 if(color) {
2830 WMSetTextSelectionColor(tPtr, color);
2831 WMReleaseColor(color);
2836 return True;
2839 static void
2840 concludeDragOperation(WMView *self, WMDraggingInfo *info)
2842 printf("concludeDragOperation\n");
2846 static WMDragDestinationProcs _DragDestinationProcs = {
2847 draggingEntered,
2848 draggingUpdated,
2849 draggingExited,
2850 prepareForDragOperation,
2851 performDragOperation,
2852 concludeDragOperation
2856 char *
2857 getStream(WMText *tPtr, int sel, int array)
2859 TextBlock *tb = NULL;
2860 char *text = NULL;
2861 unsigned long where = 0;
2863 if (!tPtr)
2864 return NULL;
2866 if (!(tb = tPtr->firstTextBlock))
2867 return NULL;
2869 if (tPtr->writer) {
2870 (tPtr->writer) (tPtr, (void *) text);
2871 return text;
2874 tb = tPtr->firstTextBlock;
2875 while (tb) {
2877 if (!tb->graphic || (tb->graphic && !tPtr->flags.monoFont)) {
2879 if (!sel || (tb->graphic && tb->selected)) {
2881 if (!tPtr->flags.ignoreNewLine && (tb->first || tb->blank)
2882 && tb != tPtr->firstTextBlock) {
2883 text = wrealloc(text, where+1);
2884 text[where++] = '\n';
2887 if(tb->blank)
2888 goto _gSnext;
2890 if(tb->graphic && array) {
2891 text = wrealloc(text, where+4);
2892 text[where++] = 0xFA;
2893 text[where++] = (tb->used>>8)&0x0ff;
2894 text[where++] = tb->used&0x0ff;
2895 text[where++] = tb->allocated; /* extra info */
2897 text = wrealloc(text, where+tb->used);
2898 memcpy(&text[where], tb->text, tb->used);
2899 where += tb->used;
2902 } else if (sel && tb->selected) {
2904 if (!tPtr->flags.ignoreNewLine && tb->blank) {
2905 text = wrealloc(text, where+1);
2906 text[where++] = '\n';
2909 if(tb->blank)
2910 goto _gSnext;
2912 text = wrealloc(text, where+(tb->s_end - tb->s_begin));
2913 memcpy(&text[where], &tb->text[tb->s_begin],
2914 tb->s_end - tb->s_begin);
2915 where += tb->s_end - tb->s_begin;
2920 _gSnext:tb = tb->next;
2923 /* +1 for the end of string, let's be nice */
2924 text = wrealloc(text, where+1);
2925 text[where] = 0;
2926 return text;
2930 static void
2931 releaseStreamObjects(void *data)
2933 if(data)
2934 wfree(data);
2937 WMArray *
2938 getStreamObjects(WMText *tPtr, int sel)
2940 WMArray *array = WMCreateArrayWithDestructor(4, releaseStreamObjects);
2941 WMData *data;
2942 char *stream;
2943 unsigned short len;
2944 char *start, *fa, *desc;
2946 stream = getStream(tPtr, sel, 1);
2947 if(!stream)
2948 return NULL;
2950 start = stream;
2951 while (start) {
2953 fa = strchr(start, 0xFA);
2954 if (fa) {
2955 if((int)(fa - start)>0) {
2956 desc = start;
2957 desc[(int)(fa - start)] = 0;
2958 data = WMCreateDataWithBytes((void *)desc, (int)(fa - start));
2959 WMSetDataFormat(data, TYPETEXT);
2960 WMAddToArray(array, (void *) data);
2963 len = *(fa+1)*0xff + *(fa+2);
2964 data = WMCreateDataWithBytes((void *)(fa+4), len);
2965 WMSetDataFormat(data, *(fa+3));
2966 WMAddToArray(array, (void *) data);
2967 start = fa + len + 4;
2969 } else {
2970 if (start && strlen(start)) {
2971 data = WMCreateDataWithBytes((void *)start, strlen(start));
2972 WMSetDataFormat(data, TYPETEXT);
2973 WMAddToArray(array, (void *) data);
2975 start = fa;
2979 wfree(stream);
2980 return array;
2984 WMText *
2985 WMCreateTextForDocumentType(WMWidget *parent, WMAction *parser, WMAction *writer)
2987 Text *tPtr;
2989 tPtr = wmalloc(sizeof(Text));
2990 memset(tPtr, 0, sizeof(Text));
2991 tPtr->widgetClass = WC_Text;
2992 tPtr->view = W_CreateView(W_VIEW(parent));
2993 if (!tPtr->view) {
2994 perror("could not create text's view\n");
2995 wfree(tPtr);
2996 return NULL;
2998 tPtr->view->self = tPtr;
2999 tPtr->view->attribs.cursor = tPtr->view->screen->textCursor;
3000 tPtr->view->attribFlags |= CWOverrideRedirect | CWCursor;
3001 W_ResizeView(tPtr->view, 250, 200);
3003 tPtr->dColor = WMWhiteColor(tPtr->view->screen);
3004 tPtr->bgGC = WMColorGC(tPtr->dColor);
3005 W_SetViewBackgroundColor(tPtr->view, tPtr->dColor);
3006 WMReleaseColor(tPtr->dColor);
3008 tPtr->dColor = WMBlackColor(tPtr->view->screen);
3009 tPtr->fgGC = WMColorGC(tPtr->dColor);
3011 tPtr->ruler = NULL;
3012 tPtr->vS = NULL;
3013 tPtr->hS = NULL;
3015 tPtr->dFont = WMRetainFont(WMSystemFontOfSize(tPtr->view->screen, 12));
3017 tPtr->view->delegate = &_TextViewDelegate;
3019 tPtr->delegate = NULL;
3021 #if DO_BLINK
3022 tPtr->timerID = NULL;
3023 #endif
3025 WMCreateEventHandler(tPtr->view, ExposureMask|StructureNotifyMask
3026 |EnterWindowMask|LeaveWindowMask|FocusChangeMask,
3027 handleEvents, tPtr);
3029 WMCreateEventHandler(tPtr->view, ButtonReleaseMask|ButtonPressMask
3030 |KeyReleaseMask|KeyPressMask|Button1MotionMask,
3031 handleActionEvents, tPtr);
3033 WMAddNotificationObserver(ownershipObserver, tPtr,
3034 "_lostOwnership", tPtr);
3036 WMSetViewDragSourceProcs(tPtr->view, &_DragSourceProcs);
3037 WMSetViewDragDestinationProcs(tPtr->view, &_DragDestinationProcs);
3041 char *types[3] = {"application/X-color", "application/X-image", NULL};
3042 WMRegisterViewForDraggedTypes(tPtr->view, types);
3045 WMAddNotificationObserver(fontChanged, tPtr,
3046 "WMFontPanelDidChangeNotification", tPtr);
3048 tPtr->firstTextBlock = NULL;
3049 tPtr->lastTextBlock = NULL;
3050 tPtr->currentTextBlock = NULL;
3051 tPtr->tpos = 0;
3053 tPtr->gfxItems = WMCreateArray(4);
3055 tPtr->parser = parser;
3056 tPtr->writer = writer;
3058 tPtr->sel.x = tPtr->sel.y = 2;
3059 tPtr->sel.w = tPtr->sel.h = 0;
3061 tPtr->clicked.x = tPtr->clicked.y = 2;
3063 tPtr->visible.x = tPtr->visible.y = 2;
3064 tPtr->visible.h = tPtr->view->size.height;
3065 tPtr->visible.w = tPtr->view->size.width - 4;
3067 tPtr->cursor.x = -23;
3069 tPtr->docWidth = 0;
3070 tPtr->docHeight = 0;
3071 tPtr->dBulletPix = WMCreatePixmapFromXPMData(tPtr->view->screen,
3072 default_bullet);
3073 tPtr->db = (Pixmap) NULL;
3074 tPtr->bgPixmap = NULL;
3076 tPtr->margins = WMGetRulerMargins(NULL);
3077 tPtr->margins->right = tPtr->visible.w;
3078 tPtr->nMargins = 1;
3080 tPtr->flags.rulerShown = False;
3081 tPtr->flags.monoFont = False;
3082 tPtr->flags.focused = False;
3083 tPtr->flags.editable = True;
3084 tPtr->flags.ownsSelection = False;
3085 tPtr->flags.pointerGrabbed = False;
3086 tPtr->flags.extendSelection = False;
3087 tPtr->flags.frozen = False;
3088 tPtr->flags.cursorShown = True;
3089 tPtr->flags.acceptsGraphic = False;
3090 tPtr->flags.horizOnDemand = False;
3091 tPtr->flags.needsLayOut = False;
3092 tPtr->flags.ignoreNewLine = False;
3093 tPtr->flags.indentNewLine = False;
3094 tPtr->flags.laidOut = False;
3095 tPtr->flags.waitingForSelection = False;
3096 tPtr->flags.prepend = False;
3097 tPtr->flags.isOverGraphic = False;
3098 tPtr->flags.relief = WRSunken;
3099 tPtr->flags.isOverGraphic = 0;
3100 tPtr->flags.alignment = WALeft;
3101 tPtr->flags.first = True;
3103 return tPtr;
3106 void
3107 WMPrependTextStream(WMText *tPtr, char *text)
3109 CHECK_CLASS(tPtr, WC_Text);
3111 if(!text) {
3112 if (tPtr->flags.ownsSelection)
3113 releaseSelection(tPtr);
3114 clearText(tPtr);
3115 updateScrollers(tPtr);
3116 return;
3119 tPtr->flags.prepend = True;
3120 if (text && tPtr->parser)
3121 (tPtr->parser) (tPtr, (void *) text);
3122 else
3123 insertPlainText(tPtr, text);
3125 tPtr->flags.needsLayOut = True;
3126 tPtr->tpos = 0;
3127 if(!tPtr->flags.frozen) {
3128 layOutDocument(tPtr);
3133 void
3134 WMAppendTextStream(WMText *tPtr, char *text)
3136 CHECK_CLASS(tPtr, WC_Text);
3138 if(!text) {
3139 if (tPtr->flags.ownsSelection)
3140 releaseSelection(tPtr);
3141 clearText(tPtr);
3142 updateScrollers(tPtr);
3143 return;
3146 tPtr->flags.prepend = False;
3147 if (text && tPtr->parser)
3148 (tPtr->parser) (tPtr, (void *) text);
3149 else
3150 insertPlainText(tPtr, text);
3152 tPtr->flags.needsLayOut = True;
3153 if(tPtr->currentTextBlock)
3154 tPtr->tpos = tPtr->currentTextBlock->used;
3156 if(!tPtr->flags.frozen) {
3157 layOutDocument(tPtr);
3162 char *
3163 WMGetTextStream(WMText *tPtr)
3165 CHECK_CLASS(tPtr, WC_Text);
3166 return getStream(tPtr, 0, 0);
3169 char *
3170 WMGetTextSelectedStream(WMText *tPtr)
3172 CHECK_CLASS(tPtr, WC_Text);
3173 return getStream(tPtr, 1, 0);
3176 WMArray *
3177 WMGetTextObjects(WMText *tPtr)
3179 CHECK_CLASS(tPtr, WC_Text);
3180 return getStreamObjects(tPtr, 0);
3183 WMArray *
3184 WMGetTextSelectedObjects(WMText *tPtr)
3186 CHECK_CLASS(tPtr, WC_Text);
3187 return getStreamObjects(tPtr, 1);
3191 void
3192 WMSetTextDelegate(WMText *tPtr, WMTextDelegate *delegate)
3194 CHECK_CLASS(tPtr, WC_Text);
3196 tPtr->delegate = delegate;
3200 void *
3201 WMCreateTextBlockWithObject(WMText *tPtr, WMWidget *w,
3202 char *description, WMColor *color,
3203 unsigned short first, unsigned short extraInfo)
3205 TextBlock *tb;
3207 if (!w || !description || !color)
3208 return NULL;
3210 tb = wmalloc(sizeof(TextBlock));
3211 if (!tb)
3212 return NULL;
3214 tb->text = wstrdup(description);
3215 tb->used = strlen(description);
3216 tb->blank = False;
3217 tb->d.widget = w;
3218 tb->color = WMRetainColor(color);
3219 tb->marginN = newMargin(tPtr, NULL);
3220 tb->allocated = extraInfo;
3221 tb->first = first;
3222 tb->kanji = False;
3223 tb->graphic = True;
3224 tb->object = True;
3225 tb->underlined = False;
3226 tb->selected = False;
3227 tb->script = 0;
3228 tb->sections = NULL;
3229 tb->nsections = 0;
3230 tb->prior = NULL;
3231 tb->next = NULL;
3233 return tb;
3237 void *
3238 WMCreateTextBlockWithPixmap(WMText *tPtr, WMPixmap *p,
3239 char *description, WMColor *color,
3240 unsigned short first, unsigned short extraInfo)
3242 TextBlock *tb;
3244 if (!p || !description || !color)
3245 return NULL;
3247 tb = wmalloc(sizeof(TextBlock));
3248 if (!tb)
3249 return NULL;
3251 tb->text = wstrdup(description);
3252 tb->used = strlen(description);
3253 tb->blank = False;
3254 tb->d.pixmap = WMRetainPixmap(p);
3255 tb->color = WMRetainColor(color);
3256 tb->marginN = newMargin(tPtr, NULL);
3257 tb->allocated = extraInfo;
3258 tb->first = first;
3259 tb->kanji = False;
3260 tb->graphic = True;
3261 tb->object = False;
3262 tb->underlined = False;
3263 tb->selected = False;
3264 tb->script = 0;
3265 tb->sections = NULL;
3266 tb->nsections = 0;
3267 tb->prior = NULL;
3268 tb->next = NULL;
3270 return tb;
3274 void*
3275 WMCreateTextBlockWithText(WMText *tPtr, char *text, WMFont *font, WMColor *color,
3276 unsigned short first, unsigned short len)
3278 TextBlock *tb;
3280 if (!font || !color)
3281 return NULL;
3283 tb = wmalloc(sizeof(TextBlock));
3284 if (!tb)
3285 return NULL;
3287 tb->allocated = reqBlockSize(len);
3288 tb->text = (char *)wmalloc(tb->allocated);
3289 memset(tb->text, 0, tb->allocated);
3291 if (len < 1|| !text || (*text == '\n' && len==1 )) {
3292 *tb->text = ' ';
3293 tb->used = 1;
3294 tb->blank = True;
3295 } else {
3296 memcpy(tb->text, text, len);
3297 tb->used = len;
3298 tb->blank = False;
3300 tb->text[tb->used] = 0;
3302 tb->d.font = WMRetainFont(font);
3303 tb->color = WMRetainColor(color);
3304 tb->marginN = newMargin(tPtr, NULL);
3305 tb->first = first;
3306 tb->kanji = False;
3307 tb->graphic = False;
3308 tb->underlined = False;
3309 tb->selected = False;
3310 tb->script = 0;
3311 tb->sections = NULL;
3312 tb->nsections = 0;
3313 tb->prior = NULL;
3314 tb->next = NULL;
3315 return tb;
3318 void
3319 WMSetTextBlockProperties(WMText *tPtr, void *vtb, unsigned int first,
3320 unsigned int kanji, unsigned int underlined, int script,
3321 WMRulerMargins *margins)
3323 TextBlock *tb = (TextBlock *) vtb;
3324 if (!tb)
3325 return;
3327 tb->first = first;
3328 tb->kanji = kanji;
3329 tb->underlined = underlined;
3330 tb->script = script;
3331 tb->marginN = newMargin(tPtr, margins);
3334 void
3335 WMGetTextBlockProperties(WMText *tPtr, void *vtb, unsigned int *first,
3336 unsigned int *kanji, unsigned int *underlined, int *script,
3337 WMRulerMargins *margins)
3339 TextBlock *tb = (TextBlock *) vtb;
3340 if (!tb)
3341 return;
3343 if (first) *first = tb->first;
3344 if (kanji) *kanji = tb->kanji;
3345 if (underlined) *underlined = tb->underlined;
3346 if (script) *script = tb->script;
3347 if (margins) margins = &tPtr->margins[tb->marginN];
3352 void
3353 WMPrependTextBlock(WMText *tPtr, void *vtb)
3355 TextBlock *tb = (TextBlock *)vtb;
3357 if (!tPtr || !tb)
3358 return;
3360 if (tb->graphic) {
3361 if(tb->object) {
3362 WMWidget *w = tb->d.widget;
3363 if (W_CLASS(w) != WC_TextField && W_CLASS(w) != WC_Text) {
3364 (W_VIEW(w))->attribs.cursor = tPtr->view->screen->defaultCursor;
3365 (W_VIEW(w))->attribFlags |= CWOverrideRedirect | CWCursor;
3368 WMAddToArray(tPtr->gfxItems, (void *)tb);
3369 tPtr->tpos = 0;
3370 } else tPtr->tpos = tb->used;
3372 if (!tPtr->lastTextBlock || !tPtr->firstTextBlock) {
3373 tb->next = tb->prior = NULL;
3374 tb->first = True;
3375 tPtr->lastTextBlock = tPtr->firstTextBlock
3376 = tPtr->currentTextBlock = tb;
3377 return;
3380 if(!tb->first) {
3381 tb->marginN = tPtr->currentTextBlock->marginN;
3384 tb->next = tPtr->currentTextBlock;
3385 tb->prior = tPtr->currentTextBlock->prior;
3386 if (tPtr->currentTextBlock->prior)
3387 tPtr->currentTextBlock->prior->next = tb;
3389 tPtr->currentTextBlock->prior = tb;
3390 if (!tb->prior)
3391 tPtr->firstTextBlock = tb;
3393 tPtr->currentTextBlock = tb;
3397 void
3398 WMAppendTextBlock(WMText *tPtr, void *vtb)
3400 TextBlock *tb = (TextBlock *)vtb;
3402 if (!tPtr || !tb)
3403 return;
3405 if (tb->graphic) {
3406 if(tb->object) {
3407 WMWidget *w = tb->d.widget;
3408 if (W_CLASS(w) != WC_TextField && W_CLASS(w) != WC_Text) {
3409 (W_VIEW(w))->attribs.cursor =
3410 tPtr->view->screen->defaultCursor;
3411 (W_VIEW(w))->attribFlags |= CWOverrideRedirect | CWCursor;
3414 WMAddToArray(tPtr->gfxItems, (void *)tb);
3415 tPtr->tpos = 0;
3416 } else tPtr->tpos = tb->used;
3418 if (!tPtr->lastTextBlock || !tPtr->firstTextBlock) {
3419 tb->next = tb->prior = NULL;
3420 tb->first = True;
3421 tPtr->lastTextBlock = tPtr->firstTextBlock
3422 = tPtr->currentTextBlock = tb;
3423 return;
3426 if(!tb->first) {
3427 tb->marginN = tPtr->currentTextBlock->marginN;
3430 tb->next = tPtr->currentTextBlock->next;
3431 tb->prior = tPtr->currentTextBlock;
3432 if (tPtr->currentTextBlock->next)
3433 tPtr->currentTextBlock->next->prior = tb;
3435 tPtr->currentTextBlock->next = tb;
3437 if (!tb->next)
3438 tPtr->lastTextBlock = tb;
3440 tPtr->currentTextBlock = tb;
3443 void *
3444 WMRemoveTextBlock(WMText *tPtr)
3446 TextBlock *tb = NULL;
3448 if (!tPtr || !tPtr->firstTextBlock || !tPtr->lastTextBlock
3449 || !tPtr->currentTextBlock) {
3450 /* printf("cannot remove non existent TextBlock!\n"); */
3451 return NULL;
3454 tb = tPtr->currentTextBlock;
3455 if (tb->graphic) {
3456 WMRemoveFromArray(tPtr->gfxItems, (void *)tb);
3458 if(tb->object) {
3459 WMUnmapWidget(tb->d.widget);
3463 if (tPtr->currentTextBlock == tPtr->firstTextBlock) {
3464 if (tPtr->currentTextBlock->next)
3465 tPtr->currentTextBlock->next->prior = NULL;
3467 tPtr->firstTextBlock = tPtr->currentTextBlock->next;
3468 tPtr->currentTextBlock = tPtr->firstTextBlock;
3470 } else if (tPtr->currentTextBlock == tPtr->lastTextBlock) {
3471 tPtr->currentTextBlock->prior->next = NULL;
3472 tPtr->lastTextBlock = tPtr->currentTextBlock->prior;
3473 tPtr->currentTextBlock = tPtr->lastTextBlock;
3474 } else {
3475 tPtr->currentTextBlock->prior->next = tPtr->currentTextBlock->next;
3476 tPtr->currentTextBlock->next->prior = tPtr->currentTextBlock->prior;
3477 tPtr->currentTextBlock = tPtr->currentTextBlock->next;
3480 return (void *)tb;
3483 void
3484 WMDestroyTextBlock(WMText *tPtr, void *vtb)
3486 TextBlock *tb = (TextBlock *)vtb;
3487 if (!tPtr || !tb)
3488 return;
3490 if (tb->graphic) {
3491 if(tb->object) {
3492 /* naturally, there's a danger to destroying
3493 widgets whose action brings us here:
3494 ie. press a button to destroy it... need to
3495 find a safer way. till then... this stays commented out */
3496 /* WMDestroyWidget(tb->d.widget);
3497 wfree(tb->d.widget); */
3498 tb->d.widget = NULL;
3499 } else {
3500 WMReleasePixmap(tb->d.pixmap);
3501 tb->d.pixmap = NULL;
3503 } else {
3504 WMReleaseFont(tb->d.font);
3507 WMReleaseColor(tb->color);
3508 if (tb->sections && tb->nsections > 0)
3509 wfree(tb->sections);
3510 wfree(tb->text);
3511 wfree(tb);
3512 tb = NULL;
3517 void
3518 WMSetTextForegroundColor(WMText *tPtr, WMColor *color)
3520 if (!tPtr)
3521 return;
3523 if (color)
3524 tPtr->fgGC = WMColorGC(color);
3525 else
3526 tPtr->fgGC = WMColorGC(WMBlackColor(tPtr->view->screen));
3528 paintText(tPtr);
3531 void
3532 WMSetTextBackgroundColor(WMText *tPtr, WMColor *color)
3534 if (!tPtr)
3535 return;
3537 if (color) {
3538 tPtr->bgGC = WMColorGC(color);
3539 W_SetViewBackgroundColor(tPtr->view, color);
3540 } else {
3541 tPtr->bgGC = WMColorGC(WMWhiteColor(tPtr->view->screen));
3542 W_SetViewBackgroundColor(tPtr->view,
3543 WMWhiteColor(tPtr->view->screen));
3546 paintText(tPtr);
3549 void WMSetTextBackgroundPixmap(WMText *tPtr, WMPixmap *pixmap)
3551 if (!tPtr)
3552 return;
3554 if (tPtr->bgPixmap)
3555 WMReleasePixmap(tPtr->bgPixmap);
3557 if (pixmap)
3558 tPtr->bgPixmap = WMRetainPixmap(pixmap);
3559 else
3560 tPtr->bgPixmap = NULL;
3563 void
3564 WMSetTextRelief(WMText *tPtr, WMReliefType relief)
3566 if (!tPtr)
3567 return;
3568 tPtr->flags.relief = relief;
3569 textDidResize(tPtr->view->delegate, tPtr->view);
3572 void
3573 WMSetTextHasHorizontalScroller(WMText *tPtr, Bool shouldhave)
3575 if (!tPtr)
3576 return;
3578 if (shouldhave && !tPtr->hS) {
3579 tPtr->hS = WMCreateScroller(tPtr);
3580 (W_VIEW(tPtr->hS))->attribs.cursor = tPtr->view->screen->defaultCursor;
3581 (W_VIEW(tPtr->hS))->attribFlags |= CWOverrideRedirect | CWCursor;
3582 WMSetScrollerArrowsPosition(tPtr->hS, WSAMinEnd);
3583 WMSetScrollerAction(tPtr->hS, scrollersCallBack, tPtr);
3584 WMMapWidget(tPtr->hS);
3585 } else if (!shouldhave && tPtr->hS) {
3586 WMUnmapWidget(tPtr->hS);
3587 WMDestroyWidget(tPtr->hS);
3588 tPtr->hS = NULL;
3591 tPtr->hpos = 0;
3592 tPtr->prevHpos = 0;
3593 textDidResize(tPtr->view->delegate, tPtr->view);
3597 void
3598 WMSetTextHasRuler(WMText *tPtr, Bool shouldhave)
3600 if (!tPtr)
3601 return;
3603 if(shouldhave && !tPtr->ruler) {
3604 tPtr->ruler = WMCreateRuler(tPtr);
3605 (W_VIEW(tPtr->ruler))->attribs.cursor =
3606 tPtr->view->screen->defaultCursor;
3607 (W_VIEW(tPtr->ruler))->attribFlags |= CWOverrideRedirect | CWCursor;
3608 WMSetRulerReleaseAction(tPtr->ruler, rulerReleaseCallBack, tPtr);
3609 WMSetRulerMoveAction(tPtr->ruler, rulerMoveCallBack, tPtr);
3610 } else if(!shouldhave && tPtr->ruler) {
3611 WMShowTextRuler(tPtr, False);
3612 WMDestroyWidget(tPtr->ruler);
3613 tPtr->ruler = NULL;
3615 textDidResize(tPtr->view->delegate, tPtr->view);
3618 void
3619 WMShowTextRuler(WMText *tPtr, Bool show)
3621 if(!tPtr)
3622 return;
3623 if(!tPtr->ruler)
3624 return;
3626 if(tPtr->flags.monoFont)
3627 show = False;
3629 tPtr->flags.rulerShown = show;
3630 if(show) {
3631 WMMapWidget(tPtr->ruler);
3632 } else {
3633 WMUnmapWidget(tPtr->ruler);
3636 textDidResize(tPtr->view->delegate, tPtr->view);
3639 Bool
3640 WMGetTextRulerShown(WMText *tPtr)
3642 if(!tPtr)
3643 return 0;
3645 if(!tPtr->ruler)
3646 return 0;
3648 return tPtr->flags.rulerShown;
3652 void
3653 WMSetTextHasVerticalScroller(WMText *tPtr, Bool shouldhave)
3655 if (!tPtr)
3656 return;
3658 if (shouldhave && !tPtr->vS) {
3659 tPtr->vS = WMCreateScroller(tPtr);
3660 (W_VIEW(tPtr->vS))->attribs.cursor = tPtr->view->screen->defaultCursor;
3661 (W_VIEW(tPtr->vS))->attribFlags |= CWOverrideRedirect | CWCursor;
3662 WMSetScrollerArrowsPosition(tPtr->vS, WSAMaxEnd);
3663 WMSetScrollerAction(tPtr->vS, scrollersCallBack, tPtr);
3664 WMMapWidget(tPtr->vS);
3665 } else if (!shouldhave && tPtr->vS) {
3666 WMUnmapWidget(tPtr->vS);
3667 WMDestroyWidget(tPtr->vS);
3668 tPtr->vS = NULL;
3671 tPtr->vpos = 0;
3672 tPtr->prevVpos = 0;
3673 textDidResize(tPtr->view->delegate, tPtr->view);
3678 Bool
3679 WMScrollText(WMText *tPtr, int amount)
3681 Bool scroll=False;
3682 if (!tPtr)
3683 return False;
3684 if (amount == 0 || !tPtr->view->flags.realized)
3685 return False;
3687 if (amount < 0) {
3688 if (tPtr->vpos > 0) {
3689 if (tPtr->vpos > abs(amount)) tPtr->vpos += amount;
3690 else tPtr->vpos=0;
3691 scroll=True;
3692 } } else {
3693 int limit = tPtr->docHeight - tPtr->visible.h;
3694 if (tPtr->vpos < limit) {
3695 if (tPtr->vpos < limit-amount) tPtr->vpos += amount;
3696 else tPtr->vpos = limit;
3697 scroll = True;
3698 } }
3700 if (scroll && tPtr->vpos != tPtr->prevVpos) {
3701 updateScrollers(tPtr);
3702 paintText(tPtr);
3704 tPtr->prevVpos = tPtr->vpos;
3705 return scroll;
3708 Bool
3709 WMPageText(WMText *tPtr, Bool direction)
3711 if (!tPtr) return False;
3712 if (!tPtr->view->flags.realized) return False;
3714 return WMScrollText(tPtr, direction?tPtr->visible.h:-tPtr->visible.h);
3717 void
3718 WMSetTextEditable(WMText *tPtr, Bool editable)
3720 if (!tPtr)
3721 return;
3722 tPtr->flags.editable = editable;
3725 int
3726 WMGetTextEditable(WMText *tPtr)
3728 if (!tPtr)
3729 return 0;
3730 return tPtr->flags.editable;
3733 void
3734 WMSetTextIndentNewLines(WMText *tPtr, Bool indent)
3736 if (!tPtr)
3737 return;
3738 tPtr->flags.indentNewLine = indent;
3741 void
3742 WMSetTextIgnoresNewline(WMText *tPtr, Bool ignore)
3744 if (!tPtr)
3745 return;
3746 tPtr->flags.ignoreNewLine = ignore;
3749 Bool
3750 WMGetTextIgnoresNewline(WMText *tPtr)
3752 if (!tPtr)
3753 return True;
3754 return tPtr->flags.ignoreNewLine;
3757 void
3758 WMSetTextUsesMonoFont(WMText *tPtr, Bool mono)
3760 if (!tPtr)
3761 return;
3763 if (mono) {
3764 if(tPtr->flags.rulerShown)
3765 WMShowTextRuler(tPtr, False);
3766 if(tPtr->flags.alignment != WALeft)
3767 tPtr->flags.alignment = WALeft;
3770 tPtr->flags.monoFont = mono;
3771 textDidResize(tPtr->view->delegate, tPtr->view);
3774 Bool
3775 WMGetTextUsesMonoFont(WMText *tPtr)
3777 if (!tPtr)
3778 return True;
3779 return tPtr->flags.monoFont;
3783 void
3784 WMSetTextDefaultFont(WMText *tPtr, WMFont *font)
3786 if (!tPtr)
3787 return;
3789 WMReleaseFont(tPtr->dFont);
3790 if (font)
3791 tPtr->dFont = WMRetainFont(font);
3792 else
3793 tPtr->dFont = WMRetainFont(WMSystemFontOfSize(tPtr->view->screen, 12));
3796 WMFont *
3797 WMGetTextDefaultFont(WMText *tPtr)
3799 if (!tPtr)
3800 return NULL;
3801 else
3802 return WMRetainFont(tPtr->dFont);
3805 void
3806 WMSetTextDefaultColor(WMText *tPtr, WMColor *color)
3808 if (!tPtr)
3809 return;
3811 WMReleaseColor(tPtr->dColor);
3812 if (color)
3813 tPtr->dColor = WMRetainColor(color);
3814 else
3815 tPtr->dColor = WMBlackColor(tPtr->view->screen);
3818 WMColor *
3819 WMGetTextDefaultColor(WMText *tPtr)
3821 if (!tPtr)
3822 return NULL;
3823 else
3824 return WMRetainColor(tPtr->dColor);
3827 void
3828 WMSetTextAlignment(WMText *tPtr, WMAlignment alignment)
3830 if (!tPtr)
3831 return;
3832 if(tPtr->flags.monoFont)
3833 tPtr->flags.alignment = WALeft;
3834 else
3835 tPtr->flags.alignment = alignment;
3836 WMThawText(tPtr);
3839 int
3840 WMGetTextInsertType(WMText *tPtr)
3842 if (!tPtr)
3843 return 0;
3844 return tPtr->flags.prepend;
3848 void
3849 WMSetTextSelectionColor(WMText *tPtr, WMColor *color)
3851 if (!tPtr || !color)
3852 return;
3854 setSelectionProperty(tPtr, NULL, color, -1);
3857 WMColor *
3858 WMGetTextSelectionColor(WMText *tPtr)
3860 TextBlock *tb;
3862 if (!tPtr)
3863 return NULL;
3865 tb = tPtr->currentTextBlock;
3867 if (!tb || !tPtr->flags.ownsSelection)
3868 return NULL;
3870 if(!tb->selected)
3871 return NULL;
3873 return tb->color;
3877 void
3878 WMSetTextSelectionFont(WMText *tPtr, WMFont *font)
3880 if (!tPtr || !font)
3881 return;
3883 setSelectionProperty(tPtr, font, NULL, -1) ;
3886 WMFont *
3887 WMGetTextSelectionFont(WMText *tPtr)
3889 TextBlock *tb;
3891 if (!tPtr)
3892 return NULL;
3894 tb = tPtr->currentTextBlock;
3896 if (!tb || !tPtr->flags.ownsSelection)
3897 return NULL;
3899 if(!tb->selected)
3900 return NULL;
3902 if(tb->graphic) {
3903 tb = getFirstNonGraphicBlockFor(tb, 1);
3904 if(!tb)
3905 return NULL;
3907 return (tb->selected ? tb->d.font : NULL);
3911 void
3912 WMSetTextSelectionUnderlined(WMText *tPtr, int underlined)
3914 if (!tPtr || (underlined!=0 && underlined !=1))
3915 return;
3917 setSelectionProperty(tPtr, NULL, NULL, underlined);
3921 int
3922 WMGetTextSelectionUnderlined(WMText *tPtr)
3924 TextBlock *tb;
3926 if (!tPtr)
3927 return 0;
3929 tb = tPtr->currentTextBlock;
3931 if (!tb || !tPtr->flags.ownsSelection)
3932 return 0;
3934 if(!tb->selected)
3935 return 0;
3937 return tb->underlined;
3941 void
3942 WMFreezeText(WMText *tPtr)
3944 if (!tPtr)
3945 return;
3947 tPtr->flags.frozen = True;
3951 void
3952 WMThawText(WMText *tPtr)
3954 if (!tPtr)
3955 return;
3957 tPtr->flags.frozen = False;
3959 if(tPtr->flags.monoFont) {
3960 int j, c = WMGetArrayItemCount(tPtr->gfxItems);
3961 TextBlock *tb;
3963 /* make sure to unmap widgets no matter where they are */
3964 /* they'll be later remapped if needed by paintText */
3965 for(j=0; j<c; j++) {
3966 if ((tb = (TextBlock *) WMGetFromArray(tPtr->gfxItems, j))) {
3967 if (tb->object && ((W_VIEW(tb->d.widget))->flags.mapped))
3968 WMUnmapWidget(tb->d.widget);
3974 tPtr->flags.laidOut = False;
3975 layOutDocument(tPtr);
3976 updateScrollers(tPtr);
3977 paintText(tPtr);
3978 tPtr->flags.needsLayOut = False;
3982 /* find first occurence of a string */
3983 static char *
3984 mystrstr(char *haystack, char *needle, unsigned short len, char *end,
3985 Bool caseSensitive)
3987 char *ptr;
3989 if(!haystack || !needle || !end)
3990 return NULL;
3992 for (ptr = haystack; ptr < end; ptr++) {
3993 if(caseSensitive) {
3994 if (*ptr == *needle && !strncmp(ptr, needle, len))
3995 return ptr;
3997 } else {
3998 if (tolower(*ptr) == tolower(*needle) &&
3999 !strncasecmp(ptr, needle, len))
4000 return ptr;
4004 return NULL;
4007 /* find last occurence of a string */
4008 static char *
4009 mystrrstr(char *haystack, char *needle, unsigned short len, char *end,
4010 Bool caseSensitive)
4012 char *ptr;
4014 if(!haystack || !needle || !end)
4015 return NULL;
4017 for (ptr = haystack-2; ptr > end; ptr--) {
4018 if(caseSensitive) {
4019 if (*ptr == *needle && !strncmp(ptr, needle, len))
4020 return ptr;
4021 } else {
4022 if (tolower(*ptr) == tolower(*needle) &&
4023 !strncasecmp(ptr, needle, len))
4024 return ptr;
4028 return NULL;
4032 Bool
4033 WMFindInTextStream(WMText *tPtr, char *needle, Bool direction,
4034 Bool caseSensitive)
4036 TextBlock *tb;
4037 char *mark=NULL;
4038 unsigned short pos;
4040 if (!tPtr || !needle)
4041 return False;
4043 #if 0
4044 if (! (tb = tPtr->currentTextBlock)) {
4045 if (! (tb = ( (direction > 0) ?
4046 tPtr->firstTextBlock : tPtr->lastTextBlock) ) ){
4047 return False;
4049 } else {
4050 /* if(tb != ((direction>0) ?tPtr->firstTextBlock : tPtr->lastTextBlock))
4051 tb = (direction>0) ? tb->next : tb->prior; */
4052 if(tb != tPtr->lastTextBlock)
4053 tb = tb->prior;
4055 #endif
4056 tb = tPtr->currentTextBlock;
4057 pos = tPtr->tpos;
4060 while(tb) {
4061 if (!tb->graphic) {
4063 if(direction > 0) {
4064 if(pos+1 < tb->used)
4065 pos++;
4067 if(tb->used - pos> 0 && pos > 0) {
4068 mark = mystrstr(&tb->text[pos], needle,
4069 strlen(needle), &tb->text[tb->used], caseSensitive);
4071 } else {
4072 tb = tb->next;
4073 pos = 0;
4074 continue;
4077 } else {
4078 if(pos-1 > 0)
4079 pos--;
4081 if(pos > 0) {
4082 mark = mystrrstr(&tb->text[pos], needle,
4083 strlen(needle), tb->text, caseSensitive);
4084 } else {
4085 tb = tb->prior;
4086 if(!tb)
4087 return False;
4088 pos = tb->used;
4089 continue;
4094 if(mark) {
4095 WMFont *font = tPtr->flags.monoFont?tPtr->dFont:tb->d.font;
4097 tPtr->tpos = (int)(mark - tb->text);
4098 tPtr->currentTextBlock = tb;
4099 updateCursorPosition(tPtr);
4100 tPtr->sel.y = tPtr->cursor.y+5;
4101 tPtr->sel.h = tPtr->cursor.h-10;
4102 tPtr->sel.x = tPtr->cursor.x +1;
4103 tPtr->sel.w = WMIN(WMWidthOfString(font,
4104 &tb->text[tPtr->tpos], strlen(needle)),
4105 tPtr->docWidth - tPtr->sel.x);
4106 tPtr->flags.ownsSelection = True;
4107 paintText(tPtr);
4109 return True;
4113 tb = (direction>0) ? tb->next : tb->prior;
4114 if(tb) {
4115 pos = (direction>0) ? 0 : tb->used;
4119 return False;
4123 Bool
4124 WMReplaceTextSelection(WMText *tPtr, char *replacement)
4126 if (!tPtr)
4127 return False;
4129 if (!tPtr->flags.ownsSelection)
4130 return False;
4132 removeSelection(tPtr);
4134 if(replacement) {
4135 insertTextInteractively(tPtr, replacement, strlen(replacement));
4136 updateCursorPosition(tPtr);
4137 paintText(tPtr);
4140 return True;