style.c 15.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * RichEdit style management functions
 *
 * Copyright 2004 by Krzysztof Foltman
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20 21 22 23
 */

#include "editor.h"

WINE_DEFAULT_DEBUG_CHANNEL(richedit);
24
WINE_DECLARE_DEBUG_CHANNEL(richedit_style);
25 26 27

static int all_refs = 0;

28 29 30 31 32 33 34 35
/* the following routines assume that:
 * - char2[AW] extends char[AW] by adding fields at the end of the charA form)
 * - szFaceName is the last field of char[AW] form, and wWeight the first of 2[AW]
 * - the difference between A and W form is the szFaceName as Ansi vs Unicode string
 * - because of alignment, offset of wWeight field in 2[AW] structure *IS NOT*
 *   sizeof(char[AW])
 */

36 37 38 39 40
CHARFORMAT2W *ME_ToCF2W(CHARFORMAT2W *to, CHARFORMAT2W *from)
{
  if (from->cbSize == sizeof(CHARFORMATA))
  {
    CHARFORMATA *f = (CHARFORMATA *)from;
41
    CopyMemory(to, f, FIELD_OFFSET(CHARFORMATA, szFaceName));
42 43
    to->cbSize = sizeof(CHARFORMAT2W);
    if (f->dwMask & CFM_FACE) {
44
      MultiByteToWideChar(CP_ACP, 0, f->szFaceName, -1, to->szFaceName, sizeof(to->szFaceName)/sizeof(WCHAR));
45 46 47 48 49 50 51 52
    }
    return to;
  }
  if (from->cbSize == sizeof(CHARFORMATW))
  {
    CHARFORMATW *f = (CHARFORMATW *)from;
    CopyMemory(to, f, sizeof(*f));
    /* theoretically, we don't need to zero the remaining memory */
53
    ZeroMemory(&to->wWeight, sizeof(CHARFORMAT2W)-FIELD_OFFSET(CHARFORMAT2W, wWeight));
54 55 56 57 58
    to->cbSize = sizeof(CHARFORMAT2W);
    return to;
  }
  if (from->cbSize == sizeof(CHARFORMAT2A))
  {
59
    CHARFORMAT2A *f = (CHARFORMAT2A *)from;
60
    /* copy the A structure without face name */
61
    CopyMemory(to, f, FIELD_OFFSET(CHARFORMATA, szFaceName));
62 63
    /* convert face name */
    if (f->dwMask & CFM_FACE)
64
      MultiByteToWideChar(CP_ACP, 0, f->szFaceName, -1, to->szFaceName, sizeof(to->szFaceName)/sizeof(WCHAR));
65
    /* copy the rest of the 2A structure to 2W */
66
    CopyMemory(&to->wWeight, &f->wWeight, sizeof(CHARFORMAT2A)-FIELD_OFFSET(CHARFORMAT2A, wWeight));
67 68 69 70
    to->cbSize = sizeof(CHARFORMAT2W);
    return to;
  }

71
  return (from->cbSize >= sizeof(CHARFORMAT2W)) ? from : NULL;
72 73
}

