2005-03-05 12:19:14 +01:00
|
|
|
/*
|
|
|
|
* RichEdit - operations on runs (diRun, rectangular pieces of paragraphs).
|
|
|
|
* Splitting/joining runs. Adjusting offsets after deleting/adding content.
|
|
|
|
* Character/pixel conversions.
|
|
|
|
*
|
|
|
|
* Copyright 2004 by Krzysztof Foltman
|
2006-02-04 17:01:01 +01:00
|
|
|
* Copyright 2006 by Phil Krylov
|
2005-03-05 12:19:14 +01:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-03-05 12:19:14 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "editor.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(richedit);
|
2005-10-08 12:33:44 +02:00
|
|
|
WINE_DECLARE_DEBUG_CHANNEL(richedit_check);
|
|
|
|
WINE_DECLARE_DEBUG_CHANNEL(richedit_lists);
|
2005-03-05 12:19:14 +01:00
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_CanJoinRuns
|
|
|
|
*
|
|
|
|
* Returns 1 if two runs can be safely merged into one, 0 otherwise.
|
|
|
|
*/
|
2007-08-15 22:35:51 +02:00
|
|
|
int ME_CanJoinRuns(const ME_Run *run1, const ME_Run *run2)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2005-04-16 12:48:35 +02:00
|
|
|
if ((run1->nFlags | run2->nFlags) & MERF_NOJOIN)
|
2005-03-05 12:19:14 +01:00
|
|
|
return 0;
|
|
|
|
if (run1->style != run2->style)
|
|
|
|
return 0;
|
|
|
|
if ((run1->nFlags & MERF_STYLEFLAGS) != (run2->nFlags & MERF_STYLEFLAGS))
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ME_SkipAndPropagateCharOffset(ME_DisplayItem *p, int shift)
|
|
|
|
{
|
|
|
|
p = ME_FindItemFwd(p, diRunOrParagraphOrEnd);
|
|
|
|
assert(p);
|
|
|
|
ME_PropagateCharOffset(p, shift);
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_PropagateCharOffsets
|
|
|
|
*
|
|
|
|
* Shifts (increases or decreases) character offset (relative to beginning of
|
|
|
|
* the document) of the part of the text starting from given place.
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_PropagateCharOffset(ME_DisplayItem *p, int shift)
|
|
|
|
{
|
2006-08-02 20:33:26 +02:00
|
|
|
/* Runs in one paragraph contain character offset relative to their owning
|
|
|
|
* paragraph. If we start the shifting from the run, we need to shift
|
|
|
|
* all the relative offsets until the end of the paragraph
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
if (p->type == diRun) /* propagate in all runs in this para */
|
|
|
|
{
|
|
|
|
TRACE("PropagateCharOffset(%s, %d)\n", debugstr_w(p->member.run.strText->szData), shift);
|
|
|
|
do {
|
|
|
|
p->member.run.nCharOfs += shift;
|
|
|
|
assert(p->member.run.nCharOfs >= 0);
|
|
|
|
p = ME_FindItemFwd(p, diRunOrParagraphOrEnd);
|
|
|
|
} while(p->type == diRun);
|
|
|
|
}
|
2006-08-02 20:33:26 +02:00
|
|
|
/* Runs in next paragraphs don't need their offsets updated, because they,
|
|
|
|
* again, those offsets are relative to their respective paragraphs.
|
|
|
|
* Instead of that, we're updating paragraphs' character offsets.
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
if (p->type == diParagraph) /* propagate in all next paras */
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
p->member.para.nCharOfs += shift;
|
|
|
|
assert(p->member.para.nCharOfs >= 0);
|
|
|
|
p = p->member.para.next_para;
|
|
|
|
} while(p->type == diParagraph);
|
|
|
|
}
|
2006-08-02 20:33:26 +02:00
|
|
|
/* diTextEnd also has character offset in it, which makes finding text length
|
|
|
|
* easier. But it needs to be up to date first.
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
if (p->type == diTextEnd)
|
|
|
|
{
|
|
|
|
p->member.para.nCharOfs += shift;
|
|
|
|
assert(p->member.para.nCharOfs >= 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_CheckCharOffsets
|
|
|
|
*
|
|
|
|
* Checks if editor lists' validity and optionally dumps the document structure
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_CheckCharOffsets(ME_TextEditor *editor)
|
|
|
|
{
|
|
|
|
ME_DisplayItem *p = editor->pBuffer->pFirst;
|
|
|
|
int ofs = 0, ofsp = 0;
|
2005-10-08 12:33:44 +02:00
|
|
|
if(TRACE_ON(richedit_lists))
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2005-10-08 12:33:44 +02:00
|
|
|
TRACE_(richedit_lists)("---\n");
|
2005-03-05 12:19:14 +01:00
|
|
|
ME_DumpDocument(editor->pBuffer);
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
p = ME_FindItemFwd(p, diRunOrParagraphOrEnd);
|
|
|
|
switch(p->type) {
|
|
|
|
case diTextEnd:
|
2005-10-08 12:33:44 +02:00
|
|
|
TRACE_(richedit_check)("tend, real ofsp = %d, counted = %d\n", p->member.para.nCharOfs, ofsp+ofs);
|
2005-03-05 12:19:14 +01:00
|
|
|
assert(ofsp+ofs == p->member.para.nCharOfs);
|
|
|
|
return;
|
|
|
|
case diParagraph:
|
2005-10-08 12:33:44 +02:00
|
|
|
TRACE_(richedit_check)("para, real ofsp = %d, counted = %d\n", p->member.para.nCharOfs, ofsp+ofs);
|
2005-03-05 12:19:14 +01:00
|
|
|
assert(ofsp+ofs == p->member.para.nCharOfs);
|
|
|
|
ofsp = p->member.para.nCharOfs;
|
|
|
|
ofs = 0;
|
|
|
|
break;
|
|
|
|
case diRun:
|
2006-10-13 21:25:54 +02:00
|
|
|
TRACE_(richedit_check)("run, real ofs = %d (+ofsp = %d), counted = %d, len = %d, txt = \"%s\", flags=%08x, fx&mask = %08x\n",
|
2005-04-16 12:48:35 +02:00
|
|
|
p->member.run.nCharOfs, p->member.run.nCharOfs+ofsp, ofsp+ofs,
|
2005-03-05 12:19:14 +01:00
|
|
|
p->member.run.strText->nLen, debugstr_w(p->member.run.strText->szData),
|
|
|
|
p->member.run.nFlags,
|
|
|
|
p->member.run.style->fmt.dwMask & p->member.run.style->fmt.dwEffects);
|
|
|
|
assert(ofs == p->member.run.nCharOfs);
|
2009-01-28 07:34:56 +01:00
|
|
|
assert(p->member.run.strText->nLen);
|
|
|
|
ofs += p->member.run.strText->nLen;
|
2005-03-05 12:19:14 +01:00
|
|
|
break;
|
2008-08-07 18:31:41 +02:00
|
|
|
case diCell:
|
|
|
|
TRACE_(richedit_check)("cell\n");
|
|
|
|
break;
|
2005-03-05 12:19:14 +01:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
} while(1);
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_CharOfsFromRunOfs
|
2009-02-06 07:09:51 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Converts a character position relative to the start of the run, to a
|
|
|
|
* character position relative to the start of the document.
|
2009-02-06 07:09:51 +01:00
|
|
|
* Kind of a "local to global" offset conversion.
|
|
|
|
*/
|
|
|
|
int ME_CharOfsFromRunOfs(ME_TextEditor *editor, const ME_DisplayItem *pPara,
|
|
|
|
const ME_DisplayItem *pRun, int nOfs)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2009-02-06 07:09:51 +01:00
|
|
|
assert(pRun && pRun->type == diRun);
|
|
|
|
assert(pPara && pPara->type == diParagraph);
|
|
|
|
return pPara->member.para.nCharOfs + pRun->member.run.nCharOfs + nOfs;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_CursorFromCharOfs
|
2009-01-27 09:39:23 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Converts a character offset (relative to the start of the document) to
|
2009-02-06 07:09:47 +01:00
|
|
|
* a cursor structure (which contains a run and a position relative to that
|
2009-01-27 09:39:23 +01:00
|
|
|
* run).
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_CursorFromCharOfs(ME_TextEditor *editor, int nCharOfs, ME_Cursor *pCursor)
|
|
|
|
{
|
2009-02-09 18:01:35 +01:00
|
|
|
ME_RunOfsFromCharOfs(editor, nCharOfs, &pCursor->pPara,
|
|
|
|
&pCursor->pRun, &pCursor->nOffset);
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_RunOfsFromCharOfs
|
2009-01-27 09:39:23 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Find a run and relative character offset given an absolute character offset
|
|
|
|
* (absolute offset being an offset relative to the start of the document).
|
2009-01-27 09:39:23 +01:00
|
|
|
* Kind of a "global to local" offset conversion.
|
|
|
|
*/
|
2009-02-06 07:09:47 +01:00
|
|
|
void ME_RunOfsFromCharOfs(ME_TextEditor *editor,
|
|
|
|
int nCharOfs,
|
|
|
|
ME_DisplayItem **ppPara,
|
|
|
|
ME_DisplayItem **ppRun,
|
|
|
|
int *pOfs)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2009-01-27 09:39:23 +01:00
|
|
|
ME_DisplayItem *item, *next_item;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2009-01-27 09:39:23 +01:00
|
|
|
nCharOfs = max(nCharOfs, 0);
|
|
|
|
nCharOfs = min(nCharOfs, ME_GetTextLength(editor));
|
|
|
|
|
|
|
|
/* Find the paragraph at the offset. */
|
|
|
|
next_item = editor->pBuffer->pFirst->member.para.next_para;
|
|
|
|
do {
|
|
|
|
item = next_item;
|
|
|
|
next_item = item->member.para.next_para;
|
|
|
|
} while (next_item->member.para.nCharOfs <= nCharOfs);
|
|
|
|
assert(item->type == diParagraph);
|
|
|
|
nCharOfs -= item->member.para.nCharOfs;
|
2009-02-06 07:09:47 +01:00
|
|
|
if (ppPara) *ppPara = item;
|
2009-01-27 09:39:23 +01:00
|
|
|
|
|
|
|
/* Find the run at the offset. */
|
|
|
|
next_item = ME_FindItemFwd(item, diRun);
|
|
|
|
do {
|
|
|
|
item = next_item;
|
|
|
|
next_item = ME_FindItemFwd(item, diRunOrParagraphOrEnd);
|
|
|
|
} while (next_item->type == diRun &&
|
|
|
|
next_item->member.run.nCharOfs <= nCharOfs);
|
|
|
|
assert(item->type == diRun);
|
|
|
|
nCharOfs -= item->member.run.nCharOfs;
|
|
|
|
|
2009-02-06 07:09:47 +01:00
|
|
|
if (ppRun) *ppRun = item;
|
|
|
|
if (pOfs) *pOfs = nCharOfs;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_JoinRuns
|
|
|
|
*
|
|
|
|
* Merges two adjacent runs, the one given as a parameter and the next one.
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_JoinRuns(ME_TextEditor *editor, ME_DisplayItem *p)
|
|
|
|
{
|
|
|
|
ME_DisplayItem *pNext = p->next;
|
|
|
|
int i;
|
|
|
|
assert(p->type == diRun && pNext->type == diRun);
|
|
|
|
assert(p->member.run.nCharOfs != -1);
|
2005-03-09 19:43:18 +01:00
|
|
|
ME_GetParagraph(p)->member.para.nFlags |= MEPF_REWRAP;
|
2005-03-05 12:19:14 +01:00
|
|
|
|
2008-06-23 23:09:58 +02:00
|
|
|
/* Update all cursors so that they don't contain the soon deleted run */
|
2005-03-05 12:19:14 +01:00
|
|
|
for (i=0; i<editor->nCursors; i++) {
|
|
|
|
if (editor->pCursors[i].pRun == pNext) {
|
|
|
|
editor->pCursors[i].pRun = p;
|
2009-02-07 19:21:17 +01:00
|
|
|
editor->pCursors[i].nOffset += p->member.run.strText->nLen;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
}
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
ME_AppendString(p->member.run.strText, pNext->member.run.strText);
|
|
|
|
ME_Remove(pNext);
|
|
|
|
ME_DestroyDisplayItem(pNext);
|
|
|
|
ME_UpdateRunFlags(editor, &p->member.run);
|
|
|
|
if(TRACE_ON(richedit))
|
|
|
|
{
|
|
|
|
TRACE("Before check after join\n");
|
|
|
|
ME_CheckCharOffsets(editor);
|
|
|
|
TRACE("After check after join\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_SplitRun
|
2009-02-09 18:01:35 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Splits a run into two in a given place. It also updates the screen position
|
2009-02-09 18:01:35 +01:00
|
|
|
* and size (extent) of the newly generated runs.
|
|
|
|
*/
|
2008-03-16 21:47:08 +01:00
|
|
|
ME_DisplayItem *ME_SplitRun(ME_WrapContext *wc, ME_DisplayItem *item, int nVChar)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2008-03-16 21:47:08 +01:00
|
|
|
ME_TextEditor *editor = wc->context->editor;
|
2005-03-05 12:19:14 +01:00
|
|
|
ME_Run *run, *run2;
|
2010-07-29 20:07:40 +02:00
|
|
|
ME_Paragraph *para = &wc->pPara->member.para;
|
|
|
|
ME_Cursor cursor = {wc->pPara, item, nVChar};
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
assert(item->member.run.nCharOfs != -1);
|
|
|
|
if(TRACE_ON(richedit))
|
|
|
|
{
|
|
|
|
TRACE("Before check before split\n");
|
|
|
|
ME_CheckCharOffsets(editor);
|
|
|
|
TRACE("After check before split\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
run = &item->member.run;
|
|
|
|
|
2006-10-13 21:25:54 +02:00
|
|
|
TRACE("Before split: %s(%d, %d)\n", debugstr_w(run->strText->szData),
|
2005-03-05 12:19:14 +01:00
|
|
|
run->pt.x, run->pt.y);
|
|
|
|
|
2010-07-29 20:07:40 +02:00
|
|
|
ME_SplitRunSimple(editor, &cursor);
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2010-07-29 20:07:40 +02:00
|
|
|
run2 = &cursor.pRun->member.run;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2008-03-16 21:47:08 +01:00
|
|
|
ME_CalcRunExtent(wc->context, para, wc->nRow ? wc->nLeftMargin : wc->nFirstMargin, run);
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
run2->pt.x = run->pt.x+run->nWidth;
|
|
|
|
run2->pt.y = run->pt.y;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
if(TRACE_ON(richedit))
|
|
|
|
{
|
|
|
|
TRACE("Before check after split\n");
|
|
|
|
ME_CheckCharOffsets(editor);
|
|
|
|
TRACE("After check after split\n");
|
2006-10-13 21:25:54 +02:00
|
|
|
TRACE("After split: %s(%d, %d), %s(%d, %d)\n",
|
2005-03-05 12:19:14 +01:00
|
|
|
debugstr_w(run->strText->szData), run->pt.x, run->pt.y,
|
|
|
|
debugstr_w(run2->strText->szData), run2->pt.x, run2->pt.y);
|
|
|
|
}
|
|
|
|
|
2010-07-29 20:07:40 +02:00
|
|
|
return cursor.pRun;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_SplitRunSimple
|
2010-07-29 20:07:40 +02:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Does the most basic job of splitting a run into two - it does not
|
2010-07-29 20:07:40 +02:00
|
|
|
* update the positions and extents.
|
|
|
|
*/
|
|
|
|
ME_DisplayItem *ME_SplitRunSimple(ME_TextEditor *editor, ME_Cursor *cursor)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2010-07-29 20:07:40 +02:00
|
|
|
ME_DisplayItem *run = cursor->pRun;
|
|
|
|
ME_DisplayItem *new_run;
|
2005-03-05 12:19:14 +01:00
|
|
|
int i;
|
2010-07-29 20:07:40 +02:00
|
|
|
int nOffset = cursor->nOffset;
|
2005-03-05 12:19:14 +01:00
|
|
|
|
2010-07-29 20:07:40 +02:00
|
|
|
assert(!(run->member.run.nFlags & MERF_NONTEXT));
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2010-07-29 20:07:40 +02:00
|
|
|
new_run = ME_MakeRun(run->member.run.style,
|
|
|
|
ME_VSplitString(run->member.run.strText, nOffset),
|
|
|
|
run->member.run.nFlags & MERF_SPLITMASK);
|
2005-03-05 12:19:14 +01:00
|
|
|
|
2010-07-29 20:07:40 +02:00
|
|
|
new_run->member.run.nCharOfs = run->member.run.nCharOfs + nOffset;
|
|
|
|
cursor->pRun = new_run;
|
|
|
|
cursor->nOffset = 0;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2010-07-29 20:07:40 +02:00
|
|
|
ME_InsertBefore(run->next, new_run);
|
|
|
|
|
|
|
|
ME_UpdateRunFlags(editor, &run->member.run);
|
|
|
|
ME_UpdateRunFlags(editor, &new_run->member.run);
|
|
|
|
for (i = 0; i < editor->nCursors; i++) {
|
|
|
|
if (editor->pCursors[i].pRun == run &&
|
|
|
|
editor->pCursors[i].nOffset >= nOffset) {
|
|
|
|
editor->pCursors[i].pRun = new_run;
|
|
|
|
editor->pCursors[i].nOffset -= nOffset;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
}
|
2010-07-29 20:07:40 +02:00
|
|
|
cursor->pPara->member.para.nFlags |= MEPF_REWRAP;
|
|
|
|
return run;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_MakeRun
|
|
|
|
*
|
|
|
|
* A helper function to create run structures quickly.
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
ME_DisplayItem *ME_MakeRun(ME_Style *s, ME_String *strData, int nFlags)
|
|
|
|
{
|
|
|
|
ME_DisplayItem *item = ME_MakeDI(diRun);
|
|
|
|
item->member.run.style = s;
|
2008-01-27 19:01:41 +01:00
|
|
|
item->member.run.ole_obj = NULL;
|
2005-03-05 12:19:14 +01:00
|
|
|
item->member.run.strText = strData;
|
|
|
|
item->member.run.nFlags = nFlags;
|
|
|
|
item->member.run.nCharOfs = -1;
|
|
|
|
ME_AddRefStyle(s);
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_InsertRunAtCursor
|
2009-02-09 18:01:35 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Inserts a new run with given style, flags and content at a given position,
|
|
|
|
* which is passed as a cursor structure (which consists of a run and
|
2009-02-09 18:01:35 +01:00
|
|
|
* a run-relative character offset).
|
|
|
|
*/
|
2006-01-10 12:10:49 +01:00
|
|
|
ME_DisplayItem *
|
|
|
|
ME_InsertRunAtCursor(ME_TextEditor *editor, ME_Cursor *cursor, ME_Style *style,
|
|
|
|
const WCHAR *str, int len, int flags)
|
|
|
|
{
|
|
|
|
ME_DisplayItem *pDI;
|
|
|
|
ME_UndoItem *pUI;
|
2009-02-09 18:01:35 +01:00
|
|
|
|
2010-07-29 20:07:40 +02:00
|
|
|
if (cursor->nOffset)
|
|
|
|
ME_SplitRunSimple(editor, cursor);
|
2009-02-09 18:01:35 +01:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
pUI = ME_AddUndoItem(editor, diUndoDeleteRun, NULL);
|
2005-03-11 11:24:56 +01:00
|
|
|
if (pUI) {
|
2009-02-09 18:01:35 +01:00
|
|
|
pUI->nStart = cursor->pPara->member.para.nCharOfs
|
|
|
|
+ cursor->pRun->member.run.nCharOfs;
|
2006-01-10 12:10:49 +01:00
|
|
|
pUI->nLen = len;
|
2005-03-11 11:24:56 +01:00
|
|
|
}
|
2009-02-09 18:01:35 +01:00
|
|
|
|
2006-01-10 12:10:49 +01:00
|
|
|
pDI = ME_MakeRun(style, ME_MakeStringN(str, len), flags);
|
|
|
|
pDI->member.run.nCharOfs = cursor->pRun->member.run.nCharOfs;
|
|
|
|
ME_InsertBefore(cursor->pRun, pDI);
|
|
|
|
TRACE("Shift length:%d\n", len);
|
|
|
|
ME_PropagateCharOffset(cursor->pRun, len);
|
2009-02-09 18:01:35 +01:00
|
|
|
cursor->pPara->member.para.nFlags |= MEPF_REWRAP;
|
2005-03-05 12:19:14 +01:00
|
|
|
return pDI;
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_UpdateRunFlags
|
2009-02-07 19:21:23 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Determine some of run attributes given its content (style, text content).
|
2009-02-07 19:21:23 +01:00
|
|
|
* Some flags cannot be determined by this function (MERF_GRAPHICS,
|
|
|
|
* MERF_ENDPARA)
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_UpdateRunFlags(ME_TextEditor *editor, ME_Run *run)
|
|
|
|
{
|
2009-02-07 19:21:23 +01:00
|
|
|
ME_String *strText = run->strText;
|
|
|
|
assert(run->nCharOfs >= 0);
|
2006-01-31 13:01:26 +01:00
|
|
|
|
2008-08-07 18:31:41 +02:00
|
|
|
if (RUN_IS_HIDDEN(run) || run->nFlags & MERF_TABLESTART)
|
2006-01-31 13:01:26 +01:00
|
|
|
run->nFlags |= MERF_HIDDEN;
|
|
|
|
else
|
|
|
|
run->nFlags &= ~MERF_HIDDEN;
|
|
|
|
|
2009-02-07 19:21:23 +01:00
|
|
|
if (ME_IsSplitable(strText))
|
2005-03-05 12:19:14 +01:00
|
|
|
run->nFlags |= MERF_SPLITTABLE;
|
|
|
|
else
|
|
|
|
run->nFlags &= ~MERF_SPLITTABLE;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
|
|
|
if (!(run->nFlags & MERF_NOTEXT)) {
|
2009-02-07 19:21:23 +01:00
|
|
|
if (ME_IsWhitespaces(strText))
|
2005-03-05 12:19:14 +01:00
|
|
|
run->nFlags |= MERF_WHITESPACE | MERF_STARTWHITE | MERF_ENDWHITE;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
run->nFlags &= ~MERF_WHITESPACE;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2009-02-07 19:21:23 +01:00
|
|
|
if (ME_IsWSpace(strText->szData[0]))
|
2005-03-05 12:19:14 +01:00
|
|
|
run->nFlags |= MERF_STARTWHITE;
|
|
|
|
else
|
|
|
|
run->nFlags &= ~MERF_STARTWHITE;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2009-02-07 19:21:23 +01:00
|
|
|
if (ME_IsWSpace(strText->szData[strText->nLen - 1]))
|
2005-03-05 12:19:14 +01:00
|
|
|
run->nFlags |= MERF_ENDWHITE;
|
|
|
|
else
|
|
|
|
run->nFlags &= ~MERF_ENDWHITE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
run->nFlags &= ~(MERF_WHITESPACE | MERF_STARTWHITE | MERF_ENDWHITE);
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_CharFromPoint
|
|
|
|
*
|
|
|
|
* Returns a character position inside the run given a run-relative
|
|
|
|
* pixel horizontal position. This version rounds left (ie. if the second
|
|
|
|
* character is at pixel position 8, then for cx=0..7 it returns 0).
|
|
|
|
*/
|
2008-01-01 22:05:28 +01:00
|
|
|
int ME_CharFromPoint(ME_Context *c, int cx, ME_Run *run)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
int fit = 0;
|
|
|
|
HGDIOBJ hOldFont;
|
|
|
|
SIZE sz;
|
|
|
|
if (!run->strText->nLen)
|
|
|
|
return 0;
|
|
|
|
|
2008-08-07 18:31:41 +02:00
|
|
|
if (run->nFlags & MERF_TAB ||
|
|
|
|
(run->nFlags & (MERF_ENDCELL|MERF_ENDPARA)) == MERF_ENDCELL)
|
2005-04-16 12:48:35 +02:00
|
|
|
{
|
2006-08-02 20:33:26 +02:00
|
|
|
if (cx < run->nWidth/2)
|
2005-04-16 12:48:35 +02:00
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
2005-03-05 12:19:14 +01:00
|
|
|
if (run->nFlags & MERF_GRAPHICS)
|
|
|
|
{
|
|
|
|
SIZE sz;
|
2008-01-27 19:02:34 +01:00
|
|
|
ME_GetOLEObjectSize(c, run, &sz);
|
2005-03-05 12:19:14 +01:00
|
|
|
if (cx < sz.cx)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
2008-01-01 22:05:33 +01:00
|
|
|
hOldFont = ME_SelectStyleFont(c, run->style);
|
2006-08-08 17:55:08 +02:00
|
|
|
|
2008-01-01 22:05:28 +01:00
|
|
|
if (c->editor->cPasswordMask)
|
2006-08-08 17:55:08 +02:00
|
|
|
{
|
2009-02-07 19:21:17 +01:00
|
|
|
ME_String *strMasked = ME_MakeStringR(c->editor->cPasswordMask, run->strText->nLen);
|
2008-01-01 22:05:28 +01:00
|
|
|
GetTextExtentExPointW(c->hDC, strMasked->szData, run->strText->nLen,
|
2006-08-08 17:55:08 +02:00
|
|
|
cx, &fit, NULL, &sz);
|
|
|
|
ME_DestroyString(strMasked);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-01-01 22:05:28 +01:00
|
|
|
GetTextExtentExPointW(c->hDC, run->strText->szData, run->strText->nLen,
|
2006-08-08 17:55:08 +02:00
|
|
|
cx, &fit, NULL, &sz);
|
|
|
|
}
|
|
|
|
|
2008-01-01 22:05:33 +01:00
|
|
|
ME_UnselectStyleFont(c, run->style, hOldFont);
|
2008-01-01 22:05:28 +01:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
return fit;
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_CharFromPointCursor
|
2009-02-07 19:21:29 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Returns a character position inside the run given a run-relative
|
2009-02-07 19:21:29 +01:00
|
|
|
* pixel horizontal position. This version rounds to the nearest character edge
|
|
|
|
* (ie. if the second character is at pixel position 8, then for cx=0..3
|
2006-08-02 20:33:26 +02:00
|
|
|
* it returns 0, and for cx=4..7 it returns 1).
|
2009-02-07 19:21:29 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* It is used for mouse click handling, for better usability (and compatibility
|
2009-02-07 19:21:29 +01:00
|
|
|
* with the native control).
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
int ME_CharFromPointCursor(ME_TextEditor *editor, int cx, ME_Run *run)
|
|
|
|
{
|
2006-08-04 21:47:44 +02:00
|
|
|
ME_String *strRunText;
|
|
|
|
/* This could point to either the run's real text, or it's masked form in a password control */
|
2009-02-07 19:21:29 +01:00
|
|
|
|
|
|
|
int fit = 0;
|
2008-01-01 22:05:33 +01:00
|
|
|
ME_Context c;
|
2005-03-05 12:19:14 +01:00
|
|
|
HGDIOBJ hOldFont;
|
|
|
|
SIZE sz, sz2, sz3;
|
|
|
|
if (!run->strText->nLen)
|
|
|
|
return 0;
|
|
|
|
|
2008-08-07 18:31:41 +02:00
|
|
|
if (run->nFlags & (MERF_TAB | MERF_ENDCELL))
|
2005-04-16 12:48:35 +02:00
|
|
|
{
|
|
|
|
if (cx < run->nWidth/2)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
2009-01-20 07:41:32 +01:00
|
|
|
ME_InitContext(&c, editor, ITextHost_TxGetDC(editor->texthost));
|
2005-03-05 12:19:14 +01:00
|
|
|
if (run->nFlags & MERF_GRAPHICS)
|
|
|
|
{
|
|
|
|
SIZE sz;
|
2008-01-27 19:02:34 +01:00
|
|
|
ME_GetOLEObjectSize(&c, run, &sz);
|
2009-01-20 07:41:32 +01:00
|
|
|
ME_DestroyContext(&c);
|
2005-03-05 12:19:14 +01:00
|
|
|
if (cx < sz.cx/2)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
2008-01-27 19:02:34 +01:00
|
|
|
|
2006-08-04 21:47:44 +02:00
|
|
|
if (editor->cPasswordMask)
|
2009-02-07 19:21:17 +01:00
|
|
|
strRunText = ME_MakeStringR(editor->cPasswordMask, run->strText->nLen);
|
2006-08-04 21:47:44 +02:00
|
|
|
else
|
|
|
|
strRunText = run->strText;
|
2005-03-05 12:19:14 +01:00
|
|
|
|
2008-01-01 22:05:33 +01:00
|
|
|
hOldFont = ME_SelectStyleFont(&c, run->style);
|
|
|
|
GetTextExtentExPointW(c.hDC, strRunText->szData, strRunText->nLen,
|
|
|
|
cx, &fit, NULL, &sz);
|
2006-08-04 21:47:44 +02:00
|
|
|
if (fit != strRunText->nLen)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2008-01-01 22:05:33 +01:00
|
|
|
GetTextExtentPoint32W(c.hDC, strRunText->szData, fit, &sz2);
|
2009-02-07 19:21:29 +01:00
|
|
|
GetTextExtentPoint32W(c.hDC, strRunText->szData, fit + 1, &sz3);
|
2005-03-05 12:19:14 +01:00
|
|
|
if (cx >= (sz2.cx+sz3.cx)/2)
|
2009-02-07 19:21:29 +01:00
|
|
|
fit = fit + 1;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
2009-02-07 19:21:29 +01:00
|
|
|
|
2006-08-04 21:47:44 +02:00
|
|
|
if (editor->cPasswordMask)
|
|
|
|
ME_DestroyString(strRunText);
|
2009-02-07 19:21:29 +01:00
|
|
|
|
2008-01-01 22:05:33 +01:00
|
|
|
ME_UnselectStyleFont(&c, run->style, hOldFont);
|
2009-01-20 07:41:32 +01:00
|
|
|
ME_DestroyContext(&c);
|
2005-03-05 12:19:14 +01:00
|
|
|
return fit;
|
|
|
|
}
|
|
|
|
|
2008-01-01 22:05:33 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_GetTextExtent
|
|
|
|
*
|
|
|
|
* Finds a width and a height of the text using a specified style
|
|
|
|
*/
|
|
|
|
static void ME_GetTextExtent(ME_Context *c, LPCWSTR szText, int nChars, ME_Style *s, SIZE *size)
|
|
|
|
{
|
|
|
|
HGDIOBJ hOldFont;
|
2010-01-25 07:27:24 +01:00
|
|
|
if (c->hDC) {
|
|
|
|
hOldFont = ME_SelectStyleFont(c, s);
|
|
|
|
GetTextExtentPoint32W(c->hDC, szText, nChars, size);
|
|
|
|
ME_UnselectStyleFont(c, s, hOldFont);
|
|
|
|
} else {
|
|
|
|
size->cx = 0;
|
|
|
|
size->cy = 0;
|
|
|
|
}
|
2008-01-01 22:05:33 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_PointFromChar
|
2009-02-09 18:01:35 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Returns a run-relative pixel position given a run-relative character
|
|
|
|
* position (character offset)
|
2009-02-09 18:01:35 +01:00
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
int ME_PointFromChar(ME_TextEditor *editor, ME_Run *pRun, int nOffset)
|
|
|
|
{
|
|
|
|
SIZE size;
|
2008-01-01 22:05:33 +01:00
|
|
|
ME_Context c;
|
2006-08-04 21:47:44 +02:00
|
|
|
ME_String *strRunText;
|
|
|
|
/* This could point to either the run's real text, or it's masked form in a password control */
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2009-01-20 07:41:32 +01:00
|
|
|
ME_InitContext(&c, editor, ITextHost_TxGetDC(editor->texthost));
|
2005-03-05 12:19:14 +01:00
|
|
|
if (pRun->nFlags & MERF_GRAPHICS)
|
|
|
|
{
|
2008-01-27 19:02:34 +01:00
|
|
|
if (nOffset)
|
|
|
|
ME_GetOLEObjectSize(&c, pRun, &size);
|
2009-02-06 07:09:43 +01:00
|
|
|
ME_DestroyContext(&c);
|
2008-01-27 19:02:34 +01:00
|
|
|
return nOffset != 0;
|
2009-01-27 09:39:23 +01:00
|
|
|
} else if (pRun->nFlags & MERF_ENDPARA) {
|
|
|
|
nOffset = 0;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
2009-01-27 09:39:23 +01:00
|
|
|
|
|
|
|
if (editor->cPasswordMask)
|
2009-02-07 19:21:17 +01:00
|
|
|
strRunText = ME_MakeStringR(editor->cPasswordMask, pRun->strText->nLen);
|
2006-08-04 21:47:44 +02:00
|
|
|
else
|
|
|
|
strRunText = pRun->strText;
|
2008-01-27 19:02:34 +01:00
|
|
|
|
2008-01-01 22:05:33 +01:00
|
|
|
ME_GetTextExtent(&c, strRunText->szData, nOffset, pRun->style, &size);
|
2009-02-06 07:09:43 +01:00
|
|
|
ME_DestroyContext(&c);
|
2006-08-04 21:47:44 +02:00
|
|
|
if (editor->cPasswordMask)
|
|
|
|
ME_DestroyString(strRunText);
|
2005-03-05 12:19:14 +01:00
|
|
|
return size.cx;
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_GetRunSizeCommon
|
|
|
|
*
|
2007-01-23 22:00:27 +01:00
|
|
|
* Finds width, height, ascent and descent of a run, up to given character
|
|
|
|
* (nLen).
|
|
|
|
*/
|
2007-08-15 22:35:51 +02:00
|
|
|
static SIZE ME_GetRunSizeCommon(ME_Context *c, const ME_Paragraph *para, ME_Run *run, int nLen,
|
2008-03-16 21:47:08 +01:00
|
|
|
int startx, int *pAscent, int *pDescent)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
SIZE size;
|
2009-02-07 19:21:17 +01:00
|
|
|
int nMaxLen = run->strText->nLen;
|
2005-03-05 12:19:14 +01:00
|
|
|
|
|
|
|
if (nLen>nMaxLen)
|
|
|
|
nLen = nMaxLen;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
|
|
|
/* FIXME the following call also ensures that TEXTMETRIC structure is filled
|
2006-02-04 17:01:01 +01:00
|
|
|
* this is wasteful for MERF_NONTEXT runs, but that shouldn't matter
|
2005-04-16 12:48:35 +02:00
|
|
|
* in practice
|
|
|
|
*/
|
2006-08-04 21:47:44 +02:00
|
|
|
|
|
|
|
if (c->editor->cPasswordMask)
|
|
|
|
{
|
|
|
|
ME_String *szMasked = ME_MakeStringR(c->editor->cPasswordMask,nLen);
|
|
|
|
ME_GetTextExtent(c, szMasked->szData, nLen,run->style, &size);
|
|
|
|
ME_DestroyString(szMasked);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ME_GetTextExtent(c, run->strText->szData, nLen, run->style, &size);
|
|
|
|
}
|
2005-04-16 12:48:35 +02:00
|
|
|
*pAscent = run->style->tm.tmAscent;
|
|
|
|
*pDescent = run->style->tm.tmDescent;
|
|
|
|
size.cy = *pAscent + *pDescent;
|
|
|
|
|
|
|
|
if (run->nFlags & MERF_TAB)
|
|
|
|
{
|
2008-08-13 05:15:29 +02:00
|
|
|
int pos = 0, i = 0, ppos, shift = 0;
|
2005-04-16 12:48:35 +02:00
|
|
|
PARAFORMAT2 *pFmt = para->pFmt;
|
2008-03-16 21:47:08 +01:00
|
|
|
|
2008-08-13 05:15:29 +02:00
|
|
|
if (c->editor->bEmulateVersion10 && /* v1.0 - 3.0 */
|
|
|
|
pFmt->dwMask & PFM_TABLE && pFmt->wEffects & PFE_TABLE)
|
|
|
|
/* The horizontal gap shifts the tab positions to leave the gap. */
|
|
|
|
shift = pFmt->dxOffset * 2;
|
2005-04-16 12:48:35 +02:00
|
|
|
do {
|
|
|
|
if (i < pFmt->cTabCount)
|
|
|
|
{
|
2008-08-13 05:15:29 +02:00
|
|
|
/* Only one side of the horizontal gap is needed at the end of
|
|
|
|
* the table row. */
|
|
|
|
if (i == pFmt->cTabCount -1)
|
|
|
|
shift = shift >> 1;
|
|
|
|
pos = shift + (pFmt->rgxTabs[i]&0x00FFFFFF);
|
2005-04-16 12:48:35 +02:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-06-27 15:18:50 +02:00
|
|
|
pos += lDefaultTab - (pos % lDefaultTab);
|
2005-04-16 12:48:35 +02:00
|
|
|
}
|
2008-12-18 07:56:49 +01:00
|
|
|
ppos = ME_twips2pointsX(c, pos);
|
2008-03-16 21:47:08 +01:00
|
|
|
if (ppos > startx + run->pt.x) {
|
|
|
|
size.cx = ppos - startx - run->pt.x;
|
2005-04-16 12:48:35 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while(1);
|
|
|
|
size.cy = *pAscent + *pDescent;
|
|
|
|
return size;
|
|
|
|
}
|
2005-03-05 12:19:14 +01:00
|
|
|
if (run->nFlags & MERF_GRAPHICS)
|
|
|
|
{
|
2008-01-27 19:02:34 +01:00
|
|
|
ME_GetOLEObjectSize(c, run, &size);
|
2005-04-16 12:48:35 +02:00
|
|
|
if (size.cy > *pAscent)
|
|
|
|
*pAscent = size.cy;
|
|
|
|
/* descent is unchanged */
|
2005-03-05 12:19:14 +01:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_GetRunSize
|
|
|
|
*
|
|
|
|
* Finds width and height (but not ascent and descent) of a part of the run
|
|
|
|
* up to given character.
|
|
|
|
*/
|
2008-03-16 21:47:08 +01:00
|
|
|
SIZE ME_GetRunSize(ME_Context *c, const ME_Paragraph *para,
|
|
|
|
ME_Run *run, int nLen, int startx)
|
2005-04-16 12:48:35 +02:00
|
|
|
{
|
|
|
|
int asc, desc;
|
2008-03-16 21:47:08 +01:00
|
|
|
return ME_GetRunSizeCommon(c, para, run, nLen, startx, &asc, &desc);
|
2005-04-16 12:48:35 +02:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_CalcRunExtent
|
|
|
|
*
|
|
|
|
* Updates the size of the run (fills width, ascent and descent). The height
|
|
|
|
* is calculated based on whole row's ascent and descent anyway, so no need
|
|
|
|
* to use it here.
|
|
|
|
*/
|
2008-03-16 21:47:08 +01:00
|
|
|
void ME_CalcRunExtent(ME_Context *c, const ME_Paragraph *para, int startx, ME_Run *run)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2006-01-31 13:01:26 +01:00
|
|
|
if (run->nFlags & MERF_HIDDEN)
|
|
|
|
run->nWidth = 0;
|
|
|
|
else
|
|
|
|
{
|
2009-02-07 19:21:17 +01:00
|
|
|
int nEnd = run->strText->nLen;
|
2008-03-16 21:47:08 +01:00
|
|
|
SIZE size = ME_GetRunSizeCommon(c, para, run, nEnd, startx,
|
|
|
|
&run->nAscent, &run->nDescent);
|
2006-01-31 13:01:26 +01:00
|
|
|
run->nWidth = size.cx;
|
|
|
|
if (!size.cx)
|
|
|
|
WARN("size.cx == 0\n");
|
|
|
|
}
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_SetSelectionCharFormat
|
2009-08-12 15:06:13 +02:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Applies a style change, either to a current selection, or to insert cursor
|
|
|
|
* (ie. the style next typed characters will use).
|
2009-08-12 15:06:13 +02:00
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_SetSelectionCharFormat(ME_TextEditor *editor, CHARFORMAT2W *pFmt)
|
|
|
|
{
|
2009-08-12 15:06:13 +02:00
|
|
|
if (!ME_IsSelection(editor))
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
ME_Style *s;
|
|
|
|
if (!editor->pBuffer->pCharStyle)
|
|
|
|
editor->pBuffer->pCharStyle = ME_GetInsertStyle(editor, 0);
|
|
|
|
s = ME_ApplyStyle(editor->pBuffer->pCharStyle, pFmt);
|
|
|
|
ME_ReleaseStyle(editor->pBuffer->pCharStyle);
|
|
|
|
editor->pBuffer->pCharStyle = s;
|
2009-08-12 15:06:13 +02:00
|
|
|
} else {
|
|
|
|
ME_Cursor *from, *to;
|
|
|
|
ME_GetSelection(editor, &from, &to);
|
|
|
|
ME_SetCharFormat(editor, from, to, pFmt);
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_SetCharFormat
|
2009-08-12 15:06:13 +02:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Applies a style change to the specified part of the text
|
2009-08-12 15:06:13 +02:00
|
|
|
*
|
|
|
|
* The start and end cursors specify the part of the text. These cursors will
|
|
|
|
* be updated to stay valid, but this function may invalidate other
|
|
|
|
* non-selection cursors. The end cursor may be NULL to specify all the text
|
|
|
|
* following the start cursor.
|
|
|
|
*
|
|
|
|
* If no text is selected, then nothing is done.
|
|
|
|
*/
|
|
|
|
void ME_SetCharFormat(ME_TextEditor *editor, ME_Cursor *start, ME_Cursor *end, CHARFORMAT2W *pFmt)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
ME_DisplayItem *para;
|
2009-08-12 15:06:13 +02:00
|
|
|
ME_DisplayItem *run;
|
|
|
|
ME_DisplayItem *end_run = NULL;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2009-08-12 15:06:13 +02:00
|
|
|
if (end && start->pRun == end->pRun && start->nOffset == end->nOffset)
|
|
|
|
return;
|
2005-03-05 12:19:14 +01:00
|
|
|
|
2009-08-12 15:06:13 +02:00
|
|
|
if (start->nOffset)
|
|
|
|
{
|
|
|
|
/* SplitRunSimple may or may not update the cursors, depending on whether they
|
|
|
|
* are selection cursors, but we need to make sure they are valid. */
|
|
|
|
int split_offset = start->nOffset;
|
2010-07-29 20:07:40 +02:00
|
|
|
ME_DisplayItem *split_run = ME_SplitRunSimple(editor, start);
|
2009-08-12 15:06:13 +02:00
|
|
|
if (end && end->pRun == split_run)
|
|
|
|
{
|
|
|
|
end->pRun = start->pRun;
|
|
|
|
end->nOffset -= split_offset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (end && end->nOffset)
|
2010-07-29 20:07:40 +02:00
|
|
|
ME_SplitRunSimple(editor, end);
|
|
|
|
end_run = end ? end->pRun : NULL;
|
2005-03-05 12:19:14 +01:00
|
|
|
|
2009-08-12 15:06:13 +02:00
|
|
|
run = start->pRun;
|
|
|
|
para = start->pPara;
|
2005-03-09 12:48:59 +01:00
|
|
|
para->member.para.nFlags |= MEPF_REWRAP;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2009-08-12 15:06:13 +02:00
|
|
|
while(run != end_run)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
ME_UndoItem *undo = NULL;
|
2009-08-12 15:06:13 +02:00
|
|
|
ME_Style *new_style = ME_ApplyStyle(run->member.run.style, pFmt);
|
2005-03-05 12:19:14 +01:00
|
|
|
/* ME_DumpStyle(new_style); */
|
|
|
|
undo = ME_AddUndoItem(editor, diUndoSetCharFormat, NULL);
|
|
|
|
if (undo) {
|
2009-08-12 15:06:13 +02:00
|
|
|
undo->nStart = run->member.run.nCharOfs+para->member.para.nCharOfs;
|
|
|
|
undo->nLen = run->member.run.strText->nLen;
|
|
|
|
undo->di.member.ustyle = run->member.run.style;
|
2008-11-25 17:42:38 +01:00
|
|
|
/* we'd have to addref undo...ustyle and release tmp...style
|
2005-03-05 12:19:14 +01:00
|
|
|
but they'd cancel each other out so we can do nothing instead */
|
|
|
|
}
|
|
|
|
else
|
2009-08-12 15:06:13 +02:00
|
|
|
ME_ReleaseStyle(run->member.run.style);
|
|
|
|
run->member.run.style = new_style;
|
|
|
|
run = ME_FindItemFwd(run, diRunOrParagraph);
|
|
|
|
if (run && run->type == diParagraph)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2009-08-12 15:06:13 +02:00
|
|
|
para = run;
|
|
|
|
run = ME_FindItemFwd(run, diRun);
|
|
|
|
if (run != end_run)
|
2005-03-09 12:48:59 +01:00
|
|
|
para->member.para.nFlags |= MEPF_REWRAP;
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_SetDefaultCharFormat
|
|
|
|
*
|
|
|
|
* Applies a style change to the default character style.
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_SetDefaultCharFormat(ME_TextEditor *editor, CHARFORMAT2W *mod)
|
|
|
|
{
|
2005-04-16 12:48:35 +02:00
|
|
|
ME_Style *style;
|
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
assert(mod->cbSize == sizeof(CHARFORMAT2W));
|
|
|
|
style = ME_ApplyStyle(editor->pBuffer->pDefaultStyle, mod);
|
|
|
|
editor->pBuffer->pDefaultStyle->fmt = style->fmt;
|
|
|
|
editor->pBuffer->pDefaultStyle->tm = style->tm;
|
|
|
|
ME_ReleaseStyle(style);
|
|
|
|
ME_MarkAllForWrapping(editor);
|
|
|
|
/* pcf = editor->pBuffer->pDefaultStyle->fmt; */
|
|
|
|
}
|
|
|
|
|
2007-01-23 22:00:27 +01:00
|
|
|
static void ME_GetRunCharFormat(ME_TextEditor *editor, ME_DisplayItem *run, CHARFORMAT2W *pFmt)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
ME_CopyCharFormat(pFmt, &run->member.run.style->fmt);
|
2008-05-04 06:36:17 +02:00
|
|
|
if ((pFmt->dwMask & CFM_UNDERLINETYPE) && (pFmt->bUnderlineType == CFU_CF1UNDERLINE))
|
|
|
|
{
|
|
|
|
pFmt->dwMask |= CFM_UNDERLINE;
|
|
|
|
pFmt->dwEffects |= CFE_UNDERLINE;
|
|
|
|
}
|
|
|
|
if ((pFmt->dwMask & CFM_UNDERLINETYPE) && (pFmt->bUnderlineType == CFU_UNDERLINENONE))
|
|
|
|
{
|
|
|
|
pFmt->dwMask |= CFM_UNDERLINE;
|
|
|
|
pFmt->dwEffects &= ~CFE_UNDERLINE;
|
|
|
|
}
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_GetDefaultCharFormat
|
|
|
|
*
|
|
|
|
* Retrieves the current default character style (the one applied where no
|
|
|
|
* other style was applied) .
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_GetDefaultCharFormat(ME_TextEditor *editor, CHARFORMAT2W *pFmt)
|
|
|
|
{
|
|
|
|
ME_CopyCharFormat(pFmt, &editor->pBuffer->pDefaultStyle->fmt);
|
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_GetSelectionCharFormat
|
2009-08-12 15:06:09 +02:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* If selection exists, it returns all style elements that are set consistently
|
2009-08-12 15:06:09 +02:00
|
|
|
* in the whole selection. If not, it just returns the current style.
|
|
|
|
*/
|
2005-03-05 12:19:14 +01:00
|
|
|
void ME_GetSelectionCharFormat(ME_TextEditor *editor, CHARFORMAT2W *pFmt)
|
|
|
|
{
|
2009-08-12 15:06:09 +02:00
|
|
|
ME_Cursor *from, *to;
|
|
|
|
if (!ME_IsSelection(editor) && editor->pBuffer->pCharStyle)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
ME_CopyCharFormat(pFmt, &editor->pBuffer->pCharStyle->fmt);
|
|
|
|
return;
|
|
|
|
}
|
2009-08-12 15:06:09 +02:00
|
|
|
ME_GetSelection(editor, &from, &to);
|
|
|
|
ME_GetCharFormat(editor, from, to, pFmt);
|
2005-03-05 12:19:14 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 20:33:26 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* ME_GetCharFormat
|
2009-02-06 07:09:47 +01:00
|
|
|
*
|
2006-08-02 20:33:26 +02:00
|
|
|
* Returns the style consisting of those attributes which are consistently set
|
2009-02-06 07:09:47 +01:00
|
|
|
* in the whole character range.
|
|
|
|
*/
|
2009-08-12 15:06:09 +02:00
|
|
|
void ME_GetCharFormat(ME_TextEditor *editor, const ME_Cursor *from,
|
|
|
|
const ME_Cursor *to, CHARFORMAT2W *pFmt)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
ME_DisplayItem *run, *run_end;
|
|
|
|
CHARFORMAT2W tmp;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2009-08-12 15:06:09 +02:00
|
|
|
run = from->pRun;
|
|
|
|
/* special case - if selection is empty, take previous char's formatting */
|
|
|
|
if (from->pRun == to->pRun && from->nOffset == to->nOffset)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
2009-08-12 15:06:09 +02:00
|
|
|
if (!from->nOffset)
|
2005-03-05 12:19:14 +01:00
|
|
|
{
|
|
|
|
ME_DisplayItem *tmp_run = ME_FindItemBack(run, diRunOrParagraph);
|
|
|
|
if (tmp_run->type == diRun) {
|
|
|
|
ME_GetRunCharFormat(editor, tmp_run, pFmt);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ME_GetRunCharFormat(editor, run, pFmt);
|
|
|
|
return;
|
|
|
|
}
|
2009-08-12 15:06:09 +02:00
|
|
|
|
|
|
|
run_end = to->pRun;
|
|
|
|
if (!to->nOffset)
|
|
|
|
run_end = ME_FindItemBack(run_end, diRun);
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
ME_GetRunCharFormat(editor, run, pFmt);
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
if (run == run_end) return;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
do {
|
|
|
|
/* FIXME add more style feature comparisons */
|
2008-01-01 22:03:58 +01:00
|
|
|
int nAttribs = CFM_SIZE | CFM_FACE | CFM_COLOR | CFM_UNDERLINETYPE;
|
2008-05-04 06:36:17 +02:00
|
|
|
int nEffects = CFM_BOLD | CFM_ITALIC | CFM_UNDERLINE | CFM_STRIKEOUT | CFM_PROTECTED | CFM_LINK | CFM_SUPERSCRIPT;
|
2005-03-05 12:19:14 +01:00
|
|
|
|
|
|
|
run = ME_FindItemFwd(run, diRun);
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
ZeroMemory(&tmp, sizeof(tmp));
|
|
|
|
tmp.cbSize = sizeof(tmp);
|
|
|
|
ME_GetRunCharFormat(editor, run, &tmp);
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
assert((tmp.dwMask & nAttribs) == nAttribs);
|
|
|
|
/* reset flags that differ */
|
|
|
|
|
|
|
|
if (pFmt->yHeight != tmp.yHeight)
|
|
|
|
pFmt->dwMask &= ~CFM_SIZE;
|
|
|
|
if (pFmt->dwMask & CFM_FACE)
|
|
|
|
{
|
|
|
|
if (!(tmp.dwMask & CFM_FACE))
|
|
|
|
pFmt->dwMask &= ~CFM_FACE;
|
2008-01-04 21:12:20 +01:00
|
|
|
else if (lstrcmpW(pFmt->szFaceName, tmp.szFaceName) ||
|
|
|
|
pFmt->bPitchAndFamily != tmp.bPitchAndFamily)
|
2005-03-05 12:19:14 +01:00
|
|
|
pFmt->dwMask &= ~CFM_FACE;
|
|
|
|
}
|
|
|
|
if (pFmt->yHeight != tmp.yHeight)
|
|
|
|
pFmt->dwMask &= ~CFM_SIZE;
|
2008-01-01 22:03:58 +01:00
|
|
|
if (pFmt->bUnderlineType != tmp.bUnderlineType)
|
|
|
|
pFmt->dwMask &= ~CFM_UNDERLINETYPE;
|
2005-03-05 12:19:14 +01:00
|
|
|
if (pFmt->dwMask & CFM_COLOR)
|
|
|
|
{
|
|
|
|
if (!((pFmt->dwEffects&CFE_AUTOCOLOR) & (tmp.dwEffects&CFE_AUTOCOLOR)))
|
|
|
|
{
|
|
|
|
if (pFmt->crTextColor != tmp.crTextColor)
|
|
|
|
pFmt->dwMask &= ~CFM_COLOR;
|
|
|
|
}
|
|
|
|
}
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
pFmt->dwMask &= ~((pFmt->dwEffects ^ tmp.dwEffects) & nEffects);
|
2008-05-04 06:36:17 +02:00
|
|
|
pFmt->dwEffects = tmp.dwEffects;
|
2005-04-16 12:48:35 +02:00
|
|
|
|
2005-03-05 12:19:14 +01:00
|
|
|
} while(run != run_end);
|
|
|
|
}
|