2 * RichEdit - Basic operations on double linked lists.
4 * Copyright 2004 by Krzysztof Foltman
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * 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
24 WINE_DEFAULT_DEBUG_CHANNEL(richedit_lists);
26 void ME_InsertBefore(ME_DisplayItem *diWhere, ME_DisplayItem *diWhat)
28 diWhat->next = diWhere;
29 diWhat->prev = diWhere->prev;
31 diWhere->prev->next = diWhat;
32 diWhat->next->prev = diWhat;
35 void ME_Remove(ME_DisplayItem *diWhere)
37 ME_DisplayItem *diNext = diWhere->next;
38 ME_DisplayItem *diPrev = diWhere->prev;
41 diPrev->next = diNext;
42 diNext->prev = diPrev;
45 ME_DisplayItem *ME_FindItemBack(ME_DisplayItem *di, ME_DIType nTypeOrClass)
51 if (ME_DITypesEqual(di->type, nTypeOrClass))
58 ME_DisplayItem *ME_FindItemBackOrHere(ME_DisplayItem *di, ME_DIType nTypeOrClass)
61 if (ME_DITypesEqual(di->type, nTypeOrClass))
68 ME_DisplayItem *ME_FindItemFwd(ME_DisplayItem *di, ME_DIType nTypeOrClass)
73 if (ME_DITypesEqual(di->type, nTypeOrClass))
80 ME_DisplayItem *ME_FindItemFwdOrHere(ME_DisplayItem *di, ME_DIType nTypeOrClass)
83 if (ME_DITypesEqual(di->type, nTypeOrClass))
90 BOOL ME_DITypesEqual(ME_DIType type, ME_DIType nTypeOrClass)
92 if (type==nTypeOrClass)
94 if (nTypeOrClass==diRunOrParagraph && (type==diRun || type==diParagraph))
96 if (nTypeOrClass==diRunOrStartRow && (type==diRun || type==diStartRow))
98 if (nTypeOrClass==diParagraphOrEnd && (type==diTextEnd || type==diParagraph))
100 if (nTypeOrClass==diStartRowOrParagraph && (type==diStartRow || type==diParagraph))
102 if (nTypeOrClass==diStartRowOrParagraphOrEnd
103 && (type==diStartRow || type==diParagraph || type==diTextEnd))
105 if (nTypeOrClass==diRunOrParagraphOrEnd
106 && (type==diRun || type==diParagraph || type==diTextEnd))
111 void ME_DestroyDisplayItem(ME_DisplayItem *item) {
112 /* TRACE("type=%s\n", ME_GetDITypeName(item->type)); */
113 if (item->type==diParagraph || item->type == diUndoSetParagraphFormat) {
114 FREE_OBJ(item->member.para.pFmt);
115 ME_DestroyTableCellList(item);
117 if (item->type==diRun || item->type == diUndoInsertRun) {
118 if (item->member.run.ole_obj) ME_DeleteReObject(item->member.run.ole_obj);
119 ME_ReleaseStyle(item->member.run.style);
120 ME_DestroyString(item->member.run.strText);
122 if (item->type==diUndoSetCharFormat) {
123 ME_ReleaseStyle(item->member.ustyle);
125 if (item->type==diUndoSplitParagraph)
126 FREE_OBJ(item->member.para.pFmt);
131 ME_DestroyTableCellList(ME_DisplayItem *item)
133 if (item->member.para.pCells)
135 ME_TableCell *pCell = item->member.para.pCells;
143 item->member.para.pCells = NULL;
147 ME_DisplayItem *ME_MakeDI(ME_DIType type) {
148 ME_DisplayItem *item = ALLOC_OBJ(ME_DisplayItem);
149 ZeroMemory(item, sizeof(ME_DisplayItem));
151 item->prev = item->next = NULL;
152 if (type == diParagraph || type == diUndoSplitParagraph) {
153 item->member.para.pFmt = ALLOC_OBJ(PARAFORMAT2);
154 ME_SetDefaultParaFormat(item->member.para.pFmt);
155 item->member.para.nFlags = MEPF_REWRAP;
161 const char *ME_GetDITypeName(ME_DIType type)
165 case diParagraph: return "diParagraph";
166 case diRun: return "diRun";
167 case diTextStart: return "diTextStart";
168 case diTextEnd: return "diTextEnd";
169 case diStartRow: return "diStartRow";
170 case diUndoEndTransaction: return "diUndoEndTransaction";
171 case diUndoPotentialEndTransaction: return "diUndoPotentialEndTransaction";
172 case diUndoSetParagraphFormat: return "diUndoSetParagraphFormat";
173 case diUndoSetCharFormat: return "diUndoSetCharFormat";
174 case diUndoInsertRun: return "diUndoInsertRun";
175 case diUndoDeleteRun: return "diUndoDeleteRun";
176 case diUndoJoinParagraphs: return "diJoinParagraphs";
177 case diUndoSplitParagraph: return "diSplitParagraph";
182 void ME_DumpDocument(ME_TextBuffer *buffer)
184 /* FIXME this is useless, */
185 ME_DisplayItem *pItem = buffer->pFirst;
186 TRACE("DOCUMENT DUMP START\n");
194 TRACE("Paragraph(ofs=%d)\n", pItem->member.para.nCharOfs);
197 TRACE(" - StartRow\n");
200 TRACE(" - Run(\"%s\", %d)\n", debugstr_w(pItem->member.run.strText->szData),
201 pItem->member.run.nCharOfs);
202 if (pItem->member.run.nFlags & MERF_ENDPARA)
203 TRACE(" - Paragraph end: %d CR, %d LF\n", pItem->member.run.nCR, pItem->member.run.nLF);
206 TRACE("End(ofs=%d)\n", pItem->member.para.nCharOfs);
213 TRACE("DOCUMENT DUMP END\n");