74
static CHARFORMAT2W *ME_ToCFAny(CHARFORMAT2W *to, CHARFORMAT2W *from)
75 76 77 78 79
{
  assert(from->cbSize == sizeof(CHARFORMAT2W));
  if (to->cbSize == sizeof(CHARFORMATA))
  {
    CHARFORMATA *t = (CHARFORMATA *)to;
80
    CopyMemory(t, from, FIELD_OFFSET(CHARFORMATA, szFaceName));
81
    WideCharToMultiByte(CP_ACP, 0, from->szFaceName, -1, t->szFaceName, sizeof(t->szFaceName), NULL, NULL);
82 83 84 85 86 87 88 89 90 91 92 93 94 95
    if (from->dwMask & CFM_UNDERLINETYPE)
    {
        switch (from->bUnderlineType)
        {
        case CFU_CF1UNDERLINE:
            to->dwMask |= CFM_UNDERLINE;
            to->dwEffects |= CFE_UNDERLINE;
            break;
        case CFU_UNDERLINENONE:
            to->dwMask |= CFM_UNDERLINE;
            to->dwEffects &= ~CFE_UNDERLINE;
            break;
        }
    }
96 97 98 99 100 101 102
    t->cbSize = sizeof(*t); /* it was overwritten by CopyMemory */
    return to;
  }
  if (to->cbSize == sizeof(CHARFORMATW))
  {
    CHARFORMATW *t = (CHARFORMATW *)to;
    CopyMemory(t, from, sizeof(*t));
103 104 105 106 107 108 109 110 111 112 113 114 115 116
    if (from->dwMask & CFM_UNDERLINETYPE)
    {
        switch (from->bUnderlineType)
        {
        case CFU_CF1UNDERLINE:
            to->dwMask |= CFM_UNDERLINE;
            to->dwEffects |= CFE_UNDERLINE;
            break;
        case CFU_UNDERLINENONE:
            to->dwMask |= CFM_UNDERLINE;
            to->dwEffects &= ~CFE_UNDERLINE;
            break;
        }
    }
117 118 119 120 121 122 123
    t->cbSize = sizeof(*t); /* it was overwritten by CopyMemory */
    return to;
  }
  if (to->cbSize == sizeof(CHARFORMAT2A))
  {
    CHARFORMAT2A *t = (CHARFORMAT2A *)to;
    /* copy the A structure without face name */
124
    CopyMemory(t, from, FIELD_OFFSET(CHARFORMATA, szFaceName));
125
    /* convert face name */
126
    WideCharToMultiByte(CP_ACP, 0, from->szFaceName, -1, t->szFaceName, sizeof(t->szFaceName), NULL, NULL);
127
    /* copy the rest of the 2A structure to 2W */
128
    CopyMemory(&t->wWeight, &from->wWeight, sizeof(CHARFORMAT2W)-FIELD_OFFSET(CHARFORMAT2W,wWeight));
129 130 131
    t->cbSize = sizeof(*t); /* it was overwritten by CopyMemory */
    return to;
  }
132
  assert(to->cbSize >= sizeof(CHARFORMAT2W));
133 134 135 136 137 138 139 140 141
  return from;
}

void ME_CopyToCFAny(CHARFORMAT2W *to, CHARFORMAT2W *from)
{
  if (ME_ToCFAny(to, from) == from)
    CopyMemory(to, from, to->cbSize);
}

142 143
ME_Style *ME_MakeStyle(CHARFORMAT2W *style)
{
144 145
  ME_Style *s = ALLOC_OBJ(ME_Style);

146 147
  assert(style->cbSize == sizeof(CHARFORMAT2W));
  s->fmt = *style;
148 149
  s->nRefs = 1;
  s->hFont = NULL;
150
  memset(&s->tm, 0, sizeof(s->tm));
151
  s->tm.tmAscent = -1;
152
  all_refs++;
153
  TRACE_(richedit_style)("ME_MakeStyle %p, total refs=%d\n", s, all_refs);
154 155 156 157 158 159 160 161 162 163 164 165 166 167
  return s;
}

#define COPY_STYLE_ITEM(mask, member) \
  if (style->dwMask & mask) { \
    s->fmt.dwMask |= mask;\
    s->fmt.member = style->member;\
  }

#define COPY_STYLE_ITEM_MEMCPY(mask, member) \
  if (style->dwMask & mask) { \
    s->fmt.dwMask |= mask;\
    CopyMemory(s->fmt.member, style->member, sizeof(style->member));\
  }
168

169 170 171 172 173 174 175 176 177
void ME_InitCharFormat2W(CHARFORMAT2W *pFmt)
{
  ZeroMemory(pFmt, sizeof(CHARFORMAT2W));
  pFmt->cbSize = sizeof(CHARFORMAT2W);
}

