2 * RichEdit - structures and constant
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
25 #define _WIN32_IE 0x0400
35 #define NONAMELESSUNION
36 #define NONAMELESSSTRUCT
52 #include "wine/debug.h"
53 #include "wine/list.h"
56 extern const struct ITextHostVtbl itextHostStdcallVtbl
;
59 typedef struct tagME_String
65 typedef struct tagME_Style
69 HFONT hFont
; /* cached font for the style */
70 TEXTMETRICW tm
; /* cached font metrics for the style */
71 int nRefs
; /* reference count */
72 SCRIPT_CACHE script_cache
;
77 diTextStart
, /* start of the text buffer */
78 diParagraph
, /* paragraph start */
79 diCell
, /* cell start */
80 diRun
, /* run (sequence of chars with the same character format) */
81 diStartRow
, /* start of the row (line of text on the screen) */
82 diTextEnd
, /* end of the text buffer */
84 /********************* these below are meant for finding only *********************/
85 diStartRowOrParagraph
, /* 7 */
86 diStartRowOrParagraphOrEnd
,
90 diRunOrParagraphOrEnd
, /* 12 */
93 #define SELECTIONBAR_WIDTH 8
95 /******************************** run flags *************************/
96 #define MERF_STYLEFLAGS 0x0FFF
97 /* run contains non-text content, which has its own rules for wrapping, sizing etc */
98 #define MERF_GRAPHICS 0x001
99 /* run is a tab (or, in future, any kind of content whose size is dependent on run position) */
100 #define MERF_TAB 0x002
101 /* run is a cell boundary */
102 #define MERF_ENDCELL 0x004 /* v4.1 */
104 #define MERF_NONTEXT (MERF_GRAPHICS | MERF_TAB | MERF_ENDCELL)
106 /* run is splittable (contains white spaces in the middle or end) */
107 #define MERF_SPLITTABLE 0x001000
108 /* run starts with whitespaces */
109 #define MERF_STARTWHITE 0x002000
110 /* run ends with whitespaces */
111 #define MERF_ENDWHITE 0x004000
112 /* run is completely made of whitespaces */
113 #define MERF_WHITESPACE 0x008000
114 /* the "end of paragraph" run, contains 1 character */
115 #define MERF_ENDPARA 0x100000
116 /* forcing the "end of row" run, contains 1 character */
117 #define MERF_ENDROW 0x200000
119 #define MERF_HIDDEN 0x400000
120 /* start of a table row has an empty paragraph that should be skipped over. */
121 #define MERF_TABLESTART 0x800000 /* v4.1 */
123 /* runs with any of these flags set cannot be joined */
124 #define MERF_NOJOIN (MERF_GRAPHICS|MERF_TAB|MERF_ENDPARA|MERF_ENDROW)
125 /* runs that don't contain real text */
126 #define MERF_NOTEXT (MERF_GRAPHICS|MERF_TAB|MERF_ENDPARA|MERF_ENDROW)
128 /* those flags are kept when the row is split */
129 #define MERF_SPLITMASK (~(0))
131 /******************************** para flags *************************/
133 /* this paragraph was already wrapped and hasn't changed, every change resets that flag */
134 #define MEPF_REWRAP 0x01
136 #define MEPF_CELL 0x04 /* The paragraph is nested in a cell */
137 #define MEPF_ROWSTART 0x08 /* Hidden empty paragraph at the start of the row */
138 #define MEPF_ROWEND 0x10 /* Visible empty paragraph at the end of the row */
139 #define MEPF_COMPLEX 0x20 /* Use uniscribe */
141 /******************************** structures *************************/
143 struct tagME_DisplayItem
;
145 typedef struct tagME_Run
148 struct tagME_Paragraph
*para
; /* ptr to the run's paragraph */
149 int nCharOfs
; /* relative to para's offset */
150 int len
; /* length of run's text */
151 int nWidth
; /* width of full run, width of leading&trailing ws */
153 int nAscent
, nDescent
; /* pixels above/below baseline */
154 POINT pt
; /* relative to para's position */
155 REOBJECT
*ole_obj
; /* FIXME: should be a union with strText (at least) */
157 SCRIPT_ANALYSIS script_analysis
;
158 int num_glyphs
, max_glyphs
;
160 SCRIPT_VISATTR
*vis_attrs
;
167 typedef struct tagME_Border
173 typedef struct tagME_BorderRect
181 typedef struct tagME_Paragraph
186 struct tagME_DisplayItem
*pCell
; /* v4.1 */
187 ME_BorderRect border
;
194 struct tagME_DisplayItem
*prev_para
, *next_para
;
197 typedef struct tagME_Cell
/* v4.1 */
199 int nNestingLevel
; /* 0 for normal cells, and greater for nested cells */
201 ME_BorderRect border
;
204 int yTextOffset
; /* The text offset is caused by the largest top border. */
205 struct tagME_DisplayItem
*prev_cell
, *next_cell
, *parent_cell
;
208 typedef struct tagME_Row
218 /* the display item list layout is like this:
219 * - the document consists of paragraphs
220 * - each paragraph contains at least one run, the last run in the paragraph
221 * is an end-of-paragraph run
222 * - each formatted paragraph contains at least one row, which corresponds
223 * to a screen line (that's why there are no rows in an unformatted
225 * - the paragraphs contain "shortcut" pointers to the previous and the next
226 * paragraph, that makes iteration over paragraphs faster
227 * - the list starts with diTextStart and ends with diTextEnd
230 typedef struct tagME_DisplayItem
233 struct tagME_DisplayItem
*prev
, *next
;
242 typedef struct tagME_TextBuffer
244 ME_DisplayItem
*pFirst
, *pLast
;
245 ME_Style
*pCharStyle
;
246 ME_Style
*pDefaultStyle
;
249 typedef struct tagME_Cursor
251 ME_DisplayItem
*pPara
;
252 ME_DisplayItem
*pRun
;
271 undo_end_transaction
, /* marks the end of a group of changes for undo */
272 undo_potential_end_transaction
/* allows grouping typed chars for undo */
275 struct insert_run_item
283 struct delete_run_item
288 struct join_paras_item
293 struct split_para_item
297 ME_BorderRect border
;
300 ME_BorderRect cell_border
;
301 int cell_right_boundary
;
304 struct set_para_fmt_item
308 ME_BorderRect border
;
311 struct set_char_fmt_item
323 struct insert_run_item insert_run
;
324 struct delete_run_item delete_run
;
325 struct join_paras_item join_paras
;
326 struct split_para_item split_para
;
327 struct set_para_fmt_item set_para_fmt
;
328 struct set_char_fmt_item set_char_fmt
;
340 typedef struct tagME_FontTableItem
{
346 #define STREAMIN_BUFFER_SIZE 4096 /* M$ compatibility */
348 struct tagME_InStream
{
349 EDITSTREAM
*editstream
;
352 char buffer
[STREAMIN_BUFFER_SIZE
];
354 typedef struct tagME_InStream ME_InStream
;
357 #define STREAMOUT_BUFFER_SIZE 4096
358 #define STREAMOUT_FONTTBL_SIZE 8192
359 #define STREAMOUT_COLORTBL_SIZE 1024
361 typedef struct tagME_OutStream
{
363 char buffer
[STREAMOUT_BUFFER_SIZE
];
367 ME_FontTableItem fonttbl
[STREAMOUT_FONTTBL_SIZE
];
369 COLORREF colortbl
[STREAMOUT_COLORTBL_SIZE
];
371 UINT nDefaultCodePage
;
372 /* nNestingLevel = 0 means we aren't in a cell, 1 means we are in a cell,
373 * an greater numbers mean we are in a cell nested within a cell. */
377 typedef struct tagME_FontCacheItem
385 #define HFONT_CACHE_SIZE 10
387 typedef struct tagME_TextEditor
389 HWND hWnd
, hwndParent
;
391 BOOL bEmulateVersion10
;
392 ME_TextBuffer
*pBuffer
;
398 int nTotalLength
, nLastTotalLength
;
399 int nTotalWidth
, nLastTotalWidth
;
400 int nAvailWidth
; /* 0 = wrap to client area, else wrap width in twips */
402 COLORREF rgbBackColor
;
403 HBRUSH hbrBackground
;
407 struct list undo_stack
;
408 struct list redo_stack
;
411 ME_UndoMode nUndoMode
;
413 int nLastSelStart
, nLastSelEnd
;
414 ME_DisplayItem
*pLastSelStartPara
, *pLastSelEndPara
;
415 ME_FontCacheItem pFontCache
[HFONT_CACHE_SIZE
];
416 int nZoomNumerator
, nZoomDenominator
;
419 BOOL bDefaultFormatRect
;
422 EDITWORDBREAKPROCW pfnWordBreak
;
423 LPRICHEDITOLECALLBACK lpOleCallback
;
424 /*TEXTMODE variable; contains only one of each of the following options:
425 *TM_RICHTEXT or TM_PLAINTEXT
426 *TM_SINGLELEVELUNDO or TM_MULTILEVELUNDO
427 *TM_SINGLECODEPAGE or TM_MULTICODEPAGE*/
430 BOOL AutoURLDetect_bEnable
;
433 BOOL bDialogMode
; /* Indicates that we are inside a dialog window */
436 DWORD selofs
; /* The size of the selection bar on the left side of control */
437 ME_SelectionType nSelectionType
;
439 /* Track previous notified selection */
440 CHARRANGE notified_cr
;
442 /* Cache previously set scrollbar info */
443 SCROLLINFO vert_si
, horz_si
;
448 typedef struct tagME_Context
456 /* those are valid inside ME_WrapTextParagraph and related */
457 ME_TextEditor
*editor
;
460 typedef struct tagME_WrapContext
464 int nLeftMargin
, nRightMargin
, nFirstMargin
;
468 BOOL bOverflown
, bWordWrap
;
469 ME_DisplayItem
*pPara
;
470 ME_DisplayItem
*pRowStart
;
472 ME_DisplayItem
*pLastSplittableRun
;