~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/dlls/riched20/wrap.c

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  * RichEdit - Paragraph wrapping. Don't try to understand it. You've been
  3  * warned !
  4  *
  5  * Copyright 2004 by Krzysztof Foltman
  6  *
  7  * This library is free software; you can redistribute it and/or
  8  * modify it under the terms of the GNU Lesser General Public
  9  * License as published by the Free Software Foundation; either
 10  * version 2.1 of the License, or (at your option) any later version.
 11  *
 12  * This library is distributed in the hope that it will be useful,
 13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 15  * Lesser General Public License for more details.
 16  *
 17  * You should have received a copy of the GNU Lesser General Public
 18  * License along with this library; if not, write to the Free Software
 19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 20  */
 21 
 22 
 23 #include "editor.h"
 24 
 25 WINE_DEFAULT_DEBUG_CHANNEL(richedit);
 26 
 27 /*
 28  * Unsolved problems:
 29  *
 30  * - center and right align in WordPad omits all spaces at the start, we don't
 31  * - objects/images are not handled yet
 32  * - no tabs
 33  */
 34 
 35 static ME_DisplayItem *ME_MakeRow(int height, int baseline, int width)
 36 {
 37   ME_DisplayItem *item = ME_MakeDI(diStartRow);
 38 
 39   item->member.row.nHeight = height;
 40   item->member.row.nBaseline = baseline;
 41   item->member.row.nWidth = width;
 42   return item;
 43 }
 44 
 45 static void ME_BeginRow(ME_WrapContext *wc)
 46 {
 47   wc->pRowStart = NULL;
 48   wc->bOverflown = FALSE;
 49   wc->pLastSplittableRun = NULL;
 50   if (wc->context->editor->bWordWrap)
 51     wc->nAvailWidth = wc->context->rcView.right - wc->context->rcView.left -
 52         (wc->nRow ? wc->nLeftMargin : wc->nFirstMargin) - wc->nRightMargin;
 53   else
 54     wc->nAvailWidth = ~0u >> 1;
 55   wc->pt.x = 0;
 56 }
 57 
 58 static void ME_InsertRowStart(ME_WrapContext *wc, const ME_DisplayItem *pEnd)
 59 {
 60   ME_DisplayItem *p, *row, *para;
 61   BOOL bSkippingSpaces = TRUE;
 62   int ascent = 0, descent = 0, width=0, shift = 0, align = 0;
 63   /* wrap text */
 64   para = ME_GetParagraph(wc->pRowStart);
 65 
 66   for (p = pEnd->prev; p!=wc->pRowStart->prev; p = p->prev)
 67   {
 68       /* ENDPARA run shouldn't affect row height, except if it's the only run in the paragraph */
 69       if (p->type==diRun && ((p==wc->pRowStart) || !(p->member.run.nFlags & MERF_ENDPARA))) { /* FIXME add more run types */
 70         if (p->member.run.nAscent>ascent)
 71           ascent = p->member.run.nAscent;
 72         if (p->member.run.nDescent>descent)
 73           descent = p->member.run.nDescent;
 74         if (bSkippingSpaces)
 75         {
 76           /* Exclude space characters from run width.
 77            * Other whitespace or delimiters are not treated this way. */
 78           SIZE sz;
 79           int len = p->member.run.strText->nLen;
 80           WCHAR *text = p->member.run.strText->szData + len - 1;
 81 
 82           assert (len);
 83           while (len && *(text--) == ' ')
 84               len--;
 85           if (len)
 86           {
 87               if (len == p->member.run.strText->nLen)
 88               {
 89                   width += p->member.run.nWidth;
 90               } else {
 91                   sz = ME_GetRunSize(wc->context, &para->member.para,
 92                                      &p->member.run, len, p->member.run.pt.x);
 93                   width += sz.cx;
 94               }
 95           }
 96           bSkippingSpaces = !len;
 97         } else if (!(p->member.run.nFlags & MERF_ENDPARA))
 98           width += p->member.run.nWidth;
 99       }
100   }
101 
102   row = ME_MakeRow(ascent+descent, ascent, width);
103   row->member.row.nYPos = wc->pt.y;
104   row->member.row.nLMargin = (!wc->nRow ? wc->nFirstMargin : wc->nLeftMargin);
105   row->member.row.nRMargin = wc->nRightMargin;
106   assert(para->member.para.pFmt->dwMask & PFM_ALIGNMENT);
107   align = para->member.para.pFmt->wAlignment;
108   if (align == PFA_CENTER)
109     shift = (wc->nAvailWidth-width)/2;
110   if (align == PFA_RIGHT)
111     shift = wc->nAvailWidth-width;
112   for (p = wc->pRowStart; p!=pEnd; p = p->next)
113   {
114     if (p->type==diRun) { /* FIXME add more run types */
115       p->member.run.pt.x += row->member.row.nLMargin+shift;
116     }
117   }
118   ME_InsertBefore(wc->pRowStart, row);
119   wc->nRow++;
120   wc->pt.y += ascent+descent;
121   ME_BeginRow(wc);
122 }
123 
124 static void ME_WrapEndParagraph(ME_WrapContext *wc, ME_DisplayItem *p)
125 {
126   if (wc->pRowStart)
127     ME_InsertRowStart(wc, p);
128 
129   /*
130   p = p->member.para.prev_para->next;
131   while(p) {
132     if (p->type == diParagraph || p->type == diTextEnd)
133       return;
134     if (p->type == diRun)
135     {
136       ME_Run *run = &p->member.run;
137       TRACE("%s - (%d, %d)\n", debugstr_w(run->strText->szData), run->pt.x, run->pt.y);
138     }
139     p = p->next;
140   }
141   */
142 }
143 
144 static void ME_WrapSizeRun(ME_WrapContext *wc, ME_DisplayItem *p)
145 {
146   /* FIXME compose style (out of character and paragraph styles) here */
147 
148   ME_UpdateRunFlags(wc->context->editor, &p->member.run);
149 
150   ME_CalcRunExtent(wc->context, &ME_GetParagraph(p)->member.para,
151                    wc->nRow ? wc->nLeftMargin : wc->nFirstMargin, &p->member.run);
152 }
153 
154 static ME_DisplayItem *ME_MaximizeSplit(ME_WrapContext *wc, ME_DisplayItem *p, int i)
155 {
156   ME_DisplayItem *pp, *piter = p;
157   int j;
158   if (!i)
159     return NULL;
160   j = ME_ReverseFindNonWhitespaceV(p->member.run.strText, i);
161   if (j>0) {
162     pp = ME_SplitRun(wc, piter, j);
163     wc->pt.x += piter->member.run.nWidth;
164     return pp;
165   }
166   else
167   {
168     pp = piter;
169     /* omit all spaces before split point */
170     while(piter != wc->pRowStart)
171     {
172       piter = ME_FindItemBack(piter, diRun);
173       if (piter->member.run.nFlags & MERF_WHITESPACE)
174       {
175         pp = piter;
176         continue;
177       }
178       if (piter->member.run.nFlags & MERF_ENDWHITE)
179       {
180         j = ME_ReverseFindNonWhitespaceV(piter->member.run.strText, i);
181         pp = ME_SplitRun(wc, piter, i);
182         wc->pt = pp->member.run.pt;
183         return pp;
184       }
185       /* this run is the end of spaces, so the run edge is a good point to split */
186       wc->pt = pp->member.run.pt;
187       wc->bOverflown = TRUE;
188       TRACE("Split point is: %s|%s\n", debugstr_w(piter->member.run.strText->szData), debugstr_w(pp->member.run.strText->szData));
189       return pp;
190     }
191     wc->pt = piter->member.run.pt;
192     return piter;
193   }
194 }
195 
196 static ME_DisplayItem *ME_SplitByBacktracking(ME_WrapContext *wc, ME_DisplayItem *p, int loc)
197 {
198   ME_DisplayItem *piter = p, *pp;
199   int i, idesp, len;
200   ME_Run *run = &p->member.run;
201 
202   idesp = i = ME_CharFromPoint(wc->context, loc, run);
203   len = ME_StrVLen(run->strText);
204   assert(len>0);
205   assert(i<len);
206   if (i) {
207     /* don't split words */
208     i = ME_ReverseFindWhitespaceV(run->strText, i);
209     pp = ME_MaximizeSplit(wc, p, i);
210     if (pp)
211       return pp;
212   }
213   TRACE("Must backtrack to split at: %s\n", debugstr_w(p->member.run.strText->szData));
214   if (wc->pLastSplittableRun)
215   {
216     if (wc->pLastSplittableRun->member.run.nFlags & (MERF_GRAPHICS|MERF_TAB))
217     {
218       wc->pt = wc->ptLastSplittableRun;
219       return wc->pLastSplittableRun;
220     }
221     else if (wc->pLastSplittableRun->member.run.nFlags & MERF_SPLITTABLE)
222     {
223       /* the following two lines are just to check if we forgot to call UpdateRunFlags earlier,
224          they serve no other purpose */
225       ME_UpdateRunFlags(wc->context->editor, run);
226       assert((wc->pLastSplittableRun->member.run.nFlags & MERF_SPLITTABLE));
227 
228       piter = wc->pLastSplittableRun;
229       run = &piter->member.run;
230       len = ME_StrVLen(run->strText);
231       /* don't split words */
232       i = ME_ReverseFindWhitespaceV(run->strText, len);
233       if (i == len)
234         i = ME_ReverseFindNonWhitespaceV(run->strText, len);
235       if (i) {
236         ME_DisplayItem *piter2 = ME_SplitRun(wc, piter, i);
237         wc->pt = piter2->member.run.pt;
238         return piter2;
239       }
240       /* splittable = must have whitespaces */
241       assert(0 == "Splittable, but no whitespaces");
242     }
243     else
244     {
245       /* restart from the first run beginning with spaces */
246       wc->pt = wc->ptLastSplittableRun;
247       return wc->pLastSplittableRun;
248     }
249   }
250   TRACE("Backtracking failed, trying desperate: %s\n", debugstr_w(p->member.run.strText->szData));
251   /* OK, no better idea, so assume we MAY split words if we can split at all*/
252   if (idesp)
253     return ME_SplitRun(wc, piter, idesp);
254   else
255   if (wc->pRowStart && piter != wc->pRowStart)
256   {
257     /* don't need to break current run, because it's possible to split
258        before this run */
259     wc->bOverflown = TRUE;
260     return piter;
261   }
262   else
263   {
264     /* split point inside first character - no choice but split after that char */
265     int chars = 1;
266     int pos2 = ME_StrRelPos(run->strText, 0, &chars);
267     if (pos2 != len) {
268       /* the run is more than 1 char, so we may split */
269       return ME_SplitRun(wc, piter, pos2);
270     }
271     /* the run is one char, can't split it */
272     return piter;
273   }
274 }
275 
276 static ME_DisplayItem *ME_WrapHandleRun(ME_WrapContext *wc, ME_DisplayItem *p)
277 {
278   ME_DisplayItem *pp;
279   ME_Run *run;
280   int len;
281 
282   assert(p->type == diRun);
283   if (!wc->pRowStart)
284     wc->pRowStart = p;
285   run = &p->member.run;
286   run->pt.x = wc->pt.x;
287   run->pt.y = wc->pt.y;
288   ME_WrapSizeRun(wc, p);
289   len = ME_StrVLen(run->strText);
290 
291   if (wc->bOverflown) /* just skipping final whitespaces */
292   {
293     /* End paragraph run can't overflow to the next line by itself. */
294     if (run->nFlags & MERF_ENDPARA)
295       return p->next;
296 
297     if (run->nFlags & MERF_WHITESPACE) {
298       p->member.run.nFlags |= MERF_SKIPPED;
299       wc->pt.x += run->nWidth;
300       /* skip runs consisting of only whitespaces */
301       return p->next;
302     }
303 
304     if (run->nFlags & MERF_STARTWHITE) {
305       /* try to split the run at the first non-white char */
306       int black;
307       black = ME_FindNonWhitespaceV(run->strText, 0);
308       if (black) {
309         wc->bOverflown = FALSE;
310         pp = ME_SplitRun(wc, p, black);
311         p->member.run.nFlags |= MERF_SKIPPED;
312         ME_InsertRowStart(wc, pp);
313         return pp;
314       }
315     }
316     /* black run: the row goes from pRowStart to the previous run */
317     ME_InsertRowStart(wc, p);
318     return p;
319   }
320   /* simply end the current row and move on to next one */
321   if (run->nFlags & MERF_ENDROW)
322   {
323     p = p->next;
324     ME_InsertRowStart(wc, p);
325     return p;
326   }
327 
328   /* will current run fit? */
329   if (wc->pt.x + run->nWidth > wc->nAvailWidth)
330   {
331     int loc = wc->nAvailWidth - wc->pt.x;
332     /* total white run ? */
333     if (run->nFlags & MERF_WHITESPACE) {
334       /* let the overflow logic handle it */
335       wc->bOverflown = TRUE;
336       return p;
337     }
338     /* TAB: we can split before */
339     if (run->nFlags & MERF_TAB) {
340       wc->bOverflown = TRUE;
341       return p;
342     }
343     /* graphics: we can split before, if run's width is smaller than row's width */
344     if ((run->nFlags & MERF_GRAPHICS) && run->nWidth <= wc->nAvailWidth) {
345       wc->bOverflown = TRUE;
346       return p;
347     }
348     /* can we separate out the last spaces ? (to use overflow logic later) */
349     if (run->nFlags & MERF_ENDWHITE)
350     {
351       /* we aren't sure if it's *really* necessary, it's a good start however */
352       int black = ME_ReverseFindNonWhitespaceV(run->strText, len);
353       ME_SplitRun(wc, p, black);
354       /* handle both parts again */
355       return p;
356     }
357     /* determine the split point by backtracking */
358     pp = ME_SplitByBacktracking(wc, p, loc);
359     if (pp == wc->pRowStart)
360     {
361       if (run->nFlags & MERF_STARTWHITE)
362       {
363           /* we had only spaces so far, so we must be on the first line of the
364            * paragraph, since no other lines of the paragraph start with spaces. */
365           assert(!wc->nRow);
366           /* The lines will only contain spaces, and the rest of the run will
367            * overflow onto the next line. */
368           wc->bOverflown = TRUE;
369           return p;
370       }
371       /* Couldn't split the first run, possible because we have a large font
372        * with a single character that caused an overflow.
373        */
374       wc->pt.x += run->nWidth;
375       return p->next;
376     }
377     if (p != pp) /* found a suitable split point */
378     {
379       wc->bOverflown = TRUE;
380       return pp;
381     }
382     /* we detected that it's best to split on start of this run */
383     if (wc->bOverflown)
384       return pp;
385     ERR("failure!\n");
386     /* not found anything - writing over margins is the only option left */
387   }
388   if ((run->nFlags & (MERF_SPLITTABLE | MERF_STARTWHITE))
389     || ((run->nFlags & (MERF_GRAPHICS|MERF_TAB)) && (p != wc->pRowStart)))
390   {
391     wc->pLastSplittableRun = p;
392     wc->ptLastSplittableRun = wc->pt;
393   }
394   wc->pt.x += run->nWidth;
395   return p->next;
396 }
397 
398 static void ME_PrepareParagraphForWrapping(ME_Context *c, ME_DisplayItem *tp);
399 
400 static void ME_WrapTextParagraph(ME_Context *c, ME_DisplayItem *tp, DWORD beginofs) {
401   ME_DisplayItem *p;
402   ME_WrapContext wc;
403   int border = 0;
404   int linespace = 0;
405 
406   assert(tp->type == diParagraph);
407   if (!(tp->member.para.nFlags & MEPF_REWRAP)) {
408     return;
409   }
410   ME_PrepareParagraphForWrapping(c, tp);
411 
412   wc.context = c;
413 /*   wc.para_style = tp->member.para.style; */
414   wc.style = NULL;
415   wc.nFirstMargin = ME_twips2pointsX(c, tp->member.para.pFmt->dxStartIndent) + beginofs;
416   wc.nLeftMargin = wc.nFirstMargin + ME_twips2pointsX(c, tp->member.para.pFmt->dxOffset);
417   wc.nRightMargin = ME_twips2pointsX(c, tp->member.para.pFmt->dxRightIndent);
418   wc.nRow = 0;
419   wc.pt.x = 0;
420   wc.pt.y = 0;
421   if (tp->member.para.pFmt->dwMask & PFM_SPACEBEFORE)
422     wc.pt.y += ME_twips2pointsY(c, tp->member.para.pFmt->dySpaceBefore);
423   if (tp->member.para.pFmt->dwMask & PFM_BORDER)
424   {
425     border = ME_GetParaBorderWidth(c->editor, tp->member.para.pFmt->wBorders);
426     if (tp->member.para.pFmt->wBorders & 1) {
427       wc.nFirstMargin += border;
428       wc.nLeftMargin += border;
429     }
430     if (tp->member.para.pFmt->wBorders & 2)
431       wc.nRightMargin -= border;
432     if (tp->member.para.pFmt->wBorders & 4)
433       wc.pt.y += border;
434   }
435 
436   linespace = ME_GetParaLineSpace(c, &tp->member.para);
437 
438   ME_BeginRow(&wc);
439   for (p = tp->next; p!=tp->member.para.next_para; ) {
440     assert(p->type != diStartRow);
441     if (p->type == diRun) {
442       p = ME_WrapHandleRun(&wc, p);
443     }
444     else p = p->next;
445     if (wc.nRow && p == wc.pRowStart)
446       wc.pt.y += linespace;
447   }
448   ME_WrapEndParagraph(&wc, p);
449   if ((tp->member.para.pFmt->dwMask & PFM_BORDER) && (tp->member.para.pFmt->wBorders & 8))
450     wc.pt.y += border;
451   if (tp->member.para.pFmt->dwMask & PFM_SPACEAFTER)
452     wc.pt.y += ME_twips2pointsY(c, tp->member.para.pFmt->dySpaceAfter);
453 
454   tp->member.para.nFlags &= ~MEPF_REWRAP;
455   tp->member.para.nHeight = wc.pt.y;
456   tp->member.para.nRows = wc.nRow;
457 }
458 
459 
460 static void ME_PrepareParagraphForWrapping(ME_Context *c, ME_DisplayItem *tp) {
461   ME_DisplayItem *p, *pRow;
462 
463   /* remove all items that will be reinserted by paragraph wrapper anyway */
464   tp->member.para.nRows = 0;
465   for (p = tp->next; p!=tp->member.para.next_para; p = p->next) {
466     switch(p->type) {
467       case diStartRow:
468         pRow = p;
469         p = p->prev;
470         ME_Remove(pRow);
471         ME_DestroyDisplayItem(pRow);
472         break;
473       default:
474         break;
475     }
476   }
477   /* join runs that can be joined, set up flags */
478   for (p = tp->next; p!=tp->member.para.next_para; p = p->next) {
479     int changed = 0;
480     switch(p->type) {
481       case diStartRow: assert(0); break; /* should have deleted it */
482       case diRun:
483         while (p->next->type == diRun) { /* FIXME */
484           if (ME_CanJoinRuns(&p->member.run, &p->next->member.run)) {
485             ME_JoinRuns(c->editor, p);
486             changed = 1;
487           }
488           else
489             break;
490         }
491         p->member.run.nFlags &= ~MERF_CALCBYWRAP;
492         break;
493       default:
494         break;
495     }
496   }
497 }
498 
499 BOOL ME_WrapMarkedParagraphs(ME_TextEditor *editor) {
500   ME_DisplayItem *item;
501   ME_Context c;
502   BOOL bModified = FALSE;
503   int yStart = -1;
504   int yLastPos = 0;
505 
506   ME_InitContext(&c, editor, GetDC(editor->hWnd));
507   editor->nHeight = 0;
508   item = editor->pBuffer->pFirst->next;
509   while(item != editor->pBuffer->pLast) {
510     BOOL bRedraw = FALSE;
511 
512     assert(item->type == diParagraph);
513     editor->nHeight = max(editor->nHeight, item->member.para.nYPos);
514     if ((item->member.para.nFlags & MEPF_REWRAP)
515      || (item->member.para.nYPos != c.pt.y))
516       bRedraw = TRUE;
517     item->member.para.nYPos = c.pt.y;
518 
519     ME_WrapTextParagraph(&c, item, editor->selofs);
520 
521     if (bRedraw)
522     {
523       item->member.para.nFlags |= MEPF_REPAINT;
524       if (yStart == -1)
525         yStart = c.pt.y;
526     }
527 
528     bModified = bModified | bRedraw;
529 
530     yLastPos = c.pt.y;
531     c.pt.y += item->member.para.nHeight;
532     item = item->member.para.next_para;
533   }
534   editor->sizeWindow.cx = c.rcView.right-c.rcView.left;
535   editor->sizeWindow.cy = c.rcView.bottom-c.rcView.top;
536   
537   editor->nTotalLength = c.pt.y;
538   editor->pBuffer->pLast->member.para.nYPos = yLastPos;
539 
540   ME_DestroyContext(&c, editor->hWnd);
541 
542   /* Each paragraph may contain multiple rows, which should be scrollable, even
543      if the containing paragraph has nYPos == 0 */
544   item = editor->pBuffer->pFirst;
545   while ((item = ME_FindItemFwd(item, diStartRow)) != NULL) {
546     assert(item->type == diStartRow);
547     editor->nHeight = max(editor->nHeight, item->member.row.nYPos);
548   }
549 
550   if (bModified || editor->nTotalLength < editor->nLastTotalLength)
551     ME_InvalidateMarkedParagraphs(editor);
552   return bModified;
553 }
554 
555 void ME_InvalidateMarkedParagraphs(ME_TextEditor *editor) {
556   ME_Context c;
557 
558   ME_InitContext(&c, editor, GetDC(editor->hWnd));
559   if (editor->bRedraw)
560   {
561     RECT rc = c.rcView;
562     int ofs = ME_GetYScrollPos(editor); 
563      
564     ME_DisplayItem *item = editor->pBuffer->pFirst;
565     while(item != editor->pBuffer->pLast) {
566       if (item->member.para.nFlags & MEPF_REPAINT) { 
567         rc.top = item->member.para.nYPos - ofs;
568         rc.bottom = item->member.para.nYPos + item->member.para.nHeight - ofs;
569         InvalidateRect(editor->hWnd, &rc, TRUE);
570       }
571       item = item->member.para.next_para;
572     }
573     if (editor->nTotalLength < editor->nLastTotalLength)
574     {
575       rc.top = editor->nTotalLength - ofs;
576       rc.bottom = editor->nLastTotalLength - ofs;
577       InvalidateRect(editor->hWnd, &rc, TRUE);
578     }
579   }
580   ME_DestroyContext(&c, editor->hWnd);
581 }
582 
583 
584 void
585 ME_SendRequestResize(ME_TextEditor *editor, BOOL force)
586 {
587   if (editor->nEventMask & ENM_REQUESTRESIZE)
588   {
589     RECT rc;
590 
591     GetClientRect(editor->hWnd, &rc);
592 
593     if (force || rc.bottom != editor->nTotalLength)
594     {
595       REQRESIZE info;
596 
597       info.nmhdr.hwndFrom = editor->hWnd;
598       info.nmhdr.idFrom = GetWindowLongW(editor->hWnd, GWLP_ID);
599       info.nmhdr.code = EN_REQUESTRESIZE;
600       info.rc = rc;
601       info.rc.bottom = editor->nTotalLength;
602 
603       editor->nEventMask &= ~ENM_REQUESTRESIZE;
604       SendMessageW(GetParent(editor->hWnd), WM_NOTIFY,
605                    info.nmhdr.idFrom, (LPARAM)&info);
606       editor->nEventMask |= ENM_REQUESTRESIZE;
607     }
608   }
609 }
610 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.