ME_Style *ME_ApplyStyle(ME_Style *sSrc, CHARFORMAT2W *style)
{
  ME_Style *s = ME_MakeStyle(&sSrc->fmt);
178
  assert(style->cbSize == sizeof(CHARFORMAT2W));
179 180 181 182 183 184 185 186 187
  COPY_STYLE_ITEM(CFM_ANIMATION, bAnimation);
  COPY_STYLE_ITEM(CFM_BACKCOLOR, crBackColor);
  COPY_STYLE_ITEM(CFM_CHARSET, bCharSet);
  COPY_STYLE_ITEM(CFM_COLOR, crTextColor);
  COPY_STYLE_ITEM_MEMCPY(CFM_FACE, szFaceName);
  COPY_STYLE_ITEM(CFM_KERNING, wKerning);
  COPY_STYLE_ITEM(CFM_LCID, lcid);
  COPY_STYLE_ITEM(CFM_OFFSET, yOffset);
  COPY_STYLE_ITEM(CFM_REVAUTHOR, bRevAuthor);
188 189 190 191
  if (style->dwMask & CFM_SIZE) {
    s->fmt.dwMask |= CFM_SIZE;
    s->fmt.yHeight = min(style->yHeight, yHeightCharPtsMost * 20);
  }
192 193 194 195
  COPY_STYLE_ITEM(CFM_SPACING, sSpacing);
  COPY_STYLE_ITEM(CFM_STYLE, sStyle);
  COPY_STYLE_ITEM(CFM_UNDERLINETYPE, bUnderlineType);
  COPY_STYLE_ITEM(CFM_WEIGHT, wWeight);
196 197 198
  /* FIXME: this is not documented this way, but that's the more logical */
  COPY_STYLE_ITEM(CFM_FACE, bPitchAndFamily);

199 200 201 202 203 204 205 206 207 208
  s->fmt.dwEffects &= ~(style->dwMask);
  s->fmt.dwEffects |= style->dwEffects & style->dwMask;
  s->fmt.dwMask |= style->dwMask;
  if (style->dwMask & CFM_COLOR)
  {
    if (style->dwEffects & CFE_AUTOCOLOR)
      s->fmt.dwEffects |= CFE_AUTOCOLOR;
    else
      s->fmt.dwEffects &= ~CFE_AUTOCOLOR;
  }
209 210 211 212 213 214
  if (style->dwMask & CFM_UNDERLINE)
  {
      s->fmt.dwMask |= CFM_UNDERLINETYPE;
      s->fmt.bUnderlineType = (style->dwEffects & CFM_UNDERLINE) ?
          CFU_CF1UNDERLINE : CFU_UNDERLINENONE;
  }
215 216 217 218 219 220 221 222 223
  if (style->dwMask & CFM_BOLD && !(style->dwMask & CFM_WEIGHT))
  {
      s->fmt.wWeight = (style->dwEffects & CFE_BOLD) ? FW_BOLD : FW_NORMAL;
  } else if (style->dwMask & CFM_WEIGHT && !(style->dwMask & CFM_BOLD)) {
      if (style->wWeight > FW_NORMAL)
          s->fmt.dwEffects |= CFE_BOLD;
      else
          s->fmt.dwEffects &= ~CFE_BOLD;
  }
224 225 226
  return s;
}

227
void ME_CopyCharFormat(CHARFORMAT2W *pDest, const CHARFORMAT2W *pSrc)
228 229 230 231
{
  /* using this with non-2W structs is forbidden */
  assert(pSrc->cbSize == sizeof(CHARFORMAT2W));
  assert(pDest->cbSize == sizeof(CHARFORMAT2W));
232
  *pDest = *pSrc;
233 234
}

235
static void ME_DumpStyleEffect(char **p, const char *name, const CHARFORMAT2W *fmt, int mask)
236 237 238 239 240 241 242 243
{
  *p += sprintf(*p, "%-22s%s\n", name, (fmt->dwMask & mask) ? ((fmt->dwEffects & mask) ? "YES" : "no") : "N/A");
}

void ME_DumpStyle(ME_Style *s)
{
  char buf[2048];
  ME_DumpStyleToBuf(&s->fmt, buf);
244
  TRACE_(richedit_style)("%s\n", buf);
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
}

