Richedit.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:36k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*
  2.  * RICHEDIT.H
  3.  *
  4.  * Purpose:
  5.  * RICHEDIT v2.0/3.0 public definitions.  Note that there is additional
  6.  * functionality available for v2.0 and 3.0 that is not in the original
  7.  * Windows 95 release.
  8.  *
  9.  * Copyright (c) Microsoft Corporation. All rights reserved.
  10.  */
  11. #ifndef _RICHEDIT_
  12. #define _RICHEDIT_
  13. #ifdef _WIN32
  14. #include <pshpack4.h>
  15. #elif !defined(RC_INVOKED)
  16. #pragma pack(4)
  17. #endif
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif /* __cplusplus */
  21. /* To mimic older RichEdit behavior, set _RICHEDIT_VER to appropriate value */
  22. /* Version 1.0 0x0100 */
  23. /* Version 2.0 0x0200 */
  24. /* Version 2.1 0x0210 */
  25. #ifndef _RICHEDIT_VER
  26. #define _RICHEDIT_VER 0x0300
  27. #endif
  28. #define cchTextLimitDefault 32767
  29. /* RichEdit 2.0 Window Class. */
  30. // For Windows CE to avoid possible conflicts on Win95.
  31. #define CERICHEDIT_CLASSA "RichEditCEA"
  32. #define CERICHEDIT_CLASSW L"RichEditCEW"
  33. #define RICHEDIT_CLASSA "RichEdit20A"
  34. #define RICHEDIT_CLASS10A "RICHEDIT" // Richedit 1.0
  35. #ifndef MACPORT
  36. #define RICHEDIT_CLASSW L"RichEdit20W"
  37. #else /*----------------------MACPORT */
  38. #define RICHEDIT_CLASSW TEXT("RichEdit20W") /* MACPORT change */
  39. #endif /* MACPORT  */
  40. #if (_RICHEDIT_VER >= 0x0200 )
  41. #ifdef UNICODE
  42. #define RICHEDIT_CLASS RICHEDIT_CLASSW
  43. #else
  44. #define RICHEDIT_CLASS RICHEDIT_CLASSA
  45. #endif /* UNICODE */
  46. #else
  47. #define RICHEDIT_CLASS RICHEDIT_CLASS10A
  48. #endif /* _RICHEDIT_VER >= 0x0200 */
  49. /* RichEdit messages */
  50. #ifndef WM_CONTEXTMENU
  51. #define WM_CONTEXTMENU 0x007B
  52. #endif
  53. #ifndef WM_PRINTCLIENT
  54. #define WM_PRINTCLIENT 0x0318
  55. #endif
  56. #ifndef EM_GETLIMITTEXT
  57. #define EM_GETLIMITTEXT (WM_USER + 37)
  58. #endif
  59. #ifndef EM_POSFROMCHAR
  60. #define EM_POSFROMCHAR (WM_USER + 38)
  61. #define EM_CHARFROMPOS (WM_USER + 39)
  62. #endif
  63. #ifndef EM_SCROLLCARET
  64. #define EM_SCROLLCARET (WM_USER + 49)
  65. #endif
  66. #define EM_CANPASTE (WM_USER + 50)
  67. #define EM_DISPLAYBAND (WM_USER + 51)
  68. #define EM_EXGETSEL (WM_USER + 52)
  69. #define EM_EXLIMITTEXT (WM_USER + 53)
  70. #define EM_EXLINEFROMCHAR (WM_USER + 54)
  71. #define EM_EXSETSEL (WM_USER + 55)
  72. #define EM_FINDTEXT (WM_USER + 56)
  73. #define EM_FORMATRANGE (WM_USER + 57)
  74. #define EM_GETCHARFORMAT (WM_USER + 58)
  75. #define EM_GETEVENTMASK (WM_USER + 59)
  76. #define EM_GETOLEINTERFACE (WM_USER + 60)
  77. #define EM_GETPARAFORMAT (WM_USER + 61)
  78. #define EM_GETSELTEXT (WM_USER + 62)
  79. #define EM_HIDESELECTION (WM_USER + 63)
  80. #define EM_PASTESPECIAL (WM_USER + 64)
  81. #define EM_REQUESTRESIZE (WM_USER + 65)
  82. #define EM_SELECTIONTYPE (WM_USER + 66)
  83. #define EM_SETBKGNDCOLOR (WM_USER + 67)
  84. #define EM_SETCHARFORMAT (WM_USER + 68)
  85. #define EM_SETEVENTMASK (WM_USER + 69)
  86. #define EM_SETOLECALLBACK (WM_USER + 70)
  87. #define EM_SETPARAFORMAT (WM_USER + 71)
  88. #define EM_SETTARGETDEVICE (WM_USER + 72)
  89. #define EM_STREAMIN (WM_USER + 73)
  90. #define EM_STREAMOUT (WM_USER + 74)
  91. #define EM_GETTEXTRANGE (WM_USER + 75)
  92. #define EM_FINDWORDBREAK (WM_USER + 76)
  93. #define EM_SETOPTIONS (WM_USER + 77)
  94. #define EM_GETOPTIONS (WM_USER + 78)
  95. #define EM_FINDTEXTEX (WM_USER + 79)
  96. #ifdef _WIN32
  97. #define EM_GETWORDBREAKPROCEX (WM_USER + 80)
  98. #define EM_SETWORDBREAKPROCEX (WM_USER + 81)
  99. #endif
  100. /* RichEdit 2.0 messages */
  101. #define EM_SETUNDOLIMIT (WM_USER + 82)
  102. #define EM_REDO (WM_USER + 84)
  103. #define EM_CANREDO (WM_USER + 85)
  104. #define EM_GETUNDONAME (WM_USER + 86)
  105. #define EM_GETREDONAME (WM_USER + 87)
  106. #define EM_STOPGROUPTYPING (WM_USER + 88)
  107. #define EM_SETTEXTMODE (WM_USER + 89)
  108. #define EM_GETTEXTMODE (WM_USER + 90)
  109. /* enum for use with EM_GET/SETTEXTMODE */
  110. typedef enum tagTextMode
  111. {
  112. TM_PLAINTEXT = 1,
  113. TM_RICHTEXT = 2, /* default behavior */
  114. TM_SINGLELEVELUNDO = 4,
  115. TM_MULTILEVELUNDO = 8, /* default behavior */
  116. TM_SINGLECODEPAGE = 16,
  117. TM_MULTICODEPAGE = 32 /* default behavior */
  118. } TEXTMODE;
  119. #define EM_AUTOURLDETECT (WM_USER + 91)
  120. #define EM_GETAUTOURLDETECT (WM_USER + 92)
  121. #define EM_SETPALETTE (WM_USER + 93)
  122. #define EM_GETTEXTEX (WM_USER + 94)
  123. #define EM_GETTEXTLENGTHEX (WM_USER + 95)
  124. #define EM_SHOWSCROLLBAR (WM_USER + 96)
  125. #define EM_SETTEXTEX (WM_USER + 97)
  126. /* Far East specific messages */
  127. #define EM_SETPUNCTUATION (WM_USER + 100)
  128. #define EM_GETPUNCTUATION (WM_USER + 101)
  129. #define EM_SETWORDWRAPMODE (WM_USER + 102)
  130. #define EM_GETWORDWRAPMODE (WM_USER + 103)
  131. #define EM_SETIMECOLOR (WM_USER + 104)
  132. #define EM_GETIMECOLOR (WM_USER + 105)
  133. #define EM_SETIMEOPTIONS (WM_USER + 106)
  134. #define EM_GETIMEOPTIONS (WM_USER + 107)
  135. #define EM_CONVPOSITION  (WM_USER + 108)
  136. #define EM_SETLANGOPTIONS (WM_USER + 120)
  137. #define EM_GETLANGOPTIONS (WM_USER + 121)
  138. #define EM_GETIMECOMPMODE (WM_USER + 122)
  139. #define EM_FINDTEXTW (WM_USER + 123)
  140. #define EM_FINDTEXTEXW (WM_USER + 124)
  141. /* RE3.0 FE messages */
  142. #define EM_RECONVERSION (WM_USER + 125)
  143. #define EM_SETIMEMODEBIAS (WM_USER + 126)
  144. #define EM_GETIMEMODEBIAS (WM_USER + 127)
  145. /* BiDi specific messages */
  146. #define EM_SETBIDIOPTIONS (WM_USER + 200)
  147. #define EM_GETBIDIOPTIONS (WM_USER + 201)
  148. #define EM_SETTYPOGRAPHYOPTIONS (WM_USER + 202)
  149. #define EM_GETTYPOGRAPHYOPTIONS (WM_USER + 203)
  150. /* Extended edit style specific messages */
  151. #define EM_SETEDITSTYLE (WM_USER + 204)
  152. #define EM_GETEDITSTYLE (WM_USER + 205)
  153. /* Extended edit style masks */
  154. #define SES_EMULATESYSEDIT 1
  155. #define SES_BEEPONMAXTEXT 2
  156. #define SES_EXTENDBACKCOLOR 4
  157. #define SES_MAPCPS 8
  158. #define SES_EMULATE10 16
  159. #define SES_USECRLF 32
  160. #define SES_USEAIMM 64
  161. #define SES_NOIME 128
  162. #define SES_ALLOWBEEPS 256
  163. #define SES_UPPERCASE 512
  164. #define SES_LOWERCASE 1024
  165. #define SES_NOINPUTSEQUENCECHK 2048
  166. #define SES_BIDI 4096
  167. #define SES_SCROLLONKILLFOCUS 8192
  168. #define SES_XLTCRCRLFTOCR 16384
  169. /* Options for EM_SETLANGOPTIONS and EM_GETLANGOPTIONS */
  170. #define IMF_AUTOKEYBOARD 0x0001
  171. #define IMF_AUTOFONT 0x0002
  172. #define IMF_IMECANCELCOMPLETE 0x0004 // high completes comp string when aborting, low cancels.
  173. #define IMF_IMEALWAYSSENDNOTIFY 0x0008
  174. #define IMF_AUTOFONTSIZEADJUST 0x0010
  175. #define IMF_UIFONTS 0x0020
  176. #define IMF_DUALFONT 0x0080
  177. /* Values for EM_GETIMECOMPMODE */
  178. #define ICM_NOTOPEN 0x0000
  179. #define ICM_LEVEL3 0x0001
  180. #define ICM_LEVEL2 0x0002
  181. #define ICM_LEVEL2_5 0x0003
  182. #define ICM_LEVEL2_SUI 0x0004
  183. /* Options for EM_SETTYPOGRAPHYOPTIONS */
  184. #define TO_ADVANCEDTYPOGRAPHY 1
  185. #define TO_SIMPLELINEBREAK 2
  186. /* Pegasus outline mode messages (RE 3.0) */
  187. // Outline mode message
  188. #define EM_OUTLINE              (WM_USER + 220)
  189. // Message for getting and restoring scroll pos
  190. #define EM_GETSCROLLPOS         (WM_USER + 221)
  191. #define EM_SETSCROLLPOS         (WM_USER + 222)
  192. // Change fontsize in current selection by wParam
  193. #define EM_SETFONTSIZE          (WM_USER + 223)
  194. #define EM_GETZOOM (WM_USER + 224)
  195. #define EM_SETZOOM (WM_USER + 225)
  196. // Outline mode wparam values
  197. #define EMO_EXIT                0       // enter normal mode,  lparam ignored
  198. #define EMO_ENTER               1       // enter outline mode, lparam ignored
  199. #define EMO_PROMOTE             2       // LOWORD(lparam) == 0 ==>
  200.                                         // promote  to body-text
  201.                                         // LOWORD(lparam) != 0 ==>
  202.                                         // promote/demote current selection
  203.                                         // by indicated number of levels
  204. #define EMO_EXPAND              3       // HIWORD(lparam) = EMO_EXPANDSELECTION
  205.                                         // -> expands selection to level
  206.                                         // indicated in LOWORD(lparam)
  207.                                         // LOWORD(lparam) = -1/+1 corresponds
  208.                                         // to collapse/expand button presses
  209.                                         // in winword (other values are
  210.                                         // equivalent to having pressed these
  211.                                         // buttons more than once)
  212.                                         // HIWORD(lparam) = EMO_EXPANDDOCUMENT
  213.                                         // -> expands whole document to
  214.                                         // indicated level
  215. #define EMO_MOVESELECTION       4       // LOWORD(lparam) != 0 -> move current
  216.                                         // selection up/down by indicated
  217.                                         // amount
  218. #define EMO_GETVIEWMODE 5 // Returns VM_NORMAL or VM_OUTLINE
  219. // EMO_EXPAND options
  220. #define EMO_EXPANDSELECTION     0
  221. #define EMO_EXPANDDOCUMENT      1
  222. #define VM_NORMAL 4 // Agrees with RTF viewkindN
  223. #define VM_OUTLINE 2
  224. /* New notifications */
  225. #define EN_MSGFILTER 0x0700
  226. #define EN_REQUESTRESIZE 0x0701
  227. #define EN_SELCHANGE 0x0702
  228. #define EN_DROPFILES 0x0703
  229. #define EN_PROTECTED 0x0704
  230. #define EN_CORRECTTEXT 0x0705 /* PenWin specific */
  231. #define EN_STOPNOUNDO 0x0706
  232. #define EN_IMECHANGE 0x0707 /* Far East specific */
  233. #define EN_SAVECLIPBOARD 0x0708
  234. #define EN_OLEOPFAILED 0x0709
  235. #define EN_OBJECTPOSITIONS 0x070a
  236. #define EN_LINK 0x070b
  237. #define EN_DRAGDROPDONE 0x070c
  238. #define EN_PARAGRAPHEXPANDED 0x070d
  239. /* BiDi specific notifications */
  240. #define EN_ALIGNLTR 0x0710
  241. #define EN_ALIGNRTL 0x0711
  242. /* Event notification masks */
  243. #define ENM_NONE 0x00000000
  244. #define ENM_CHANGE 0x00000001
  245. #define ENM_UPDATE 0x00000002
  246. #define ENM_SCROLL 0x00000004
  247. #define ENM_KEYEVENTS 0x00010000
  248. #define ENM_MOUSEEVENTS 0x00020000
  249. #define ENM_REQUESTRESIZE 0x00040000
  250. #define ENM_SELCHANGE 0x00080000
  251. #define ENM_DROPFILES 0x00100000
  252. #define ENM_PROTECTED 0x00200000
  253. #define ENM_CORRECTTEXT 0x00400000 /* PenWin specific */
  254. #define ENM_SCROLLEVENTS 0x00000008
  255. #define ENM_DRAGDROPDONE 0x00000010
  256. #define ENM_PARAGRAPHEXPANDED 0x00000020
  257. /* Far East specific notification mask */
  258. #define ENM_IMECHANGE 0x00800000 /* unused by RE2.0 */
  259. #define ENM_LANGCHANGE 0x01000000
  260. #define ENM_OBJECTPOSITIONS 0x02000000
  261. #define ENM_LINK 0x04000000
  262. /* New edit control styles */
  263. #define ES_SAVESEL 0x00008000
  264. #define ES_SUNKEN 0x00004000
  265. #define ES_DISABLENOSCROLL 0x00002000
  266. /* same as WS_MAXIMIZE, but that doesn't make sense so we re-use the value */
  267. #define ES_SELECTIONBAR 0x01000000
  268. /* same as ES_UPPERCASE, but re-used to completely disable OLE drag'n'drop */
  269. #define ES_NOOLEDRAGDROP 0x00000008
  270. /* Edit control extended style */
  271. #if (_WIN32_WINNT > 0x0400) || (WINVER > 0x0400)
  272. #define ES_EX_NOCALLOLEINIT 0x00000000 /* Not supported in RE 2.0/3.0 */
  273. #else
  274. #ifdef _WIN32
  275. #define ES_EX_NOCALLOLEINIT 0x01000000
  276. #endif
  277. #endif
  278. /* These flags are used in FE Windows */
  279. #define ES_VERTICAL 0x00400000 /* Not supported in RE 2.0/3.0 */
  280. #define ES_NOIME 0x00080000
  281. #define ES_SELFIME 0x00040000
  282. /* Edit control options */
  283. #define ECO_AUTOWORDSELECTION 0x00000001
  284. #define ECO_AUTOVSCROLL 0x00000040
  285. #define ECO_AUTOHSCROLL 0x00000080
  286. #define ECO_NOHIDESEL 0x00000100
  287. #define ECO_READONLY 0x00000800
  288. #define ECO_WANTRETURN 0x00001000
  289. #define ECO_SAVESEL 0x00008000
  290. #define ECO_SELECTIONBAR 0x01000000
  291. #define ECO_VERTICAL 0x00400000 /* FE specific */
  292. /* ECO operations */
  293. #define ECOOP_SET 0x0001
  294. #define ECOOP_OR 0x0002
  295. #define ECOOP_AND 0x0003
  296. #define ECOOP_XOR 0x0004
  297. /* New word break function actions */
  298. #define WB_CLASSIFY 3
  299. #define WB_MOVEWORDLEFT 4
  300. #define WB_MOVEWORDRIGHT 5
  301. #define WB_LEFTBREAK 6
  302. #define WB_RIGHTBREAK 7
  303. /* Far East specific flags */
  304. #define WB_MOVEWORDPREV 4
  305. #define WB_MOVEWORDNEXT 5
  306. #define WB_PREVBREAK 6
  307. #define WB_NEXTBREAK 7
  308. #define PC_FOLLOWING 1
  309. #define PC_LEADING 2
  310. #define PC_OVERFLOW 3
  311. #define PC_DELIMITER 4
  312. #define WBF_WORDWRAP 0x010
  313. #define WBF_WORDBREAK 0x020
  314. #define WBF_OVERFLOW 0x040
  315. #define WBF_LEVEL1 0x080
  316. #define WBF_LEVEL2 0x100
  317. #define WBF_CUSTOM 0x200
  318. /* Far East specific flags */
  319. #define IMF_FORCENONE           0x0001
  320. #define IMF_FORCEENABLE         0x0002
  321. #define IMF_FORCEDISABLE        0x0004
  322. #define IMF_CLOSESTATUSWINDOW   0x0008
  323. #define IMF_VERTICAL            0x0020
  324. #define IMF_FORCEACTIVE         0x0040
  325. #define IMF_FORCEINACTIVE       0x0080
  326. #define IMF_FORCEREMEMBER       0x0100
  327. #define IMF_MULTIPLEEDIT        0x0400
  328. /* Word break flags (used with WB_CLASSIFY) */
  329. #define WBF_CLASS ((BYTE) 0x0F)
  330. #define WBF_ISWHITE ((BYTE) 0x10)
  331. #define WBF_BREAKLINE ((BYTE) 0x20)
  332. #define WBF_BREAKAFTER ((BYTE) 0x40)
  333. /* new data types */
  334. #ifdef _WIN32
  335. /* extended edit word break proc (character set aware) */
  336. typedef LONG (*EDITWORDBREAKPROCEX)(char *pchText, LONG cchText, BYTE bCharSet, INT action);
  337. #endif
  338. /* All character format measurements are in twips */
  339. typedef struct _charformat
  340. {
  341. UINT cbSize;
  342. DWORD dwMask;
  343. DWORD dwEffects;
  344. LONG yHeight;
  345. LONG yOffset;
  346. COLORREF crTextColor;
  347. BYTE bCharSet;
  348. BYTE bPitchAndFamily;
  349. char szFaceName[LF_FACESIZE];
  350. } CHARFORMATA;
  351. typedef struct _charformatw
  352. {
  353. UINT cbSize;
  354. DWORD dwMask;
  355. DWORD dwEffects;
  356. LONG yHeight;
  357. LONG yOffset;
  358. COLORREF crTextColor;
  359. BYTE bCharSet;
  360. BYTE bPitchAndFamily;
  361. WCHAR szFaceName[LF_FACESIZE];
  362. } CHARFORMATW;
  363. #if (_RICHEDIT_VER >= 0x0200)
  364. #ifdef UNICODE
  365. #define CHARFORMAT CHARFORMATW
  366. #else
  367. #define CHARFORMAT CHARFORMATA
  368. #endif /* UNICODE */
  369. #else
  370. #define CHARFORMAT CHARFORMATA
  371. #endif /* _RICHEDIT_VER >= 0x0200 */
  372. /* CHARFORMAT masks */
  373. #define CFM_BOLD 0x00000001
  374. #define CFM_ITALIC 0x00000002
  375. #define CFM_UNDERLINE 0x00000004
  376. #define CFM_STRIKEOUT 0x00000008
  377. #define CFM_PROTECTED 0x00000010
  378. #define CFM_LINK 0x00000020 /* Exchange hyperlink extension */
  379. #define CFM_SIZE 0x80000000
  380. #define CFM_COLOR 0x40000000
  381. #define CFM_FACE 0x20000000
  382. #define CFM_OFFSET 0x10000000
  383. #define CFM_CHARSET 0x08000000
  384. /* CHARFORMAT effects */
  385. #define CFE_BOLD 0x0001
  386. #define CFE_ITALIC 0x0002
  387. #define CFE_UNDERLINE 0x0004
  388. #define CFE_STRIKEOUT 0x0008
  389. #define CFE_PROTECTED 0x0010
  390. #define CFE_LINK 0x0020
  391. #define CFE_AUTOCOLOR 0x40000000 /* NOTE: this corresponds to */
  392. /* CFM_COLOR, which controls it */
  393. #define yHeightCharPtsMost 1638
  394. /* EM_SETCHARFORMAT wParam masks */
  395. #define SCF_SELECTION 0x0001
  396. #define SCF_WORD 0x0002
  397. #define SCF_DEFAULT 0x0000 // Set default charformat or paraformat
  398. #define SCF_ALL 0x0004 // Not valid with SCF_SELECTION or SCF_WORD
  399. #define SCF_USEUIRULES 0x0008 // Modifier for SCF_SELECTION; says that
  400. //  format came from a toolbar, etc., and
  401. //  hence UI formatting rules should be
  402. //  used instead of literal formatting
  403. #define SCF_ASSOCIATEFONT 0x0010 // Associate fontname with bCharSet (one
  404. //  possible for each of Western, ME, FE,
  405. //  Thai)
  406. #define SCF_NOKBUPDATE 0x0020 // Do not update the KB layput for this change
  407. // even if autokeyboard is on.
  408. typedef struct _charrange
  409. {
  410. LONG cpMin;
  411. LONG cpMax;
  412. } CHARRANGE;
  413. typedef struct _textrange
  414. {
  415. CHARRANGE chrg;
  416. LPSTR lpstrText; /* allocated by caller, zero terminated by RichEdit */
  417. } TEXTRANGEA;
  418. typedef struct _textrangew
  419. {
  420. CHARRANGE chrg;
  421. LPWSTR lpstrText; /* allocated by caller, zero terminated by RichEdit */
  422. } TEXTRANGEW;
  423. #if (_RICHEDIT_VER >= 0x0200)
  424. #ifdef UNICODE
  425. #define TEXTRANGE  TEXTRANGEW
  426. #else
  427. #define TEXTRANGE TEXTRANGEA
  428. #endif /* UNICODE */
  429. #else
  430. #define TEXTRANGE TEXTRANGEA
  431. #endif /* _RICHEDIT_VER >= 0x0200 */
  432. typedef DWORD (CALLBACK *EDITSTREAMCALLBACK)(DWORD_PTR dwCookie, LPBYTE pbBuff, LONG cb, LONG *pcb);
  433. typedef struct _editstream
  434. {
  435. DWORD_PTR dwCookie; /* user value passed to callback as first parameter */
  436. DWORD   dwError; /* last error */
  437. EDITSTREAMCALLBACK pfnCallback;
  438. } EDITSTREAM;
  439. /* Stream formats. Flags are all in low word, since high word gives
  440.    possible codepage choice. */
  441. #define SF_TEXT 0x0001
  442. #define SF_RTF 0x0002
  443. #define SF_RTFNOOBJS 0x0003 /* Write only */
  444. #define SF_TEXTIZED 0x0004 /* Write only */
  445. #define SF_UNICODE 0x0010 /* Unicode file (UCS2 little endian) */
  446. #define SF_USECODEPAGE 0x0020 /* CodePage given by high word */
  447. #define SF_NCRFORNONASCII 0x40 /* Output /uN for nonASCII */
  448. /* Flag telling stream operations to operate on selection only */
  449. /* EM_STREAMIN  will replace current selection */
  450. /* EM_STREAMOUT will stream out current selection */
  451. #define SFF_SELECTION 0x8000
  452. /* Flag telling stream operations to ignore some FE control words */
  453. /* having to do with FE word breaking and horiz vs vertical text. */
  454. /* Not used in RichEdit 2.0 and later */
  455. #define SFF_PLAINRTF 0x4000
  456. /* Flag telling file stream output (SFF_SELECTION flag not set) to persist */
  457. /* viewscaleN control word. */
  458. #define SFF_PERSISTVIEWSCALE 0x2000
  459. /* Flag telling file stream input with SFF_SELECTION flag not set not to */
  460. /* close the document */
  461. #define SFF_KEEPDOCINFO 0x1000
  462. /* Flag telling stream operations to output in Pocket Word format */
  463. #define SFF_PWD 0x0800
  464. /* 3-bit field specifying the value of N - 1 to use for rtfN or pwdN */
  465. #define SF_RTFVAL 0x0700
  466. typedef struct _findtext
  467. {
  468. CHARRANGE chrg;
  469. LPCSTR lpstrText;
  470. } FINDTEXTA;
  471. typedef struct _findtextw
  472. {
  473. CHARRANGE chrg;
  474. LPCWSTR lpstrText;
  475. } FINDTEXTW;
  476. #if (_RICHEDIT_VER >= 0x0200)
  477. #ifdef UNICODE
  478. #define FINDTEXT FINDTEXTW
  479. #else
  480. #define FINDTEXT FINDTEXTA
  481. #endif /* UNICODE */
  482. #else
  483. #define FINDTEXT FINDTEXTA
  484. #endif /* _RICHEDIT_VER >= 0x0200 */
  485. typedef struct _findtextexa
  486. {
  487. CHARRANGE chrg;
  488. LPCSTR   lpstrText;
  489. CHARRANGE chrgText;
  490. } FINDTEXTEXA;
  491. typedef struct _findtextexw
  492. {
  493. CHARRANGE chrg;
  494. LPCWSTR   lpstrText;
  495. CHARRANGE chrgText;
  496. } FINDTEXTEXW;
  497. #if (_RICHEDIT_VER >= 0x0200)
  498. #ifdef UNICODE
  499. #define FINDTEXTEX FINDTEXTEXW
  500. #else
  501. #define FINDTEXTEX FINDTEXTEXA
  502. #endif /* UNICODE */
  503. #else
  504. #define FINDTEXTEX FINDTEXTEXA
  505. #endif /* _RICHEDIT_VER >= 0x0200 */
  506. typedef struct _formatrange
  507. {
  508. HDC hdc;
  509. HDC hdcTarget;
  510. RECT rc;
  511. RECT rcPage;
  512. CHARRANGE chrg;
  513. } FORMATRANGE;
  514. /* All paragraph measurements are in twips */
  515. #define MAX_TAB_STOPS 32
  516. #define lDefaultTab 720
  517. /* This is to make PARAFORMAT compatible with RE 1.0 */
  518. #define wReserved wEffects
  519. typedef struct _paraformat
  520. {
  521. UINT cbSize;
  522. DWORD dwMask;
  523. WORD wNumbering;
  524. WORD wEffects;
  525. LONG dxStartIndent;
  526. LONG dxRightIndent;
  527. LONG dxOffset;
  528. WORD wAlignment;
  529. SHORT cTabCount;
  530. LONG rgxTabs[MAX_TAB_STOPS];
  531. } PARAFORMAT;
  532. /* PARAFORMAT mask values */
  533. #define PFM_STARTINDENT 0x00000001
  534. #define PFM_RIGHTINDENT 0x00000002
  535. #define PFM_OFFSET 0x00000004
  536. #define PFM_ALIGNMENT 0x00000008
  537. #define PFM_TABSTOPS 0x00000010
  538. #define PFM_NUMBERING 0x00000020
  539. #define PFM_OFFSETINDENT 0x80000000
  540. /* PARAFORMAT numbering options */
  541. #define PFN_BULLET 0x0001
  542. /* PARAFORMAT alignment options */
  543. #define PFA_LEFT 0x0001
  544. #define PFA_RIGHT 0x0002
  545. #define PFA_CENTER 0x0003
  546. /* CHARFORMAT2 and PARAFORMAT2 structures */
  547. #ifdef __cplusplus
  548. struct CHARFORMAT2W : _charformatw
  549. {
  550. WORD wWeight; /* Font weight (LOGFONT value) */
  551. SHORT sSpacing; /* Amount to space between letters */
  552. COLORREF crBackColor; /* Background color */
  553. LCID lcid; /* Locale ID */
  554. DWORD dwReserved; /* Reserved. Must be 0 */
  555. SHORT sStyle; /* Style handle */
  556. WORD wKerning; /* Twip size above which to kern char pair*/
  557. BYTE bUnderlineType; /* Underline type */
  558. BYTE bAnimation; /* Animated text like marching ants */
  559. BYTE bRevAuthor; /* Revision author index */
  560. };
  561. struct CHARFORMAT2A : _charformat
  562. {
  563. WORD wWeight; /* Font weight (LOGFONT value) */
  564. SHORT sSpacing; /* Amount to space between letters */
  565. COLORREF crBackColor; /* Background color */
  566. LCID lcid; /* Locale ID */
  567. DWORD dwReserved; /* Reserved. Must be 0 */
  568. SHORT sStyle; /* Style handle */
  569. WORD wKerning; /* Twip size above which to kern char pair*/
  570. BYTE bUnderlineType; /* Underline type */
  571. BYTE bAnimation; /* Animated text like marching ants */
  572. BYTE bRevAuthor; /* Revision author index */
  573. };
  574. #else /* regular C-style  */
  575. typedef struct _charformat2w
  576. {
  577. UINT cbSize;
  578. DWORD dwMask;
  579. DWORD dwEffects;
  580. LONG yHeight;
  581. LONG yOffset; /* > 0 for superscript, < 0 for subscript */
  582. COLORREF crTextColor;
  583. BYTE bCharSet;
  584. BYTE bPitchAndFamily;
  585. WCHAR szFaceName[LF_FACESIZE];
  586. WORD wWeight; /* Font weight (LOGFONT value) */
  587. SHORT sSpacing; /* Amount to space between letters */
  588. COLORREF crBackColor; /* Background color */
  589. LCID lcid; /* Locale ID */
  590. DWORD dwReserved; /* Reserved. Must be 0 */
  591. SHORT sStyle; /* Style handle */
  592. WORD wKerning; /* Twip size above which to kern char pair*/
  593. BYTE bUnderlineType; /* Underline type */
  594. BYTE bAnimation; /* Animated text like marching ants */
  595. BYTE bRevAuthor; /* Revision author index */
  596. BYTE bReserved1;
  597. } CHARFORMAT2W;
  598. typedef struct _charformat2a
  599. {
  600. UINT cbSize;
  601. DWORD dwMask;
  602. DWORD dwEffects;
  603. LONG yHeight;
  604. LONG yOffset; /* > 0 for superscript, < 0 for subscript */
  605. COLORREF crTextColor;
  606. BYTE bCharSet;
  607. BYTE bPitchAndFamily;
  608. char szFaceName[LF_FACESIZE];
  609. WORD wWeight; /* Font weight (LOGFONT value) */
  610. SHORT sSpacing; /* Amount to space between letters */
  611. COLORREF crBackColor; /* Background color */
  612. LCID lcid; /* Locale ID */
  613. DWORD dwReserved; /* Reserved. Must be 0 */
  614. SHORT sStyle; /* Style handle */
  615. WORD wKerning; /* Twip size above which to kern char pair*/
  616. BYTE bUnderlineType; /* Underline type */
  617. BYTE bAnimation; /* Animated text like marching ants */
  618. BYTE bRevAuthor; /* Revision author index */
  619. } CHARFORMAT2A;
  620. #endif /* C++ */
  621. #ifdef UNICODE
  622. #define CHARFORMAT2 CHARFORMAT2W
  623. #else
  624. #define CHARFORMAT2 CHARFORMAT2A
  625. #endif
  626. #define CHARFORMATDELTA (sizeof(CHARFORMAT2) - sizeof(CHARFORMAT))
  627. /* CHARFORMAT and PARAFORMAT "ALL" masks
  628.    CFM_COLOR mirrors CFE_AUTOCOLOR, a way to easily deal with autocolor*/
  629. #define CFM_EFFECTS (CFM_BOLD | CFM_ITALIC | CFM_UNDERLINE | CFM_COLOR | 
  630.  CFM_STRIKEOUT | CFE_PROTECTED | CFM_LINK)
  631. #define CFM_ALL (CFM_EFFECTS | CFM_SIZE | CFM_FACE | CFM_OFFSET | CFM_CHARSET)
  632. #define PFM_ALL (PFM_STARTINDENT | PFM_RIGHTINDENT | PFM_OFFSET | 
  633.  PFM_ALIGNMENT   | PFM_TABSTOPS    | PFM_NUMBERING | 
  634.  PFM_OFFSETINDENT| PFM_RTLPARA)
  635. /* New masks and effects -- a parenthesized asterisk indicates that
  636.    the data is stored by RichEdit 2.0/3.0, but not displayed */
  637. #define CFM_SMALLCAPS 0x0040 /* (*) */
  638. #define CFM_ALLCAPS 0x0080 /* Displayed by 3.0 */
  639. #define CFM_HIDDEN 0x0100 /* Hidden by 3.0 */
  640. #define CFM_OUTLINE 0x0200 /* (*) */
  641. #define CFM_SHADOW 0x0400 /* (*) */
  642. #define CFM_EMBOSS 0x0800 /* (*) */
  643. #define CFM_IMPRINT 0x1000 /* (*) */
  644. #define CFM_DISABLED 0x2000
  645. #define CFM_REVISED 0x4000
  646. #define CFM_BACKCOLOR 0x04000000
  647. #define CFM_LCID 0x02000000
  648. #define CFM_UNDERLINETYPE 0x00800000 /* Many displayed by 3.0 */
  649. #define CFM_WEIGHT 0x00400000
  650. #define CFM_SPACING 0x00200000 /* Displayed by 3.0 */
  651. #define CFM_KERNING 0x00100000 /* (*) */
  652. #define CFM_STYLE 0x00080000 /* (*) */
  653. #define CFM_ANIMATION 0x00040000 /* (*) */
  654. #define CFM_REVAUTHOR 0x00008000
  655. #define CFE_SUBSCRIPT 0x00010000 /* Superscript and subscript are */
  656. #define CFE_SUPERSCRIPT 0x00020000 /*  mutually exclusive  */
  657. #define CFM_SUBSCRIPT CFE_SUBSCRIPT | CFE_SUPERSCRIPT
  658. #define CFM_SUPERSCRIPT CFM_SUBSCRIPT
  659. #define CFM_EFFECTS2 (CFM_EFFECTS | CFM_DISABLED | CFM_SMALLCAPS | CFM_ALLCAPS 
  660. | CFM_HIDDEN  | CFM_OUTLINE | CFM_SHADOW | CFM_EMBOSS 
  661. | CFM_IMPRINT | CFM_DISABLED | CFM_REVISED 
  662. | CFM_SUBSCRIPT | CFM_SUPERSCRIPT | CFM_BACKCOLOR)
  663. #define CFM_ALL2  (CFM_ALL | CFM_EFFECTS2 | CFM_BACKCOLOR | CFM_LCID 
  664. | CFM_UNDERLINETYPE | CFM_WEIGHT | CFM_REVAUTHOR 
  665. | CFM_SPACING | CFM_KERNING | CFM_STYLE | CFM_ANIMATION)
  666. #define CFE_SMALLCAPS CFM_SMALLCAPS
  667. #define CFE_ALLCAPS CFM_ALLCAPS
  668. #define CFE_HIDDEN CFM_HIDDEN
  669. #define CFE_OUTLINE CFM_OUTLINE
  670. #define CFE_SHADOW CFM_SHADOW
  671. #define CFE_EMBOSS CFM_EMBOSS
  672. #define CFE_IMPRINT CFM_IMPRINT
  673. #define CFE_DISABLED CFM_DISABLED
  674. #define CFE_REVISED CFM_REVISED
  675. /* NOTE: CFE_AUTOCOLOR and CFE_AUTOBACKCOLOR correspond to CFM_COLOR and
  676.    CFM_BACKCOLOR, respectively, which control them */
  677. #define CFE_AUTOBACKCOLOR CFM_BACKCOLOR
  678. /* Underline types. RE 1.0 displays only CFU_UNDERLINE */
  679. #define CFU_CF1UNDERLINE 0xFF /* map charformat's bit underline to CF2.*/
  680. #define CFU_INVERT 0xFE /* For IME composition fake a selection.*/
  681. #define CFU_UNDERLINEHAIRLINE 10 /* (*) displayed as ordinary underline */
  682. #define CFU_UNDERLINETHICK 9
  683. #define CFU_UNDERLINEWAVE 8
  684. #define CFU_UNDERLINEDASHDOTDOT 7
  685. #define CFU_UNDERLINEDASHDOT 6
  686. #define CFU_UNDERLINEDASH 5
  687. #define CFU_UNDERLINEDOTTED 4
  688. #define CFU_UNDERLINEDOUBLE 3 /* (*) displayed as ordinary underline */
  689. #define CFU_UNDERLINEWORD 2 /* (*) displayed as ordinary underline */
  690. #define CFU_UNDERLINE 1
  691. #define CFU_UNDERLINENONE 0
  692. #ifdef __cplusplus
  693. struct PARAFORMAT2 : _paraformat
  694. {
  695. LONG dySpaceBefore; /* Vertical spacing before para */
  696. LONG dySpaceAfter; /* Vertical spacing after para */
  697. LONG dyLineSpacing; /* Line spacing depending on Rule */
  698. SHORT sStyle; /* Style handle */
  699. BYTE bLineSpacingRule; /* Rule for line spacing (see tom.doc) */
  700. BYTE bOutlineLevel; /* Outline level */
  701. WORD wShadingWeight; /* Shading in hundredths of a per cent */
  702. WORD wShadingStyle; /* Nibble 0: style, 1: cfpat, 2: cbpat */
  703. WORD wNumberingStart; /* Starting value for numbering */
  704. WORD wNumberingStyle; /* Alignment, roman/arabic, (), ), ., etc.*/
  705. WORD wNumberingTab; /* Space bet FirstIndent & 1st-line text*/
  706. WORD wBorderSpace; /* Border-text spaces (nbl/bdr in pts) */
  707. WORD wBorderWidth; /* Pen widths (nbl/bdr in half pts) */
  708. WORD wBorders; /* Border styles (nibble/border) */
  709. };
  710. #else /* regular C-style */
  711. typedef struct _paraformat2
  712. {
  713. UINT cbSize;
  714. DWORD dwMask;
  715. WORD wNumbering;
  716. WORD wReserved;
  717. LONG dxStartIndent;
  718. LONG dxRightIndent;
  719. LONG dxOffset;
  720. WORD wAlignment;
  721. SHORT cTabCount;
  722. LONG rgxTabs[MAX_TAB_STOPS];
  723.   LONG dySpaceBefore; /* Vertical spacing before para */
  724. LONG dySpaceAfter; /* Vertical spacing after para */
  725. LONG dyLineSpacing; /* Line spacing depending on Rule */
  726. SHORT sStyle; /* Style handle */
  727. BYTE bLineSpacingRule; /* Rule for line spacing (see tom.doc) */
  728. BYTE bOutlineLevel; /* Outline Level */
  729. WORD wShadingWeight; /* Shading in hundredths of a per cent */
  730. WORD wShadingStyle; /* Byte 0: style, nib 2: cfpat, 3: cbpat*/
  731. WORD wNumberingStart; /* Starting value for numbering */
  732. WORD wNumberingStyle; /* Alignment, Roman/Arabic, (), ), ., etc.*/
  733. WORD wNumberingTab; /* Space bet 1st indent and 1st-line text*/
  734. WORD wBorderSpace; /* Border-text spaces (nbl/bdr in pts) */
  735. WORD wBorderWidth; /* Pen widths (nbl/bdr in half twips) */
  736. WORD wBorders; /* Border styles (nibble/border) */
  737. } PARAFORMAT2;
  738. #endif /* C++ */
  739. /* PARAFORMAT 2.0 masks and effects */
  740. #define PFM_SPACEBEFORE 0x00000040
  741. #define PFM_SPACEAFTER 0x00000080
  742. #define PFM_LINESPACING 0x00000100
  743. #define PFM_STYLE 0x00000400
  744. #define PFM_BORDER 0x00000800 /* (*) */
  745. #define PFM_SHADING 0x00001000 /* (*) */
  746. #define PFM_NUMBERINGSTYLE 0x00002000 /* RE 3.0 */
  747. #define PFM_NUMBERINGTAB 0x00004000 /* RE 3.0 */
  748. #define PFM_NUMBERINGSTART 0x00008000 /* RE 3.0 */
  749. #define PFM_RTLPARA 0x00010000
  750. #define PFM_KEEP 0x00020000 /* (*) */
  751. #define PFM_KEEPNEXT 0x00040000 /* (*) */
  752. #define PFM_PAGEBREAKBEFORE 0x00080000 /* (*) */
  753. #define PFM_NOLINENUMBER 0x00100000 /* (*) */
  754. #define PFM_NOWIDOWCONTROL 0x00200000 /* (*) */
  755. #define PFM_DONOTHYPHEN 0x00400000 /* (*) */
  756. #define PFM_SIDEBYSIDE 0x00800000 /* (*) */
  757. #define PFM_TABLE 0x40000000 /* RE 3.0 */
  758. // The following three properties are read only
  759. #define PFM_COLLAPSED 0x01000000 /* RE 3.0 */
  760. #define PFM_OUTLINELEVEL 0x02000000 /* RE 3.0 */
  761. #define PFM_BOX 0x04000000 /* RE 3.0 */
  762. /* Note: PARAFORMAT has no effects */
  763. #define PFM_EFFECTS (PFM_RTLPARA | PFM_KEEP | PFM_KEEPNEXT | PFM_TABLE 
  764. | PFM_PAGEBREAKBEFORE | PFM_NOLINENUMBER  
  765. | PFM_NOWIDOWCONTROL | PFM_DONOTHYPHEN | PFM_SIDEBYSIDE 
  766. | PFM_TABLE)
  767. #define PFM_ALL2 (PFM_ALL | PFM_EFFECTS | PFM_SPACEBEFORE | PFM_SPACEAFTER 
  768. | PFM_LINESPACING | PFM_STYLE | PFM_SHADING | PFM_BORDER 
  769. | PFM_NUMBERINGTAB | PFM_NUMBERINGSTART | PFM_NUMBERINGSTYLE)
  770. #define PFE_RTLPARA (PFM_RTLPARA  >> 16)
  771. #define PFE_KEEP (PFM_KEEP  >> 16) /* (*) */
  772. #define PFE_KEEPNEXT (PFM_KEEPNEXT  >> 16) /* (*) */
  773. #define PFE_PAGEBREAKBEFORE (PFM_PAGEBREAKBEFORE >> 16) /* (*) */
  774. #define PFE_NOLINENUMBER (PFM_NOLINENUMBER  >> 16) /* (*) */
  775. #define PFE_NOWIDOWCONTROL (PFM_NOWIDOWCONTROL  >> 16) /* (*) */
  776. #define PFE_DONOTHYPHEN (PFM_DONOTHYPHEN   >> 16) /* (*) */
  777. #define PFE_SIDEBYSIDE (PFM_SIDEBYSIDE  >> 16) /* (*) */
  778. // The following four effects are read only
  779. #define PFE_OUTLINELEVEL (PFM_OUTLINELEVEL  >> 16) /* (+) */
  780. #define PFE_COLLAPSED (PFM_COLLAPSED  >> 16) /* (+) */
  781. #define PFE_BOX (PFM_BOX  >> 16) /* (+) */
  782. #define PFE_TABLE 0x4000 /* Para is a table row. RE 3.0 */
  783. /* PARAFORMAT2 wNumbering options (see also PFN_BULLET) */
  784. #define PFN_ARABIC 2 /* tomListNumberAsArabic:   0, 1, 2, ...*/
  785. #define PFN_LCLETTER 3 /* tomListNumberAsLCLetter: a, b, c, ...*/
  786. #define PFN_UCLETTER 4 /* tomListNumberAsUCLetter: A, B, C, ...*/
  787. #define PFN_LCROMAN 5 /* tomListNumberAsLCRoman:  i, ii, iii, ...*/
  788. #define PFN_UCROMAN 6 /* tomListNumberAsUCRoman:  I, II, III, ...*/
  789. /* PARAFORMAT2 wNumberingStyle options */
  790. #define PFNS_PAREN 0x000 /* default, e.g.,   1) */
  791. #define PFNS_PARENS 0x100 /* tomListParentheses/256, e.g., (1) */
  792. #define PFNS_PERIOD 0x200 /* tomListPeriod/256, e.g.,   1. */
  793. #define PFNS_PLAIN 0x300 /* tomListPlain/256, e.g.,   1 */
  794. #define PFNS_NONUMBER 0x400 /* Used for continuation w/o number */
  795. #define PFA_JUSTIFY  4 /* New paragraph-alignment option 2.0 (*) */
  796. #define PFA_FULL_INTERWORD  4
  797. #define PFA_FULL_INTERLETTER 5
  798. #define PFA_FULL_SCALED  6
  799. #define PFA_FULL_GLYPHS  7
  800. #define PFA_SNAP_GRID  8
  801. /* Notification structures */
  802. #ifndef WM_NOTIFY
  803. #define WM_NOTIFY 0x004E
  804. typedef struct _nmhdr
  805. {
  806. HWND hwndFrom;
  807. UINT idFrom;
  808. UINT code;
  809. } NMHDR;
  810. #endif  /* !WM_NOTIFY */
  811. typedef struct _msgfilter
  812. {
  813. NMHDR nmhdr;
  814. UINT msg;
  815. WPARAM wParam;
  816. LPARAM lParam;
  817. } MSGFILTER;
  818. typedef struct _reqresize
  819. {
  820. NMHDR nmhdr;
  821. RECT rc;
  822. } REQRESIZE;
  823. typedef struct _selchange
  824. {
  825. NMHDR nmhdr;
  826. CHARRANGE chrg;
  827. WORD seltyp;
  828. } SELCHANGE;
  829. #define SEL_EMPTY 0x0000
  830. #define SEL_TEXT 0x0001
  831. #define SEL_OBJECT 0x0002
  832. #define SEL_MULTICHAR 0x0004
  833. #define SEL_MULTIOBJECT 0x0008
  834. /* Used with IRichEditOleCallback::GetContextMenu, this flag will be
  835.    passed as a "selection type".  It indicates that a context menu for
  836.    a right-mouse drag drop should be generated.  The IOleObject parameter
  837.    will really be the IDataObject for the drop
  838.  */
  839. #define GCM_RIGHTMOUSEDROP  0x8000
  840. typedef struct _endropfiles
  841. {
  842. NMHDR nmhdr;
  843. HANDLE hDrop;
  844. LONG cp;
  845. BOOL fProtected;
  846. } ENDROPFILES;
  847. typedef struct _enprotected
  848. {
  849. NMHDR nmhdr;
  850. UINT msg;
  851. WPARAM wParam;
  852. LPARAM lParam;
  853. CHARRANGE chrg;
  854. } ENPROTECTED;
  855. typedef struct _ensaveclipboard
  856. {
  857. NMHDR nmhdr;
  858. LONG cObjectCount;
  859.     LONG cch;
  860. } ENSAVECLIPBOARD;
  861. #ifndef MACPORT
  862. typedef struct _enoleopfailed
  863. {
  864. NMHDR nmhdr;
  865. LONG iob;
  866. LONG lOper;
  867. HRESULT hr;
  868. } ENOLEOPFAILED;
  869. #endif
  870. #define OLEOP_DOVERB 1
  871. typedef struct _objectpositions
  872. {
  873.     NMHDR nmhdr;
  874.     LONG cObjectCount;
  875.     LONG *pcpPositions;
  876. } OBJECTPOSITIONS;
  877. typedef struct _enlink
  878. {
  879.     NMHDR nmhdr;
  880.     UINT msg;
  881.     WPARAM wParam;
  882.     LPARAM lParam;
  883.     CHARRANGE chrg;
  884. } ENLINK;
  885. /* PenWin specific */
  886. typedef struct _encorrecttext
  887. {
  888. NMHDR nmhdr;
  889. CHARRANGE chrg;
  890. WORD seltyp;
  891. } ENCORRECTTEXT;
  892. /* Far East specific */
  893. typedef struct _punctuation
  894. {
  895. UINT iSize;
  896. LPSTR szPunctuation;
  897. } PUNCTUATION;
  898. /* Far East specific */
  899. typedef struct _compcolor
  900. {
  901. COLORREF crText;
  902. COLORREF crBackground;
  903. DWORD dwEffects;
  904. }COMPCOLOR;
  905. /* Clipboard formats - use as parameter to RegisterClipboardFormat() */
  906. #define CF_RTF  TEXT("Rich Text Format")
  907. #define CF_RTFNOOBJS  TEXT("Rich Text Format Without Objects")
  908. #define CF_RETEXTOBJ  TEXT("RichEdit Text and Objects")
  909. /* Paste Special */
  910. typedef struct _repastespecial
  911. {
  912. DWORD dwAspect;
  913. DWORD_PTR dwParam;
  914. } REPASTESPECIAL;
  915. /* UndoName info */
  916. typedef enum _undonameid
  917. {
  918.     UID_UNKNOWN     = 0,
  919. UID_TYPING = 1,
  920. UID_DELETE  = 2,
  921. UID_DRAGDROP = 3,
  922. UID_CUT = 4,
  923. UID_PASTE = 5
  924. } UNDONAMEID;
  925. /* Flags for the SETEXTEX data structure */
  926. #define ST_DEFAULT 0
  927. #define ST_KEEPUNDO 1
  928. #define ST_SELECTION 2
  929. /* EM_SETTEXTEX info; this struct is passed in the wparam of the message */
  930. typedef struct _settextex
  931. {
  932. DWORD flags; /* flags (see the ST_XXX defines */
  933. UINT codepage; /* code page for translation (CP_ACP for sys default;
  934.        1200 for Unicode, -1 for control default */
  935. } SETTEXTEX;
  936. /* Flags for the GETEXTEX data structure */
  937. #define GT_DEFAULT 0
  938. #define GT_USECRLF 1
  939. #define GT_SELECTION 2
  940. /* EM_GETTEXTEX info; this struct is passed in the wparam of the message */
  941. typedef struct _gettextex
  942. {
  943. DWORD cb; /* count of bytes in the string */
  944. DWORD flags; /* flags (see the GT_XXX defines */
  945. UINT codepage; /* code page for translation (CP_ACP for sys default,
  946.        1200 for Unicode, -1 for control default */
  947. LPCSTR lpDefaultChar; /* replacement for unmappable chars */
  948. LPBOOL lpUsedDefChar; /* pointer to flag set when def char used */
  949. } GETTEXTEX;
  950. /* Flags for the GETTEXTLENGTHEX data structure */
  951. #define GTL_DEFAULT 0 /* do the default (return # of chars) */
  952. #define GTL_USECRLF 1 /* compute answer using CRLFs for paragraphs*/
  953. #define GTL_PRECISE 2 /* compute a precise answer */
  954. #define GTL_CLOSE 4 /* fast computation of a "close" answer */
  955. #define GTL_NUMCHARS 8 /* return the number of characters */
  956. #define GTL_NUMBYTES 16 /* return the number of _bytes_ */
  957. /* EM_GETTEXTLENGTHEX info; this struct is passed in the wparam of the msg */
  958. typedef struct _gettextlengthex
  959. {
  960. DWORD flags; /* flags (see GTL_XXX defines) */
  961. UINT codepage; /* code page for translation (CP_ACP for default,
  962.    1200 for Unicode */
  963. } GETTEXTLENGTHEX;
  964. /* BiDi specific features */
  965. typedef struct _bidioptions
  966. {
  967. UINT cbSize;
  968. WORD wMask;
  969. WORD wEffects; 
  970. } BIDIOPTIONS;
  971. /* BIDIOPTIONS masks */
  972. #if (_RICHEDIT_VER == 0x0100)
  973. #define BOM_DEFPARADIR 0x0001 /* Default paragraph direction (implies alignment) (obsolete) */
  974. #define BOM_PLAINTEXT 0x0002 /* Use plain text layout (obsolete) */
  975. #endif /* _RICHEDIT_VER == 0x0100 */
  976. #define BOM_NEUTRALOVERRIDE 0x0004 /* Override neutral layout (obsolete) */
  977. #define BOM_CONTEXTREADING 0x0008 /* Context reading order */
  978. #define BOM_CONTEXTALIGNMENT 0x0010 /* Context alignment */
  979. /* BIDIOPTIONS effects */
  980. #if (_RICHEDIT_VER == 0x0100)
  981. #define BOE_RTLDIR 0x0001 /* Default paragraph direction (implies alignment) (obsolete) */
  982. #define BOE_PLAINTEXT 0x0002 /* Use plain text layout (obsolete) */
  983. #endif /* _RICHEDIT_VER == 0x0100 */
  984. #define BOE_NEUTRALOVERRIDE 0x0004 /* Override neutral layout (obsolete) */
  985. #define BOE_CONTEXTREADING 0x0008 /* Context reading order */
  986. #define BOE_CONTEXTALIGNMENT 0x0010 /* Context alignment */
  987. /* Additional EM_FINDTEXT[EX] flags */
  988. #define FR_MATCHDIAC                    0x20000000
  989. #define FR_MATCHKASHIDA                 0x40000000
  990. #define FR_MATCHALEFHAMZA               0x80000000
  991. /* UNICODE embedding character */
  992. #ifndef WCH_EMBEDDING
  993. #define WCH_EMBEDDING (WCHAR)0xFFFC
  994. #endif /* WCH_EMBEDDING */
  995. #ifdef _WIN32
  996. #include <poppack.h>
  997. #elif !defined(RC_INVOKED)
  998. #pragma pack()
  999. #endif
  1000. #ifdef __cplusplus
  1001. }
  1002. #endif  /* __cplusplus */
  1003. #endif /* !_RICHEDIT_ */