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
50 #include "wine/debug.h"
51 #include "wine/heap.h"
52 #include "wine/list.h"
54 #if defined(__i386__) && !defined(__MINGW32__)
55 extern const struct ITextHostVtbl itextHostStdcallVtbl DECLSPEC_HIDDEN
;
58 typedef struct tagME_String
62 void (*free
)(struct tagME_String
*);
65 typedef struct tagME_FontCacheItem
73 #define HFONT_CACHE_SIZE 10
75 typedef struct tagME_Style
79 ME_FontCacheItem
*font_cache
; /* cached font for the style */
80 TEXTMETRICW tm
; /* cached font metrics for the style */
81 int nRefs
; /* reference count */
82 SCRIPT_CACHE script_cache
;
88 diTextStart
, /* start of the text buffer */
89 diParagraph
, /* paragraph start */
90 diCell
, /* cell start */
91 diRun
, /* run (sequence of chars with the same character format) */
92 diStartRow
, /* start of the row (line of text on the screen) */
93 diTextEnd
, /* end of the text buffer */
95 /********************* these below are meant for finding only *********************/
96 diStartRowOrParagraph
, /* 7 */
97 diStartRowOrParagraphOrEnd
,
101 diRunOrParagraphOrEnd
, /* 12 */
104 #define SELECTIONBAR_WIDTH 8
106 /******************************** run flags *************************/
107 #define MERF_STYLEFLAGS 0x0FFF
108 /* run contains non-text content, which has its own rules for wrapping, sizing etc */
109 #define MERF_GRAPHICS 0x001
110 /* run is a tab (or, in future, any kind of content whose size is dependent on run position) */
111 #define MERF_TAB 0x002
112 /* run is a cell boundary */
113 #define MERF_ENDCELL 0x004 /* v4.1 */
115 #define MERF_NONTEXT (MERF_GRAPHICS | MERF_TAB | MERF_ENDCELL)
117 /* run is splittable (contains white spaces in the middle or end) */
118 #define MERF_SPLITTABLE 0x001000
119 /* run starts with whitespaces */
120 #define MERF_STARTWHITE 0x002000
121 /* run ends with whitespaces */
122 #define MERF_ENDWHITE 0x004000
123 /* run is completely made of whitespaces */
124 #define MERF_WHITESPACE 0x008000
125 /* the "end of paragraph" run, contains 1 character */
126 #define MERF_ENDPARA 0x100000
127 /* forcing the "end of row" run, contains 1 character */
128 #define MERF_ENDROW 0x200000
130 #define MERF_HIDDEN 0x400000
131 /* start of a table row has an empty paragraph that should be skipped over. */
132 #define MERF_TABLESTART 0x800000 /* v4.1 */
134 /* runs with any of these flags set cannot be joined */
135 #define MERF_NOJOIN (MERF_GRAPHICS|MERF_TAB|MERF_ENDPARA|MERF_ENDROW)
136 /* runs that don't contain real text */
137 #define MERF_NOTEXT (MERF_GRAPHICS|MERF_TAB|MERF_ENDPARA|MERF_ENDROW)
139 /* those flags are kept when the row is split */
140 #define MERF_SPLITMASK (~(0))
142 /******************************** para flags *************************/
144 /* this paragraph was already wrapped and hasn't changed, every change resets that flag */
145 #define MEPF_REWRAP 0x01
147 #define MEPF_CELL 0x04 /* The paragraph is nested in a cell */
148 #define MEPF_ROWSTART 0x08 /* Hidden empty paragraph at the start of the row */
149 #define MEPF_ROWEND 0x10 /* Visible empty paragraph at the end of the row */
150 #define MEPF_COMPLEX 0x20 /* Use uniscribe */
152 /******************************** structures *************************/
154 struct tagME_DisplayItem
;
162 typedef struct tagME_Run
165 struct tagME_Paragraph
*para
; /* ptr to the run's paragraph */
166 int nCharOfs
; /* relative to para's offset */
167 int len
; /* length of run's text */
168 int nWidth
; /* width of full run, width of leading&trailing ws */
170 int nAscent
, nDescent
; /* pixels above/below baseline */
171 POINT pt
; /* relative to para's position */
172 struct re_object
*reobj
; /* FIXME: should be a union with strText (at least) */
174 SCRIPT_ANALYSIS script_analysis
;
175 int num_glyphs
, max_glyphs
;
177 SCRIPT_VISATTR
*vis_attrs
;
184 typedef struct tagME_Border
190 typedef struct tagME_BorderRect
206 typedef struct tagME_Paragraph
211 struct tagME_DisplayItem
*pCell
; /* v4.1 */
212 ME_BorderRect border
;
219 struct para_num para_num
;
220 ME_Run
*eop_run
; /* ptr to the end-of-para run */
221 struct tagME_DisplayItem
*prev_para
, *next_para
;
222 struct tagME_DisplayItem
*prev_marked
, *next_marked
;
225 typedef struct tagME_Cell
/* v4.1 */
227 int nNestingLevel
; /* 0 for normal cells, and greater for nested cells */
229 ME_BorderRect border
;
232 int yTextOffset
; /* The text offset is caused by the largest top border. */
233 struct tagME_DisplayItem
*prev_cell
, *next_cell
, *parent_cell
;
236 typedef struct tagME_Row
246 /* the display item list layout is like this:
247 * - the document consists of paragraphs
248 * - each paragraph contains at least one run, the last run in the paragraph
249 * is an end-of-paragraph run
250 * - each formatted paragraph contains at least one row, which corresponds
251 * to a screen line (that's why there are no rows in an unformatted
253 * - the paragraphs contain "shortcut" pointers to the previous and the next
254 * paragraph, that makes iteration over paragraphs faster
255 * - the list starts with diTextStart and ends with diTextEnd
258 typedef struct tagME_DisplayItem
261 struct tagME_DisplayItem
*prev
, *next
;
270 typedef struct tagME_TextBuffer
272 ME_DisplayItem
*pFirst
, *pLast
;
273 ME_Style
*pCharStyle
;
274 ME_Style
*pDefaultStyle
;
277 typedef struct tagME_Cursor
279 ME_DisplayItem
*pPara
;
280 ME_DisplayItem
*pRun
;
299 undo_end_transaction
, /* marks the end of a group of changes for undo */
300 undo_potential_end_transaction
/* allows grouping typed chars for undo */
303 struct insert_run_item
311 struct delete_run_item
316 struct join_paras_item
321 struct split_para_item
325 ME_BorderRect border
;
328 ME_BorderRect cell_border
;
329 int cell_right_boundary
;
332 struct set_para_fmt_item
336 ME_BorderRect border
;
339 struct set_char_fmt_item
351 struct insert_run_item insert_run
;
352 struct delete_run_item delete_run
;
353 struct join_paras_item join_paras
;
354 struct split_para_item split_para
;
355 struct set_para_fmt_item set_para_fmt
;
356 struct set_char_fmt_item set_char_fmt
;
368 typedef struct tagME_FontTableItem
{
374 #define STREAMIN_BUFFER_SIZE 4096 /* M$ compatibility */
376 struct tagME_InStream
{
377 EDITSTREAM
*editstream
;
380 char buffer
[STREAMIN_BUFFER_SIZE
];
382 typedef struct tagME_InStream ME_InStream
;
384 typedef struct tagME_TextEditor
386 HWND hWnd
, hwndParent
;
389 BOOL bEmulateVersion10
;
390 ME_TextBuffer
*pBuffer
;
396 int nTotalLength
, nLastTotalLength
;
397 int nTotalWidth
, nLastTotalWidth
;
398 int nAvailWidth
; /* 0 = wrap to client area, else wrap width in twips */
401 COLORREF rgbBackColor
;
402 HBRUSH hbrBackground
;
406 struct list undo_stack
;
407 struct list redo_stack
;
410 ME_UndoMode nUndoMode
;
412 int nLastSelStart
, nLastSelEnd
;
413 ME_DisplayItem
*pLastSelStartPara
, *pLastSelEndPara
;
414 ME_FontCacheItem pFontCache
[HFONT_CACHE_SIZE
];
415 int nZoomNumerator
, nZoomDenominator
;
418 BOOL bDefaultFormatRect
;
421 EDITWORDBREAKPROCW pfnWordBreak
;
422 LPRICHEDITOLECALLBACK lpOleCallback
;
423 /*TEXTMODE variable; contains only one of each of the following options:
424 *TM_RICHTEXT or TM_PLAINTEXT
425 *TM_SINGLELEVELUNDO or TM_MULTILEVELUNDO
426 *TM_SINGLECODEPAGE or TM_MULTICODEPAGE*/
429 BOOL AutoURLDetect_bEnable
;
432 BOOL bDialogMode
; /* Indicates that we are inside a dialog window */
435 DWORD selofs
; /* The size of the selection bar on the left side of control */
436 ME_SelectionType nSelectionType
;
437 ME_DisplayItem
*first_marked_para
;
439 /* Track previous notified selection */
440 CHARRANGE notified_cr
;
442 /* Cache previously set scrollbar info */
443 SCROLLINFO vert_si
, horz_si
;
449 struct list style_list
;
450 struct list reobj_list
;
453 typedef struct tagME_Context
460 ME_Style
*current_style
;
463 /* those are valid inside ME_WrapTextParagraph and related */
464 ME_TextEditor
*editor
;