void ME_DumpStyleToBuf(CHARFORMAT2W *pFmt, char buf[2048])
{
  /* FIXME only CHARFORMAT styles implemented */
  /* this function sucks, doesn't check for buffer overruns but it's "good enough" as for debug code */
  char *p;
  p = buf;
  p += sprintf(p, "Font face:            ");
  if (pFmt->dwMask & CFM_FACE) {
    WCHAR *q = pFmt->szFaceName;
    while(*q) {
      *p++ = (*q > 255) ? '?' : *q;
      q++;      
    }       
  } else
    p += sprintf(p, "N/A");

  if (pFmt->dwMask & CFM_SIZE)
264
    p += sprintf(p, "\nFont size:            %d\n", pFmt->yHeight);
265 266
  else
    p += sprintf(p, "\nFont size:            N/A\n");
267

268
  if (pFmt->dwMask & CFM_OFFSET)
269
    p += sprintf(p, "Char offset:          %d\n", pFmt->yOffset);
270 271 272 273 274 275 276 277 278 279 280 281 282
  else
    p += sprintf(p, "Char offset:          N/A\n");

  if (pFmt->dwMask & CFM_CHARSET)
    p += sprintf(p, "Font charset:         %d\n", (int)pFmt->bCharSet);
  else
    p += sprintf(p, "Font charset:         N/A\n");
    
  /* I'm assuming CFM_xxx and CFE_xxx are the same values, fortunately it IS true wrt used flags*/
  ME_DumpStyleEffect(&p, "Font bold:", pFmt, CFM_BOLD);
  ME_DumpStyleEffect(&p, "Font italic:", pFmt, CFM_ITALIC);
  ME_DumpStyleEffect(&p, "Font underline:", pFmt, CFM_UNDERLINE);
  ME_DumpStyleEffect(&p, "Font strikeout:", pFmt, CFM_STRIKEOUT);
283
  ME_DumpStyleEffect(&p, "Hidden text:", pFmt, CFM_HIDDEN);
284 285 286 287 288 289 290 291 292 293 294 295 296
  p += sprintf(p, "Text color:           ");
  if (pFmt->dwMask & CFM_COLOR)
  {
    if (pFmt->dwEffects & CFE_AUTOCOLOR)
      p += sprintf(p, "auto\n");
    else
      p += sprintf(p, "%06x\n", (int)pFmt->crTextColor);
  }
  else
    p += sprintf(p, "N/A\n");
  ME_DumpStyleEffect(&p, "Text protected:", pFmt, CFM_PROTECTED);
}

297 298

static void
299
ME_LogFontFromStyle(ME_Context* c, LOGFONTW *lf, const ME_Style *s)
300
{
301 302
  ZeroMemory(lf, sizeof(LOGFONTW));
  lstrcpyW(lf->lfFaceName, s->fmt.szFaceName);
303

304
  lf->lfHeight = ME_twips2pointsY(c, -s->fmt.yHeight);
305
  
306
  lf->lfWeight = FW_NORMAL;
307
  if (s->fmt.dwEffects & s->fmt.dwMask & CFM_BOLD)
308
    lf->lfWeight = FW_BOLD;
309
  if (s->fmt.dwMask & CFM_WEIGHT)
310
    lf->lfWeight = s->fmt.wWeight;
311
  if (s->fmt.dwEffects & s->fmt.dwMask & CFM_ITALIC)
312
    lf->lfItalic = 1;
313
  if (s->fmt.dwEffects & s->fmt.dwMask & (CFM_UNDERLINE | CFE_LINK))
314
    lf->lfUnderline = 1;
315 316
  if (s->fmt.dwMask & CFM_UNDERLINETYPE && s->fmt.bUnderlineType == CFU_CF1UNDERLINE)
    lf->lfUnderline = 1;
317
  if (s->fmt.dwEffects & s->fmt.dwMask & CFM_STRIKEOUT)
318
    lf->lfStrikeOut = 1;
319 320
  if (s->fmt.dwEffects & s->fmt.dwMask & (CFM_SUBSCRIPT|CFM_SUPERSCRIPT))
    lf->lfHeight = (lf->lfHeight*2)/3;
321
/*lf.lfQuality = PROOF_QUALITY; */
322 323
  if (s->fmt.dwMask & CFM_FACE)
    lf->lfPitchAndFamily = s->fmt.bPitchAndFamily;
324 325
  if (s->fmt.dwMask & CFM_CHARSET)
    lf->lfCharSet = s->fmt.bCharSet;
326 327
}

