2 * RichEdit functions dealing with on tables
4 * Copyright 2008 by Dylan Smith
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
22 * The implementation of tables differs greatly between version 3.0
23 * (in riched20.dll) and version 4.1 (in msftedit.dll) of richedit controls.
24 * Currently Wine is not distinguishing between version 3.0 and version 4.1,
25 * so v4.1 is assumed unless v1.0 is being emulated (i.e. riched32.dll is used).
26 * If this lack of distinction causes a bug in a Windows application, then Wine
27 * will need to start making this distinction.
29 * Richedit version 1.0 - 3.0:
30 * Tables are implemented in these versions using tabs at the end of cells,
31 * and tab stops to position the cells. The paragraph format flag PFE_TABLE
32 * will indicate that the paragraph is a table row. Note that in this
33 * implementation there is one paragraph per table row.
35 * Richedit version 4.1:
36 * Tables are implemented such that cells can contain multiple paragraphs,
37 * each with its own paragraph format, and cells may even contain tables
38 * nested within the cell.
40 * There is also a paragraph at the start of each table row that contains
41 * the rows paragraph format (e.g. to change the row alignment to row), and a
42 * paragraph at the end of the table row with the PFE_TABLEROWDELIMITER flag
43 * set. The paragraphs at the start and end of the table row should always be
44 * empty, but should have a length of 2.
46 * Wine implements this using display items (ME_DisplayItem) with a type of
47 * diCell. These cell display items store the cell properties, and are
48 * inserted into the editors linked list before each cell, and at the end of
49 * the last cell. The cell display item for a cell comes before the paragraphs
50 * for the cell, but the last cell display item refers to no cell, so it is
57 WINE_DEFAULT_DEBUG_CHANNEL(richedit_lists
);
59 static ME_DisplayItem
* ME_InsertEndParaFromCursor(ME_TextEditor
*editor
,
61 const WCHAR
*eol_str
, int eol_len
,
64 ME_Style
*pStyle
= ME_GetInsertStyle(editor
, nCursor
);
66 ME_Cursor
* cursor
= &editor
->pCursors
[nCursor
];
68 ME_SplitRunSimple(editor
, cursor
);
70 tp
= ME_SplitParagraph(editor
, cursor
->pRun
, pStyle
, eol_str
, eol_len
, paraFlags
);
71 ME_ReleaseStyle(pStyle
);
73 cursor
->pRun
= ME_FindItemFwd(tp
, diRun
);
77 ME_DisplayItem
* ME_InsertTableRowStartFromCursor(ME_TextEditor
*editor
)
80 WCHAR cr_lf
[] = {'\r', '\n', 0};
81 para
= ME_InsertEndParaFromCursor(editor
, 0, cr_lf
, 2, MEPF_ROWSTART
);
82 return para
->member
.para
.prev_para
;
85 ME_DisplayItem
* ME_InsertTableRowStartAtParagraph(ME_TextEditor
*editor
,
88 ME_DisplayItem
*prev_para
, *end_para
;
89 ME_Cursor savedCursor
= editor
->pCursors
[0];
90 ME_DisplayItem
*startRowPara
;
91 editor
->pCursors
[0].pPara
= para
;
92 editor
->pCursors
[0].pRun
= ME_FindItemFwd(para
, diRun
);
93 editor
->pCursors
[0].nOffset
= 0;
94 editor
->pCursors
[1] = editor
->pCursors
[0];
95 startRowPara
= ME_InsertTableRowStartFromCursor(editor
);
96 savedCursor
.pPara
= ME_GetParagraph(savedCursor
.pRun
);
97 editor
->pCursors
[0] = savedCursor
;
98 editor
->pCursors
[1] = editor
->pCursors
[0];
100 end_para
= editor
->pCursors
[0].pPara
->member
.para
.next_para
;
101 prev_para
= startRowPara
->member
.para
.next_para
;
102 para
= prev_para
->member
.para
.next_para
;
103 while (para
!= end_para
)
105 para
->member
.para
.pCell
= prev_para
->member
.para
.pCell
;
106 para
->member
.para
.nFlags
|= MEPF_CELL
;
107 para
->member
.para
.nFlags
&= ~(MEPF_ROWSTART
|MEPF_ROWEND
);
108 para
->member
.para
.pFmt
->dwMask
|= PFM_TABLE
|PFM_TABLEROWDELIMITER
;
109 para
->member
.para
.pFmt
->wEffects
|= PFE_TABLE
;
110 para
->member
.para
.pFmt
->wEffects
&= ~PFE_TABLEROWDELIMITER
;
112 para
= para
->member
.para
.next_para
;
117 /* Inserts a diCell and starts a new paragraph for the next cell.
119 * Returns the first paragraph of the new cell. */
120 ME_DisplayItem
* ME_InsertTableCellFromCursor(ME_TextEditor
*editor
)
122 ME_DisplayItem
*para
;
124 para
= ME_InsertEndParaFromCursor(editor
, 0, &tab
, 1, MEPF_CELL
);
128 ME_DisplayItem
* ME_InsertTableRowEndFromCursor(ME_TextEditor
*editor
)
130 ME_DisplayItem
*para
;
131 WCHAR cr_lf
[] = {'\r', '\n', 0};
132 para
= ME_InsertEndParaFromCursor(editor
, 0, cr_lf
, 2, MEPF_ROWEND
);
133 return para
->member
.para
.prev_para
;
136 ME_DisplayItem
* ME_GetTableRowEnd(ME_DisplayItem
*para
)
138 ME_DisplayItem
*cell
;
140 if (para
->member
.para
.nFlags
& MEPF_ROWEND
)
142 if (para
->member
.para
.nFlags
& MEPF_ROWSTART
)
143 para
= para
->member
.para
.next_para
;
144 cell
= para
->member
.para
.pCell
;
145 assert(cell
&& cell
->type
== diCell
);
146 while (cell
->member
.cell
.next_cell
)
147 cell
= cell
->member
.cell
.next_cell
;
149 para
= ME_FindItemFwd(cell
, diParagraph
);
150 assert(para
&& para
->member
.para
.nFlags
& MEPF_ROWEND
);
154 ME_DisplayItem
* ME_GetTableRowStart(ME_DisplayItem
*para
)
156 ME_DisplayItem
*cell
;
158 if (para
->member
.para
.nFlags
& MEPF_ROWSTART
)
160 if (para
->member
.para
.nFlags
& MEPF_ROWEND
)
161 para
= para
->member
.para
.prev_para
;
162 cell
= para
->member
.para
.pCell
;
163 assert(cell
&& cell
->type
== diCell
);
164 while (cell
->member
.cell
.prev_cell
)
165 cell
= cell
->member
.cell
.prev_cell
;
167 para
= ME_FindItemBack(cell
, diParagraph
);
168 assert(para
&& para
->member
.para
.nFlags
& MEPF_ROWSTART
);
172 ME_DisplayItem
* ME_GetOuterParagraph(ME_DisplayItem
*para
)
174 if (para
->member
.para
.nFlags
& MEPF_ROWEND
)
175 para
= para
->member
.para
.prev_para
;
176 while (para
->member
.para
.pCell
)
178 para
= ME_GetTableRowStart(para
);
179 if (!para
->member
.para
.pCell
)
181 para
= ME_FindItemBack(para
->member
.para
.pCell
, diParagraph
);
186 /* Make a bunch of assertions to make sure tables haven't been corrupted.
188 * These invariants may not hold true in the middle of streaming in rich text
189 * or during an undo and redo of streaming in rich text. It should be safe to
190 * call this method after an event is processed.
192 void ME_CheckTablesForCorruption(ME_TextEditor
*editor
)
194 if(TRACE_ON(richedit_lists
))
197 ME_DumpDocument(editor
->pBuffer
);
201 ME_DisplayItem
*p
, *pPrev
;
202 pPrev
= editor
->pBuffer
->pFirst
;
204 if (!editor
->bEmulateVersion10
) /* v4.1 */
206 while (p
->type
== diParagraph
)
208 assert(p
->member
.para
.pFmt
->dwMask
& PFM_TABLE
);
209 assert(p
->member
.para
.pFmt
->dwMask
& PFM_TABLEROWDELIMITER
);
210 if (p
->member
.para
.pCell
)
212 assert(p
->member
.para
.nFlags
& MEPF_CELL
);
213 assert(p
->member
.para
.pFmt
->wEffects
& PFE_TABLE
);
215 if (p
->member
.para
.pCell
!= pPrev
->member
.para
.pCell
)
217 /* There must be a diCell in between the paragraphs if pCell changes. */
218 ME_DisplayItem
*pCell
= ME_FindItemBack(p
, diCell
);
220 assert(ME_FindItemBack(p
, diRun
) == ME_FindItemBack(pCell
, diRun
));
222 if (p
->member
.para
.nFlags
& MEPF_ROWEND
)
224 /* ROWEND must come after a cell. */
225 assert(pPrev
->member
.para
.pCell
);
226 assert(p
->member
.para
.pCell
227 == pPrev
->member
.para
.pCell
->member
.cell
.parent_cell
);
228 assert(p
->member
.para
.pFmt
->wEffects
& PFE_TABLEROWDELIMITER
);
230 else if (p
->member
.para
.pCell
)
232 assert(!(p
->member
.para
.pFmt
->wEffects
& PFE_TABLEROWDELIMITER
));
233 assert(pPrev
->member
.para
.pCell
||
234 pPrev
->member
.para
.nFlags
& MEPF_ROWSTART
);
235 if (pPrev
->member
.para
.pCell
&&
236 !(pPrev
->member
.para
.nFlags
& MEPF_ROWSTART
))
238 assert(p
->member
.para
.pCell
->member
.cell
.parent_cell
239 == pPrev
->member
.para
.pCell
->member
.cell
.parent_cell
);
240 if (pPrev
->member
.para
.pCell
!= p
->member
.para
.pCell
)
241 assert(pPrev
->member
.para
.pCell
242 == p
->member
.para
.pCell
->member
.cell
.prev_cell
);
245 else if (!(p
->member
.para
.nFlags
& MEPF_ROWSTART
))
247 assert(!(p
->member
.para
.pFmt
->wEffects
& PFE_TABLEROWDELIMITER
));
248 /* ROWSTART must be followed by a cell. */
249 assert(!(p
->member
.para
.nFlags
& MEPF_CELL
));
250 /* ROWSTART must be followed by a cell. */
251 assert(!(pPrev
->member
.para
.nFlags
& MEPF_ROWSTART
));
254 p
= p
->member
.para
.next_para
;
256 } else { /* v1.0 - 3.0 */
257 while (p
->type
== diParagraph
)
259 assert(!(p
->member
.para
.nFlags
& (MEPF_ROWSTART
|MEPF_ROWEND
|MEPF_CELL
)));
260 assert(p
->member
.para
.pFmt
->dwMask
& PFM_TABLE
);
261 assert(!(p
->member
.para
.pFmt
->wEffects
& PFE_TABLEROWDELIMITER
));
262 assert(!p
->member
.para
.pCell
);
263 p
= p
->member
.para
.next_para
;
267 assert(p
->type
== diTextEnd
);
268 assert(!pPrev
->member
.para
.pCell
);
273 BOOL
ME_IsInTable(ME_DisplayItem
*pItem
)
278 if (pItem
->type
== diRun
)
279 pItem
= ME_GetParagraph(pItem
);
280 if (pItem
->type
!= diParagraph
)
282 pFmt
= pItem
->member
.para
.pFmt
;
283 return pFmt
->dwMask
& PFM_TABLE
&& pFmt
->wEffects
& PFE_TABLE
;
286 /* Table rows should either be deleted completely or not at all. */
287 void ME_ProtectPartialTableDeletion(ME_TextEditor
*editor
, ME_Cursor
*c
, int *nChars
)
289 int nOfs
= ME_GetCursorOfs(c
);
291 ME_DisplayItem
*this_para
= c
->pPara
;
292 ME_DisplayItem
*end_para
;
294 ME_MoveCursorChars(editor
, &c2
, *nChars
);
296 if (c2
.pRun
->member
.run
.nFlags
& MERF_ENDPARA
) {
297 /* End offset might be in the middle of the end paragraph run.
298 * If this is the case, then we need to use the next paragraph as the last
301 int remaining
= nOfs
+ *nChars
- c2
.pRun
->member
.run
.nCharOfs
302 - end_para
->member
.para
.nCharOfs
;
305 assert(remaining
< c2
.pRun
->member
.run
.len
);
306 end_para
= end_para
->member
.para
.next_para
;
309 if (!editor
->bEmulateVersion10
) { /* v4.1 */
310 if (this_para
->member
.para
.pCell
!= end_para
->member
.para
.pCell
||
311 ((this_para
->member
.para
.nFlags
|end_para
->member
.para
.nFlags
)
312 & (MEPF_ROWSTART
|MEPF_ROWEND
)))
314 while (this_para
!= end_para
)
316 ME_DisplayItem
*next_para
= this_para
->member
.para
.next_para
;
317 BOOL bTruancateDeletion
= FALSE
;
318 if (this_para
->member
.para
.nFlags
& MEPF_ROWSTART
) {
319 /* The following while loop assumes that next_para is MEPF_ROWSTART,
320 * so moving back one paragraph let's it be processed as the start
322 next_para
= this_para
;
323 this_para
= this_para
->member
.para
.prev_para
;
324 } else if (next_para
->member
.para
.pCell
!= this_para
->member
.para
.pCell
325 || this_para
->member
.para
.nFlags
& MEPF_ROWEND
)
327 /* Start of the deletion from after the start of the table row. */
328 bTruancateDeletion
= TRUE
;
330 while (!bTruancateDeletion
&&
331 next_para
->member
.para
.nFlags
& MEPF_ROWSTART
)
333 next_para
= ME_GetTableRowEnd(next_para
)->member
.para
.next_para
;
334 if (next_para
->member
.para
.nCharOfs
> nOfs
+ *nChars
)
336 /* End of deletion is not past the end of the table row. */
337 next_para
= this_para
->member
.para
.next_para
;
338 /* Delete the end paragraph preceding the table row if the
339 * preceding table row will be empty. */
340 if (this_para
->member
.para
.nCharOfs
>= nOfs
)
342 next_para
= next_para
->member
.para
.next_para
;
344 bTruancateDeletion
= TRUE
;
346 this_para
= next_para
->member
.para
.prev_para
;
349 if (bTruancateDeletion
)
351 ME_Run
*end_run
= &ME_FindItemBack(next_para
, diRun
)->member
.run
;
352 int nCharsNew
= (next_para
->member
.para
.nCharOfs
- nOfs
354 nCharsNew
= max(nCharsNew
, 0);
355 assert(nCharsNew
<= *nChars
);
359 this_para
= next_para
;
362 } else { /* v1.0 - 3.0 */
363 ME_DisplayItem
*pRun
;
364 int nCharsToBoundary
;
366 if ((this_para
->member
.para
.nCharOfs
!= nOfs
|| this_para
== end_para
) &&
367 this_para
->member
.para
.pFmt
->dwMask
& PFM_TABLE
&&
368 this_para
->member
.para
.pFmt
->wEffects
& PFE_TABLE
)
371 /* Find the next tab or end paragraph to use as a delete boundary */
372 while (!(pRun
->member
.run
.nFlags
& (MERF_TAB
|MERF_ENDPARA
)))
373 pRun
= ME_FindItemFwd(pRun
, diRun
);
374 nCharsToBoundary
= pRun
->member
.run
.nCharOfs
375 - c
->pRun
->member
.run
.nCharOfs
377 *nChars
= min(*nChars
, nCharsToBoundary
);
378 } else if (end_para
->member
.para
.pFmt
->dwMask
& PFM_TABLE
&&
379 end_para
->member
.para
.pFmt
->wEffects
& PFE_TABLE
)
381 /* The deletion starts from before the row, so don't join it with
382 * previous non-empty paragraphs. */
383 ME_DisplayItem
*curPara
;
385 if (nOfs
> this_para
->member
.para
.nCharOfs
) {
386 pRun
= ME_FindItemBack(end_para
, diRun
);
387 curPara
= end_para
->member
.para
.prev_para
;
390 pRun
= ME_FindItemFwd(end_para
, diRun
);
395 nCharsToBoundary
= curPara
->member
.para
.nCharOfs
396 + pRun
->member
.run
.nCharOfs
398 if (nCharsToBoundary
>= 0)
399 *nChars
= min(*nChars
, nCharsToBoundary
);
407 ME_DisplayItem
* ME_AppendTableRow(ME_TextEditor
*editor
,
408 ME_DisplayItem
*table_row
)
410 WCHAR endl
= '\r', tab
= '\t';
416 assert(table_row
->type
== diParagraph
);
417 if (!editor
->bEmulateVersion10
) { /* v4.1 */
418 ME_DisplayItem
*insertedCell
, *para
, *cell
, *prevTableEnd
;
419 cell
= ME_FindItemFwd(ME_GetTableRowStart(table_row
), diCell
);
420 prevTableEnd
= ME_GetTableRowEnd(table_row
);
421 para
= prevTableEnd
->member
.para
.next_para
;
422 run
= ME_FindItemFwd(para
, diRun
);
423 editor
->pCursors
[0].pPara
= para
;
424 editor
->pCursors
[0].pRun
= run
;
425 editor
->pCursors
[0].nOffset
= 0;
426 editor
->pCursors
[1] = editor
->pCursors
[0];
427 para
= ME_InsertTableRowStartFromCursor(editor
);
428 insertedCell
= ME_FindItemFwd(para
, diCell
);
429 /* Copy cell properties */
430 insertedCell
->member
.cell
.nRightBoundary
= cell
->member
.cell
.nRightBoundary
;
431 insertedCell
->member
.cell
.border
= cell
->member
.cell
.border
;
432 while (cell
->member
.cell
.next_cell
) {
433 cell
= cell
->member
.cell
.next_cell
;
434 para
= ME_InsertTableCellFromCursor(editor
);
435 insertedCell
= ME_FindItemBack(para
, diCell
);
436 /* Copy cell properties */
437 insertedCell
->member
.cell
.nRightBoundary
= cell
->member
.cell
.nRightBoundary
;
438 insertedCell
->member
.cell
.border
= cell
->member
.cell
.border
;
440 para
= ME_InsertTableRowEndFromCursor(editor
);
441 *para
->member
.para
.pFmt
= *prevTableEnd
->member
.para
.pFmt
;
442 /* return the table row start for the inserted paragraph */
443 return ME_FindItemFwd(cell
, diParagraph
)->member
.para
.next_para
;
444 } else { /* v1.0 - 3.0 */
445 run
= ME_FindItemBack(table_row
->member
.para
.next_para
, diRun
);
446 pFmt
= table_row
->member
.para
.pFmt
;
447 assert(pFmt
->dwMask
& PFM_TABLE
&& pFmt
->wEffects
& PFE_TABLE
);
448 editor
->pCursors
[0].pPara
= table_row
;
449 editor
->pCursors
[0].pRun
= run
;
450 editor
->pCursors
[0].nOffset
= 0;
451 editor
->pCursors
[1] = editor
->pCursors
[0];
452 ME_InsertTextFromCursor(editor
, 0, &endl
, 1, run
->member
.run
.style
);
453 run
= editor
->pCursors
[0].pRun
;
454 for (i
= 0; i
< pFmt
->cTabCount
; i
++) {
455 ME_InsertTextFromCursor(editor
, 0, &tab
, 1, run
->member
.run
.style
);
457 return table_row
->member
.para
.next_para
;
461 /* Selects the next table cell or appends a new table row if at end of table */
462 static void ME_SelectOrInsertNextCell(ME_TextEditor
*editor
,
465 ME_DisplayItem
*para
= ME_GetParagraph(run
);
468 assert(run
&& run
->type
== diRun
);
469 assert(ME_IsInTable(run
));
470 if (!editor
->bEmulateVersion10
) { /* v4.1 */
471 ME_DisplayItem
*cell
;
472 /* Get the initial cell */
473 if (para
->member
.para
.nFlags
& MEPF_ROWSTART
) {
474 cell
= para
->member
.para
.next_para
->member
.para
.pCell
;
475 } else if (para
->member
.para
.nFlags
& MEPF_ROWEND
) {
476 cell
= para
->member
.para
.prev_para
->member
.para
.pCell
;
478 cell
= para
->member
.para
.pCell
;
481 /* Get the next cell. */
482 if (cell
->member
.cell
.next_cell
&&
483 cell
->member
.cell
.next_cell
->member
.cell
.next_cell
)
485 cell
= cell
->member
.cell
.next_cell
;
487 para
= ME_GetTableRowEnd(ME_FindItemFwd(cell
, diParagraph
));
488 para
= para
->member
.para
.next_para
;
490 if (para
->member
.para
.nFlags
& MEPF_ROWSTART
) {
491 cell
= para
->member
.para
.next_para
->member
.para
.pCell
;
494 para
= para
->member
.para
.prev_para
;
495 para
= ME_AppendTableRow(editor
, ME_GetTableRowStart(para
));
496 /* Put cursor at the start of the new table row */
497 para
= para
->member
.para
.next_para
;
498 editor
->pCursors
[0].pPara
= para
;
499 editor
->pCursors
[0].pRun
= ME_FindItemFwd(para
, diRun
);
500 editor
->pCursors
[0].nOffset
= 0;
501 editor
->pCursors
[1] = editor
->pCursors
[0];
502 ME_WrapMarkedParagraphs(editor
);
507 editor
->pCursors
[1].pRun
= ME_FindItemFwd(cell
, diRun
);
508 editor
->pCursors
[1].pPara
= ME_GetParagraph(editor
->pCursors
[1].pRun
);
509 editor
->pCursors
[1].nOffset
= 0;
510 assert(editor
->pCursors
[0].pRun
);
511 cell
= cell
->member
.cell
.next_cell
;
512 editor
->pCursors
[0].pRun
= ME_FindItemBack(cell
, diRun
);
513 editor
->pCursors
[0].pPara
= ME_GetParagraph(editor
->pCursors
[0].pRun
);
514 editor
->pCursors
[0].nOffset
= 0;
515 assert(editor
->pCursors
[1].pRun
);
516 } else { /* v1.0 - 3.0 */
517 if (run
->member
.run
.nFlags
& MERF_ENDPARA
&&
518 ME_IsInTable(ME_FindItemFwd(run
, diParagraphOrEnd
)))
520 run
= ME_FindItemFwd(run
, diRun
);
523 for (i
= 0; i
< 2; i
++)
525 while (!(run
->member
.run
.nFlags
& MERF_TAB
))
527 run
= ME_FindItemFwd(run
, diRunOrParagraphOrEnd
);
528 if (run
->type
!= diRun
)
531 if (ME_IsInTable(para
))
533 run
= ME_FindItemFwd(para
, diRun
);
535 editor
->pCursors
[0].pPara
= para
;
536 editor
->pCursors
[0].pRun
= run
;
537 editor
->pCursors
[0].nOffset
= 0;
540 /* Insert table row */
541 para
= ME_AppendTableRow(editor
, para
->member
.para
.prev_para
);
542 /* Put cursor at the start of the new table row */
543 editor
->pCursors
[0].pPara
= para
;
544 editor
->pCursors
[0].pRun
= ME_FindItemFwd(para
, diRun
);
545 editor
->pCursors
[0].nOffset
= 0;
546 editor
->pCursors
[1] = editor
->pCursors
[0];
547 ME_WrapMarkedParagraphs(editor
);
553 run
= ME_FindItemFwd(run
, diRun
);
554 editor
->pCursors
[i
].pRun
= run
;
555 editor
->pCursors
[i
].pPara
= ME_GetParagraph(run
);
556 editor
->pCursors
[i
].nOffset
= 0;
562 void ME_TabPressedInTable(ME_TextEditor
*editor
, BOOL bSelectedRow
)
564 /* FIXME: Shift tab should move to the previous cell. */
565 ME_Cursor fromCursor
, toCursor
;
566 ME_InvalidateSelection(editor
);
569 from
= ME_GetCursorOfs(&editor
->pCursors
[0]);
570 to
= ME_GetCursorOfs(&editor
->pCursors
[1]);
573 fromCursor
= editor
->pCursors
[0];
574 toCursor
= editor
->pCursors
[1];
576 fromCursor
= editor
->pCursors
[1];
577 toCursor
= editor
->pCursors
[0];
580 if (!editor
->bEmulateVersion10
) /* v4.1 */
582 if (!ME_IsInTable(toCursor
.pRun
))
584 editor
->pCursors
[0] = toCursor
;
585 editor
->pCursors
[1] = toCursor
;
587 ME_SelectOrInsertNextCell(editor
, toCursor
.pRun
);
589 } else { /* v1.0 - 3.0 */
590 if (!ME_IsInTable(fromCursor
.pRun
)) {
591 editor
->pCursors
[0] = fromCursor
;
592 editor
->pCursors
[1] = fromCursor
;
593 /* FIXME: For some reason the caret is shown at the start of the
594 * previous paragraph in v1.0 to v3.0, and bCaretAtEnd only works
595 * within the paragraph for wrapped lines. */
596 if (ME_FindItemBack(fromCursor
.pRun
, diRun
))
597 editor
->bCaretAtEnd
= TRUE
;
598 } else if ((bSelectedRow
|| !ME_IsInTable(toCursor
.pRun
))) {
599 ME_SelectOrInsertNextCell(editor
, fromCursor
.pRun
);
601 if (ME_IsSelection(editor
) && !toCursor
.nOffset
)
604 run
= ME_FindItemBack(toCursor
.pRun
, diRunOrParagraphOrEnd
);
605 if (run
->type
== diRun
&& run
->member
.run
.nFlags
& MERF_TAB
)
606 ME_SelectOrInsertNextCell(editor
, run
);
608 ME_SelectOrInsertNextCell(editor
, toCursor
.pRun
);
610 ME_SelectOrInsertNextCell(editor
, toCursor
.pRun
);
614 ME_InvalidateSelection(editor
);
616 ITextHost_TxShowCaret(editor
->texthost
, FALSE
);
617 ME_ShowCaret(editor
);
618 ME_SendSelChange(editor
);
621 /* Make sure the cursor is not in the hidden table row start paragraph
622 * without a selection. */
623 void ME_MoveCursorFromTableRowStartParagraph(ME_TextEditor
*editor
)
625 ME_DisplayItem
*para
= editor
->pCursors
[0].pPara
;
626 if (para
== editor
->pCursors
[1].pPara
&&
627 para
->member
.para
.nFlags
& MEPF_ROWSTART
) {
628 /* The cursors should not be at the hidden start row paragraph without
629 * a selection, so the cursor is moved into the first cell. */
630 para
= para
->member
.para
.next_para
;
631 editor
->pCursors
[0].pPara
= para
;
632 editor
->pCursors
[0].pRun
= ME_FindItemFwd(para
, diRun
);
633 editor
->pCursors
[0].nOffset
= 0;
634 editor
->pCursors
[1] = editor
->pCursors
[0];
638 struct RTFTable
*ME_MakeTableDef(ME_TextEditor
*editor
)
640 RTFTable
*tableDef
= ALLOC_OBJ(RTFTable
);
641 ZeroMemory(tableDef
, sizeof(RTFTable
));
642 if (!editor
->bEmulateVersion10
) /* v4.1 */
647 void ME_InitTableDef(ME_TextEditor
*editor
, struct RTFTable
*tableDef
)
649 ZeroMemory(tableDef
->cells
, sizeof(tableDef
->cells
));
650 ZeroMemory(tableDef
->border
, sizeof(tableDef
->border
));
651 tableDef
->numCellsDefined
= 0;
652 tableDef
->leftEdge
= 0;
653 if (!editor
->bEmulateVersion10
) /* v4.1 */
655 else /* v1.0 - 3.0 */