RtfRichTextBox.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Drawing.Imaging;
  5. using System.IO;
  6. using System.Runtime.InteropServices;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.OtherExpansion.SkinControl
  10. {
  11. [ToolboxBitmap(typeof(RichTextBox))]
  12. public class RtfRichTextBox : RichTextBox
  13. {
  14. [Flags]
  15. private enum EmfToWmfBitsFlags
  16. {
  17. EmfToWmfBitsFlagsDefault = 0,
  18. EmfToWmfBitsFlagsEmbedEmf = 1,
  19. EmfToWmfBitsFlagsIncludePlaceable = 2,
  20. EmfToWmfBitsFlagsNoXORClip = 4
  21. }
  22. public enum RtfColor
  23. {
  24. Black,
  25. Maroon,
  26. Green,
  27. Olive,
  28. Navy,
  29. Purple,
  30. Teal,
  31. Gray,
  32. Silver,
  33. Red,
  34. Lime,
  35. Yellow,
  36. Blue,
  37. Fuchsia,
  38. Aqua,
  39. White
  40. }
  41. private const string RTF_HEADER = "{\\rtf1\\ansi\\ansicpg936\\deff0\\deflang1033\\deflangfe2052";
  42. private static bool hasGdiPlus;
  43. private float xDpi;
  44. private float yDpi;
  45. private RtfRichTextBox.RtfColor textColor;
  46. private RtfRichTextBox.RtfColor highlightColor = RtfRichTextBox.RtfColor.White;
  47. private Dictionary<string, Bitmap> emotions = new Dictionary<string, Bitmap>();
  48. private Dictionary<RtfRichTextBox.RtfColor, string> rtfColor = new Dictionary<RtfRichTextBox.RtfColor, string>();
  49. private Dictionary<string, string> rtfFontFamily = new Dictionary<string, string>();
  50. protected override CreateParams CreateParams
  51. {
  52. get
  53. {
  54. CreateParams prams = base.CreateParams;
  55. if (RtfRichTextBox.LoadLibrary("msftedit.dll") != IntPtr.Zero)
  56. {
  57. prams.ExStyle |= 32;
  58. prams.ClassName = "RICHEDIT50W";
  59. }
  60. return prams;
  61. }
  62. }
  63. public Dictionary<string, Bitmap> Emotions
  64. {
  65. get
  66. {
  67. return this.emotions;
  68. }
  69. }
  70. public bool HasEmotion
  71. {
  72. get
  73. {
  74. if (RtfRichTextBox.hasGdiPlus)
  75. {
  76. foreach (string emoticon in this.emotions.Keys)
  77. {
  78. if (this.Text.IndexOf(emoticon, StringComparison.CurrentCultureIgnoreCase) > -1)
  79. {
  80. return true;
  81. }
  82. }
  83. return false;
  84. }
  85. return false;
  86. }
  87. }
  88. public RtfRichTextBox.RtfColor HiglightColor
  89. {
  90. get
  91. {
  92. return this.highlightColor;
  93. }
  94. set
  95. {
  96. this.highlightColor = value;
  97. }
  98. }
  99. public new string Rtf
  100. {
  101. get
  102. {
  103. return this.RemoveBadChars(base.Rtf);
  104. }
  105. set
  106. {
  107. base.Rtf = value;
  108. }
  109. }
  110. public RtfRichTextBox.RtfColor TextColor
  111. {
  112. get
  113. {
  114. return this.textColor;
  115. }
  116. set
  117. {
  118. this.textColor = value;
  119. }
  120. }
  121. [DllImport("gdiplus.dll")]
  122. private static extern uint GdipEmfToWmfBits(IntPtr _hEmf, uint _bufferSize, byte[] _buffer, int _mappingMode, RtfRichTextBox.EmfToWmfBitsFlags _flags);
  123. static RtfRichTextBox()
  124. {
  125. try
  126. {
  127. RtfRichTextBox.GdipEmfToWmfBits(IntPtr.Zero, 0u, null, 0, RtfRichTextBox.EmfToWmfBitsFlags.EmfToWmfBitsFlagsDefault);
  128. RtfRichTextBox.hasGdiPlus = true;
  129. }
  130. catch (Exception)
  131. {
  132. }
  133. }
  134. public RtfRichTextBox()
  135. {
  136. this.rtfColor.Add(RtfRichTextBox.RtfColor.Aqua, "\\red0\\green255\\blue255");
  137. this.rtfColor.Add(RtfRichTextBox.RtfColor.Black, "\\red0\\green0\\blue0");
  138. this.rtfColor.Add(RtfRichTextBox.RtfColor.Blue, "\\red0\\green0\\blue255");
  139. this.rtfColor.Add(RtfRichTextBox.RtfColor.Fuchsia, "\\red255\\green0\\blue255");
  140. this.rtfColor.Add(RtfRichTextBox.RtfColor.Gray, "\\red128\\green128\\blue128");
  141. this.rtfColor.Add(RtfRichTextBox.RtfColor.Green, "\\red0\\green128\\blue0");
  142. this.rtfColor.Add(RtfRichTextBox.RtfColor.Lime, "\\red0\\green255\\blue0");
  143. this.rtfColor.Add(RtfRichTextBox.RtfColor.Maroon, "\\red128\\green0\\blue0");
  144. this.rtfColor.Add(RtfRichTextBox.RtfColor.Navy, "\\red0\\green0\\blue128");
  145. this.rtfColor.Add(RtfRichTextBox.RtfColor.Olive, "\\red128\\green128\\blue0");
  146. this.rtfColor.Add(RtfRichTextBox.RtfColor.Purple, "\\red128\\green0\\blue128");
  147. this.rtfColor.Add(RtfRichTextBox.RtfColor.Red, "\\red255\\green0\\blue0");
  148. this.rtfColor.Add(RtfRichTextBox.RtfColor.Silver, "\\red192\\green192\\blue192");
  149. this.rtfColor.Add(RtfRichTextBox.RtfColor.Teal, "\\red0\\green128\\blue128");
  150. this.rtfColor.Add(RtfRichTextBox.RtfColor.White, "\\red255\\green255\\blue255");
  151. this.rtfColor.Add(RtfRichTextBox.RtfColor.Yellow, "\\red255\\green255\\blue0");
  152. this.rtfFontFamily.Add(FontFamily.GenericMonospace.Name, "\\fmodern");
  153. this.rtfFontFamily.Add(FontFamily.GenericSansSerif.Name, "\\fswiss");
  154. this.rtfFontFamily.Add(FontFamily.GenericSerif.Name, "\\froman");
  155. this.rtfFontFamily.Add("UNKNOWN", "\\fnil");
  156. using (Graphics graphics = base.CreateGraphics())
  157. {
  158. this.xDpi = graphics.DpiX;
  159. this.yDpi = graphics.DpiY;
  160. }
  161. }
  162. [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
  163. private static extern IntPtr LoadLibrary(string lpFileName);
  164. protected override void OnCreateControl()
  165. {
  166. base.OnCreateControl();
  167. base.SetStyle(ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer | ControlStyles.OptimizedDoubleBuffer, true);
  168. }
  169. public RtfRichTextBox(RtfRichTextBox.RtfColor _textColor) : this()
  170. {
  171. this.textColor = _textColor;
  172. }
  173. public RtfRichTextBox(RtfRichTextBox.RtfColor _textColor, RtfRichTextBox.RtfColor _highlightColor) : this()
  174. {
  175. this.textColor = _textColor;
  176. this.highlightColor = _highlightColor;
  177. }
  178. public void AppendRtf(string _rtf)
  179. {
  180. base.Select(this.TextLength, 0);
  181. base.SelectionColor = Color.Black;
  182. base.SelectedRtf = _rtf;
  183. }
  184. public void AppendTextAsRtf(string _text)
  185. {
  186. this.AppendTextAsRtf(_text, this.Font);
  187. }
  188. public void AppendTextAsRtf(string _text, Font _font)
  189. {
  190. this.AppendTextAsRtf(_text, _font, this.textColor);
  191. }
  192. public void AppendTextAsRtf(string _text, Font _font, RtfRichTextBox.RtfColor _textColor)
  193. {
  194. this.AppendTextAsRtf(_text, _font, _textColor, this.highlightColor);
  195. }
  196. public void AppendTextAsRtf(string _text, Font _font, RtfRichTextBox.RtfColor _textColor, RtfRichTextBox.RtfColor _backColor)
  197. {
  198. base.Select(this.TextLength, 0);
  199. this.InsertTextAsRtf(_text, _font, _textColor, _backColor);
  200. }
  201. private string GetColorTable(RtfRichTextBox.RtfColor _textColor, RtfRichTextBox.RtfColor _backColor)
  202. {
  203. StringBuilder builder = new StringBuilder();
  204. builder.Append("{\\colortbl ;");
  205. builder.Append(this.rtfColor[_textColor]);
  206. builder.Append(";");
  207. builder.Append(this.rtfColor[_backColor]);
  208. builder.Append(";}\\n");
  209. return builder.ToString();
  210. }
  211. private string GetDocumentArea(string _text, Font _font)
  212. {
  213. StringBuilder builder = new StringBuilder();
  214. builder.Append("\\viewkind4\\uc1\\pard\\cf1\\f0\\fs20");
  215. builder.Append("\\highlight2");
  216. if (_font.Bold)
  217. {
  218. builder.Append("\\b");
  219. }
  220. if (_font.Italic)
  221. {
  222. builder.Append("\\i");
  223. }
  224. if (_font.Strikeout)
  225. {
  226. builder.Append("\\strike");
  227. }
  228. if (_font.Underline)
  229. {
  230. builder.Append("\\ul");
  231. }
  232. builder.Append("\\f0");
  233. builder.Append("\\fs");
  234. builder.Append((int)Math.Round((double)(2f * _font.SizeInPoints)));
  235. builder.Append(" ");
  236. builder.Append(_text.Replace("\n", "\\par "));
  237. builder.Append("\\highlight0");
  238. if (_font.Bold)
  239. {
  240. builder.Append("\\b0");
  241. }
  242. if (_font.Italic)
  243. {
  244. builder.Append("\\i0");
  245. }
  246. if (_font.Strikeout)
  247. {
  248. builder.Append("\\strike0");
  249. }
  250. if (_font.Underline)
  251. {
  252. builder.Append("\\ulnone");
  253. }
  254. builder.Append("\\f0");
  255. builder.Append("\\fs20");
  256. builder.Append("\\cf0\\fs17}");
  257. return builder.ToString();
  258. }
  259. private string GetFontTable(Font _font)
  260. {
  261. StringBuilder builder = new StringBuilder();
  262. builder.Append("{\\fonttbl{\\f0");
  263. builder.Append("\\");
  264. if (this.rtfFontFamily.ContainsKey(_font.FontFamily.Name))
  265. {
  266. builder.Append(this.rtfFontFamily[_font.FontFamily.Name]);
  267. }
  268. else
  269. {
  270. builder.Append(this.rtfFontFamily["UNKNOWN"]);
  271. }
  272. builder.Append("\\fcharset134 ");
  273. builder.Append(_font.Name);
  274. builder.Append(";}}");
  275. return builder.ToString();
  276. }
  277. private string GetImagePrefix(Image _image)
  278. {
  279. StringBuilder builder = new StringBuilder();
  280. int picw = (int)Math.Round((double)((float)_image.Width / this.xDpi * 2540f));
  281. int pich = (int)Math.Round((double)((float)_image.Height / this.yDpi * 2540f));
  282. int picwgoal = (int)Math.Round((double)((float)_image.Width / this.xDpi * 1440f));
  283. int pichgoal = (int)Math.Round((double)((float)_image.Height / this.yDpi * 1440f));
  284. builder.Append("{\\pict\\wmetafile8");
  285. builder.Append("\\picw");
  286. builder.Append(picw);
  287. builder.Append("\\pich");
  288. builder.Append(pich);
  289. builder.Append("\\picwgoal");
  290. builder.Append(picwgoal);
  291. builder.Append("\\pichgoal");
  292. builder.Append(pichgoal);
  293. builder.Append(" ");
  294. return builder.ToString();
  295. }
  296. private string GetRtfImage(Image _image)
  297. {
  298. MemoryStream stream = null;
  299. Graphics graphics = null;
  300. Metafile image = null;
  301. string ret;
  302. try
  303. {
  304. stream = new MemoryStream();
  305. Graphics graphics2;
  306. graphics = (graphics2 = base.CreateGraphics());
  307. try
  308. {
  309. IntPtr hdc = graphics.GetHdc();
  310. image = new Metafile(stream, hdc);
  311. graphics.ReleaseHdc(hdc);
  312. }
  313. finally
  314. {
  315. if (graphics2 != null)
  316. {
  317. ((IDisposable)graphics2).Dispose();
  318. }
  319. }
  320. Graphics graphics3;
  321. graphics = (graphics3 = Graphics.FromImage(image));
  322. try
  323. {
  324. graphics.DrawImage(_image, new Rectangle(0, 0, _image.Width, _image.Height));
  325. }
  326. finally
  327. {
  328. if (graphics3 != null)
  329. {
  330. ((IDisposable)graphics3).Dispose();
  331. }
  332. }
  333. IntPtr henhmetafile = image.GetHenhmetafile();
  334. uint num = RtfRichTextBox.GdipEmfToWmfBits(henhmetafile, 0u, null, 1, RtfRichTextBox.EmfToWmfBitsFlags.EmfToWmfBitsFlagsDefault);
  335. byte[] buffer = new byte[num];
  336. RtfRichTextBox.GdipEmfToWmfBits(henhmetafile, num, buffer, 1, RtfRichTextBox.EmfToWmfBitsFlags.EmfToWmfBitsFlagsDefault);
  337. StringBuilder builder = new StringBuilder();
  338. for (int i = 0; i < buffer.Length; i++)
  339. {
  340. builder.Append(string.Format("{0:X2}", buffer[i]));
  341. }
  342. ret = builder.ToString();
  343. }
  344. finally
  345. {
  346. if (graphics != null)
  347. {
  348. graphics.Dispose();
  349. }
  350. if (image != null)
  351. {
  352. image.Dispose();
  353. }
  354. if (stream != null)
  355. {
  356. stream.Close();
  357. }
  358. }
  359. return ret;
  360. }
  361. public void InsertEmotion()
  362. {
  363. if (RtfRichTextBox.hasGdiPlus)
  364. {
  365. foreach (string emoticon in this.emotions.Keys)
  366. {
  367. int start = base.Find(emoticon, RichTextBoxFinds.None);
  368. if (start > -1)
  369. {
  370. base.Select(start, emoticon.Length);
  371. this.InsertImage(this.emotions[emoticon]);
  372. }
  373. }
  374. }
  375. }
  376. public void InsertImage(Image _image)
  377. {
  378. if (RtfRichTextBox.hasGdiPlus)
  379. {
  380. StringBuilder builder = new StringBuilder();
  381. builder.Append("{\\rtf1\\ansi\\ansicpg936\\deff0\\deflang1033\\deflangfe2052");
  382. builder.Append(this.GetFontTable(this.Font));
  383. builder.Append(this.GetImagePrefix(_image));
  384. builder.Append(this.GetRtfImage(_image));
  385. builder.Append("}");
  386. base.SelectedRtf = builder.ToString();
  387. }
  388. }
  389. public void InsertRtf(string _rtf)
  390. {
  391. base.SelectedRtf = _rtf;
  392. }
  393. public void InsertTextAsRtf(string _text)
  394. {
  395. this.InsertTextAsRtf(_text, this.Font);
  396. }
  397. public void InsertTextAsRtf(string _text, Font _font)
  398. {
  399. this.InsertTextAsRtf(_text, _font, this.textColor);
  400. }
  401. public void InsertTextAsRtf(string _text, Font _font, RtfRichTextBox.RtfColor _textColor)
  402. {
  403. this.InsertTextAsRtf(_text, _font, _textColor, this.highlightColor);
  404. }
  405. public void InsertTextAsRtf(string _text, Font _font, RtfRichTextBox.RtfColor _textColor, RtfRichTextBox.RtfColor _backColor)
  406. {
  407. StringBuilder builder = new StringBuilder();
  408. builder.Append("{\\rtf1\\ansi\\ansicpg936\\deff0\\deflang1033\\deflangfe2052");
  409. builder.Append(this.GetFontTable(_font));
  410. builder.Append(this.GetColorTable(_textColor, _backColor));
  411. builder.Append(this.GetDocumentArea(_text, _font));
  412. base.SelectedRtf = builder.ToString();
  413. }
  414. private string RemoveBadChars(string _originalRtf)
  415. {
  416. return _originalRtf.Replace("\0", "");
  417. }
  418. }
  419. }