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
47 #include "wine/debug.h"
48 #include "wine/heap.h"
49 #include "wine/list.h"
50 #include "wine/rbtree.h"
52 #ifdef __ASM_USE_THISCALL_WRAPPER
53 extern const struct ITextHostVtbl itextHostStdcallVtbl DECLSPEC_HIDDEN
;
56 typedef struct tagME_String
60 void (*free
)(struct tagME_String
*);
63 typedef struct tagME_FontCacheItem
71 #define HFONT_CACHE_SIZE 10
73 typedef struct tagME_Style
77 ME_FontCacheItem
*font_cache
; /* cached font for the style */
78 TEXTMETRICW tm
; /* cached font metrics for the style */
79 int nRefs
; /* reference count */
80 SCRIPT_CACHE script_cache
;
86 diTextStart
, /* start of the text buffer */
87 diParagraph
, /* paragraph start */
88 diCell
, /* cell start */
89 diRun
, /* run (sequence of chars with the same character format) */
90 diStartRow
, /* start of the row (line of text on the screen) */
91 diTextEnd
, /* end of the text buffer */
93 /********************* these below are meant for finding only *********************/
94 diStartRowOrParagraph
, /* 7 */
95 diStartRowOrParagraphOrEnd
,
99 diRunOrParagraphOrEnd
, /* 12 */
102 #define SELECTIONBAR_WIDTH 8
104 /******************************** run flags *************************/
105 #define MERF_STYLEFLAGS 0x0FFF
106 /* run contains non-text content, which has its own rules for wrapping, sizing etc */
107 #define MERF_GRAPHICS 0x001
108 /* run is a tab (or, in future, any kind of content whose size is dependent on run position) */
109 #define MERF_TAB 0x002
110 /* run is a cell boundary */
111 #define MERF_ENDCELL 0x004 /* v4.1 */
113 #define MERF_NONTEXT (MERF_GRAPHICS | MERF_TAB | MERF_ENDCELL)
115 /* run is splittable (contains white spaces in the middle or end) */
116 #define MERF_SPLITTABLE 0x001000
117 /* run starts with whitespaces */
118 #define MERF_STARTWHITE 0x002000
119 /* run ends with whitespaces */
120 #define MERF_ENDWHITE 0x004000
121 /* run is completely made of whitespaces */
122 #define MERF_WHITESPACE 0x008000
123 /* the "end of paragraph" run, contains 1 character */
124 #define MERF_ENDPARA 0x100000
125 /* forcing the "end of row" run, contains 1 character */
126 #define MERF_ENDROW 0x200000
128 #define MERF_HIDDEN 0x400000
129 /* start of a table row has an empty paragraph that should be skipped over. */
130 #define MERF_TABLESTART 0x800000 /* v4.1 */
132 /* runs with any of these flags set cannot be joined */
133 #define MERF_NOJOIN (MERF_GRAPHICS|MERF_TAB|MERF_ENDPARA|MERF_ENDROW)
134 /* runs that don't contain real text */
135 #define MERF_NOTEXT (MERF_GRAPHICS|MERF_TAB|MERF_ENDPARA|MERF_ENDROW)
137 /* those flags are kept when the row is split */
138 #define MERF_SPLITMASK (~(0))
140 /******************************** para flags *************************/
142 /* this paragraph was already wrapped and hasn't changed, every change resets that flag */
143 #define MEPF_REWRAP 0x01
145 #define MEPF_CELL 0x04 /* The paragraph is nested in a cell */
146 #define MEPF_ROWSTART 0x08 /* Hidden empty paragraph at the start of the row */
147 #define MEPF_ROWEND 0x10 /* Visible empty paragraph at the end of the row */
148 #define MEPF_COMPLEX 0x20 /* Use uniscribe */
150 /******************************** structures *************************/
152 struct tagME_DisplayItem
;
160 typedef struct tagME_Run
163 struct tagME_Paragraph
*para
; /* ptr to the run's paragraph */
164 int nCharOfs
; /* relative to para's offset */
165 int len
; /* length of run's text */
166 int nWidth
; /* width of full run, width of leading&trailing ws */
168 int nAscent
, nDescent
; /* pixels above/below baseline */
169 POINT pt
; /* relative to para's position */
170 struct re_object
*reobj
; /* FIXME: should be a union with strText (at least) */
172 SCRIPT_ANALYSIS script_analysis
;
173 int num_glyphs
, max_glyphs
;
175 SCRIPT_VISATTR
*vis_attrs
;
182 typedef struct tagME_Border
188 typedef struct tagME_BorderRect
204 typedef struct tagME_Paragraph
209 struct tagME_DisplayItem
*pCell
; /* v4.1 */
210 ME_BorderRect border
;
217 struct para_num para_num
;
218 ME_Run
*eop_run
; /* ptr to the end-of-para run */
219 struct tagME_DisplayItem
*prev_para
, *next_para
;
220 struct wine_rb_entry marked_entry
;
223 typedef struct tagME_Cell
/* v4.1 */
225 int nNestingLevel
; /* 0 for normal cells, and greater for nested cells */
227 ME_BorderRect border
;
230 int yTextOffset
; /* The text offset is caused by the largest top border. */
231 struct tagME_DisplayItem
*prev_cell
, *next_cell
, *parent_cell
;
234 typedef struct tagME_Row
244 /* the display item list layout is like this:
245 * - the document consists of paragraphs
246 * - each paragraph contains at least one run, the last run in the paragraph
247 * is an end-of-paragraph run
248 * - each formatted paragraph contains at least one row, which corresponds
249 * to a screen line (that's why there are no rows in an unformatted
251 * - the paragraphs contain "shortcut" pointers to the previous and the next
252 * paragraph, that makes iteration over paragraphs faster
253 * - the list starts with diTextStart and ends with diTextEnd
256 typedef struct tagME_DisplayItem
259 struct tagME_DisplayItem
*prev
, *next
;
268 typedef struct tagME_TextBuffer
270 ME_DisplayItem
*pFirst
, *pLast
;
271 ME_Style
*pCharStyle
;
272 ME_Style
*pDefaultStyle
;
275 typedef struct tagME_Cursor
277 ME_DisplayItem
*pPara
;
278 ME_DisplayItem
*pRun
;
297 undo_end_transaction
, /* marks the end of a group of changes for undo */
298 undo_potential_end_transaction
/* allows grouping typed chars for undo */
301 struct insert_run_item
309 struct delete_run_item
314 struct join_paras_item
319 struct split_para_item
323 ME_BorderRect border
;
326 ME_BorderRect cell_border
;
327 int cell_right_boundary
;
330 struct set_para_fmt_item
334 ME_BorderRect border
;
337 struct set_char_fmt_item
349 struct insert_run_item insert_run
;
350 struct delete_run_item delete_run
;
351 struct join_paras_item join_paras
;
352 struct split_para_item split_para
;
353 struct set_para_fmt_item set_para_fmt
;
354 struct set_char_fmt_item set_char_fmt
;
366 typedef struct tagME_FontTableItem
{
372 #define STREAMIN_BUFFER_SIZE 4096 /* M$ compatibility */
374 struct tagME_InStream
{
375 EDITSTREAM
*editstream
;
378 char buffer
[STREAMIN_BUFFER_SIZE
];
380 typedef struct tagME_InStream ME_InStream
;
382 typedef struct tagME_TextEditor
384 HWND hWnd
, hwndParent
;
387 BOOL bEmulateVersion10
;
388 ME_TextBuffer
*pBuffer
;
394 int nTotalLength
, nLastTotalLength
;
395 int nTotalWidth
, nLastTotalWidth
;
396 int nAvailWidth
; /* 0 = wrap to client area, else wrap width in twips */
399 COLORREF rgbBackColor
;
400 HBRUSH hbrBackground
;
403 struct list undo_stack
;
404 struct list redo_stack
;
407 ME_UndoMode nUndoMode
;
409 int nLastSelStart
, nLastSelEnd
;
410 ME_DisplayItem
*pLastSelStartPara
, *pLastSelEndPara
;
411 ME_FontCacheItem pFontCache
[HFONT_CACHE_SIZE
];
412 int nZoomNumerator
, nZoomDenominator
;
415 BOOL bDefaultFormatRect
;
418 EDITWORDBREAKPROCW pfnWordBreak
;
419 LPRICHEDITOLECALLBACK lpOleCallback
;
420 /*TEXTMODE variable; contains only one of each of the following options:
421 *TM_RICHTEXT or TM_PLAINTEXT
422 *TM_SINGLELEVELUNDO or TM_MULTILEVELUNDO
423 *TM_SINGLECODEPAGE or TM_MULTICODEPAGE*/
426 BOOL AutoURLDetect_bEnable
;
429 BOOL bDialogMode
; /* Indicates that we are inside a dialog window */
432 DWORD selofs
; /* The size of the selection bar on the left side of control */
433 ME_SelectionType nSelectionType
;
435 /* Track previous notified selection */
436 CHARRANGE notified_cr
;
438 /* Cache previously set scrollbar info */
439 SCROLLINFO vert_si
, horz_si
;
445 struct list style_list
;
446 struct list reobj_list
;
447 struct wine_rb_tree marked_paras
;
450 typedef struct tagME_Context
457 ME_Style
*current_style
;
460 /* those are valid inside ME_WrapTextParagraph and related */
461 ME_TextEditor
*editor
;