328
void ME_CharFormatFromLogFont(HDC hDC, const LOGFONTW *lf, CHARFORMAT2W *fmt)
329
{
330
  int ry;
331

332 333 334 335 336 337 338
  ME_InitCharFormat2W(fmt);
  ry = GetDeviceCaps(hDC, LOGPIXELSY);
  lstrcpyW(fmt->szFaceName, lf->lfFaceName);
  fmt->dwEffects = 0;
  fmt->dwMask = CFM_WEIGHT|CFM_BOLD|CFM_ITALIC|CFM_UNDERLINE|CFM_STRIKEOUT|CFM_SIZE|CFM_FACE|CFM_CHARSET;
  fmt->wWeight = lf->lfWeight;
  fmt->yHeight = -lf->lfHeight*1440/ry;
339
  if (lf->lfWeight > FW_NORMAL) fmt->dwEffects |= CFM_BOLD;
340 341
  if (lf->lfItalic) fmt->dwEffects |= CFM_ITALIC;
  if (lf->lfUnderline) fmt->dwEffects |= CFM_UNDERLINE;
342
  /* notice that if a logfont was created with underline due to CFM_LINK, this
Austin English's avatar
Austin English committed
343
      would add an erroneous CFM_UNDERLINE. This isn't currently ever a problem. */
344 345
  if (lf->lfStrikeOut) fmt->dwEffects |= CFM_STRIKEOUT;
  fmt->bPitchAndFamily = lf->lfPitchAndFamily;
346
  fmt->bCharSet = lf->lfCharSet;
347
}
348

349
static BOOL ME_IsFontEqual(const LOGFONTW *p1, const LOGFONTW *p2)
350 351 352 353 354 355
{
  if (memcmp(p1, p2, sizeof(LOGFONTW)-sizeof(p1->lfFaceName)))
    return FALSE;
  if (lstrcmpW(p1->lfFaceName, p2->lfFaceName))
    return FALSE;
  return TRUE;
356 357
}

358
HFONT ME_SelectStyleFont(ME_Context *c, ME_Style *s)
359 360
{
  HFONT hOldFont;
361 362 363 364 365
  LOGFONTW lf;
  int i, nEmpty, nAge = 0x7FFFFFFF;
  ME_FontCacheItem *item;
  assert(s);
  
366
  ME_LogFontFromStyle(c, &lf, s);
367 368
  
  for (i=0; i<HFONT_CACHE_SIZE; i++)
369
    c->editor->pFontCache[i].nAge++;
370 371
  for (i=0, nEmpty=-1, nAge=0; i<HFONT_CACHE_SIZE; i++)
  {
372
    item = &c->editor->pFontCache[i];
373 374 375 376 377
    if (!item->nRefs)
    {
      if (item->nAge > nAge)
        nEmpty = i, nAge = item->nAge;
    }
378
    if (item->hFont && ME_IsFontEqual(&item->lfSpecs, &lf))
379 380 381 382
      break;
  }
  if (i < HFONT_CACHE_SIZE) /* found */
  {
383
    item = &c->editor->pFontCache[i];
384
    TRACE_(richedit_style)("font reused %d\n", i);
385 386 387 388 389 390

    s->hFont = item->hFont;
    item->nRefs++;
  }
  else
  {
391
    item = &c->editor->pFontCache[nEmpty]; /* this legal even when nEmpty == -1, as we don't dereference it */
392 393 394

    assert(nEmpty != -1); /* otherwise we leak cache entries or get too many fonts at once*/
    if (item->hFont) {
395
      TRACE_(richedit_style)("font deleted %d\n", nEmpty);
396 397 398 399 400
      DeleteObject(item->hFont);
      item->hFont = NULL;
    }
    s->hFont = CreateFontIndirectW(&lf);
    assert(s->hFont);
401
    TRACE_(richedit_style)("font created %d\n", nEmpty);
402 403
    item->hFont = s->hFont;
    item->nRefs = 1;
404
    item->lfSpecs = lf;
405
  }
406
  hOldFont = SelectObject(c->hDC, s->hFont);
407
  /* should be cached too, maybe ? */
408
  GetTextMetricsW(c->hDC, &s->tm);
409 410 411
  return hOldFont;
}

412
void ME_UnselectStyleFont(ME_Context *c, ME_Style *s, HFONT hOldFont)
413
{
414 415 416
  int i;
  
  assert(s);
417
  SelectObject(c->hDC, hOldFont);
418 419
  for (i=0; i<HFONT_CACHE_SIZE; i++)
  {
420
    ME_FontCacheItem *pItem = &c->editor->pFontCache[i];
421 422 423 424 425 426 427 428 429
    if (pItem->hFont == s->hFont && pItem->nRefs > 0)
    {
      pItem->nRefs--;
      pItem->nAge = 0;
      s->hFont = NULL;
      return;
    }
  }
  assert(0 == "UnselectStyleFont without SelectStyleFont");
430 431
}

432
static void ME_DestroyStyle(ME_Style *s) {
433 434 435 436 437 438 439 440 441 442 443 444 445
  if (s->hFont)
  {
    DeleteObject(s->hFont);
    s->hFont = NULL;
  }
  FREE_OBJ(s);
}

void ME_AddRefStyle(ME_Style *s)
{
  assert(s->nRefs>0); /* style with 0 references isn't supposed to exist */
  s->nRefs++;
  all_refs++;
446
  TRACE_(richedit_style)("ME_AddRefStyle %p, new refs=%d, total refs=%d\n", s, s->nRefs, all_refs);
447 448 449 450 451 452 453
}

void ME_ReleaseStyle(ME_Style *s)
{
  s->nRefs--;
  all_refs--;
  if (s->nRefs==0)
454
    TRACE_(richedit_style)("destroy style %p, total refs=%d\n", s, all_refs);
455
  else
456
    TRACE_(richedit_style)("release style %p, new refs=%d, total refs=%d\n", s, s->nRefs, all_refs);
457
  if (!all_refs) TRACE("all style references freed (good!)\n");
458 459 460 461 462
  assert(s->nRefs>=0);
  if (!s->nRefs)
    ME_DestroyStyle(s);
}

463 464
ME_Style *ME_GetInsertStyle(ME_TextEditor *editor, int nCursor)
{
465 466
  if (ME_IsSelection(editor))
  {
467 468
    ME_Cursor *from, *to;

469
    ME_GetSelection(editor, &from, &to);
470 471
    ME_AddRefStyle(from->pRun->member.run.style);
    return from->pRun->member.run.style;
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
  }
  if (editor->pBuffer->pCharStyle) {
    ME_AddRefStyle(editor->pBuffer->pCharStyle);
    return editor->pBuffer->pCharStyle;
  }
  else
  {
    ME_Cursor *pCursor = &editor->pCursors[nCursor];
    ME_DisplayItem *pRunItem = pCursor->pRun;
    ME_DisplayItem *pPrevItem = NULL;
    if (pCursor->nOffset) {
      ME_Run *pRun = &pRunItem->member.run;
      ME_AddRefStyle(pRun->style);
      return pRun->style;
    }
    pPrevItem = ME_FindItemBack(pRunItem, diRunOrParagraph);
    if (pPrevItem->type == diRun)
    {
      ME_AddRefStyle(pPrevItem->member.run.style);
      return pPrevItem->member.run.style;
    }
    else
    {
      ME_AddRefStyle(pRunItem->member.run.style);
      return pRunItem->member.run.style;
    }
  }
}

void ME_SaveTempStyle(ME_TextEditor *editor)
{
  ME_Style *old_style = editor->pBuffer->pCharStyle;
  editor->pBuffer->pCharStyle = ME_GetInsertStyle(editor, 0);
  if (old_style)
    ME_ReleaseStyle(old_style);
}

void ME_ClearTempStyle(ME_TextEditor *editor)
{
  if (!editor->pBuffer->pCharStyle) return;
  ME_ReleaseStyle(editor->pBuffer->pCharStyle);
  editor->pBuffer->pCharStyle = NULL;
}