123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Drawing.Imaging;
- using System.IO;
- using System.Runtime.InteropServices;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- [ToolboxBitmap(typeof(RichTextBox))]
- public class RtfRichTextBox : RichTextBox
- {
- [Flags]
- private enum EmfToWmfBitsFlags
- {
- EmfToWmfBitsFlagsDefault = 0,
- EmfToWmfBitsFlagsEmbedEmf = 1,
- EmfToWmfBitsFlagsIncludePlaceable = 2,
- EmfToWmfBitsFlagsNoXORClip = 4
- }
- public enum RtfColor
- {
- Black,
- Maroon,
- Green,
- Olive,
- Navy,
- Purple,
- Teal,
- Gray,
- Silver,
- Red,
- Lime,
- Yellow,
- Blue,
- Fuchsia,
- Aqua,
- White
- }
- private const string RTF_HEADER = "{\\rtf1\\ansi\\ansicpg936\\deff0\\deflang1033\\deflangfe2052";
- private static bool hasGdiPlus;
- private float xDpi;
- private float yDpi;
- private RtfRichTextBox.RtfColor textColor;
- private RtfRichTextBox.RtfColor highlightColor = RtfRichTextBox.RtfColor.White;
- private Dictionary<string, Bitmap> emotions = new Dictionary<string, Bitmap>();
- private Dictionary<RtfRichTextBox.RtfColor, string> rtfColor = new Dictionary<RtfRichTextBox.RtfColor, string>();
- private Dictionary<string, string> rtfFontFamily = new Dictionary<string, string>();
- protected override CreateParams CreateParams
- {
- get
- {
- CreateParams prams = base.CreateParams;
- if (RtfRichTextBox.LoadLibrary("msftedit.dll") != IntPtr.Zero)
- {
- prams.ExStyle |= 32;
- prams.ClassName = "RICHEDIT50W";
- }
- return prams;
- }
- }
- public Dictionary<string, Bitmap> Emotions
- {
- get
- {
- return this.emotions;
- }
- }
- public bool HasEmotion
- {
- get
- {
- if (RtfRichTextBox.hasGdiPlus)
- {
- foreach (string emoticon in this.emotions.Keys)
- {
- if (this.Text.IndexOf(emoticon, StringComparison.CurrentCultureIgnoreCase) > -1)
- {
- return true;
- }
- }
- return false;
- }
- return false;
- }
- }
- public RtfRichTextBox.RtfColor HiglightColor
- {
- get
- {
- return this.highlightColor;
- }
- set
- {
- this.highlightColor = value;
- }
- }
- public new string Rtf
- {
- get
- {
- return this.RemoveBadChars(base.Rtf);
- }
- set
- {
- base.Rtf = value;
- }
- }
- public RtfRichTextBox.RtfColor TextColor
- {
- get
- {
- return this.textColor;
- }
- set
- {
- this.textColor = value;
- }
- }
- [DllImport("gdiplus.dll")]
- private static extern uint GdipEmfToWmfBits(IntPtr _hEmf, uint _bufferSize, byte[] _buffer, int _mappingMode, RtfRichTextBox.EmfToWmfBitsFlags _flags);
- static RtfRichTextBox()
- {
- try
- {
- RtfRichTextBox.GdipEmfToWmfBits(IntPtr.Zero, 0u, null, 0, RtfRichTextBox.EmfToWmfBitsFlags.EmfToWmfBitsFlagsDefault);
- RtfRichTextBox.hasGdiPlus = true;
- }
- catch (Exception)
- {
- }
- }
- public RtfRichTextBox()
- {
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Aqua, "\\red0\\green255\\blue255");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Black, "\\red0\\green0\\blue0");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Blue, "\\red0\\green0\\blue255");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Fuchsia, "\\red255\\green0\\blue255");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Gray, "\\red128\\green128\\blue128");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Green, "\\red0\\green128\\blue0");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Lime, "\\red0\\green255\\blue0");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Maroon, "\\red128\\green0\\blue0");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Navy, "\\red0\\green0\\blue128");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Olive, "\\red128\\green128\\blue0");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Purple, "\\red128\\green0\\blue128");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Red, "\\red255\\green0\\blue0");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Silver, "\\red192\\green192\\blue192");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Teal, "\\red0\\green128\\blue128");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.White, "\\red255\\green255\\blue255");
- this.rtfColor.Add(RtfRichTextBox.RtfColor.Yellow, "\\red255\\green255\\blue0");
- this.rtfFontFamily.Add(FontFamily.GenericMonospace.Name, "\\fmodern");
- this.rtfFontFamily.Add(FontFamily.GenericSansSerif.Name, "\\fswiss");
- this.rtfFontFamily.Add(FontFamily.GenericSerif.Name, "\\froman");
- this.rtfFontFamily.Add("UNKNOWN", "\\fnil");
- using (Graphics graphics = base.CreateGraphics())
- {
- this.xDpi = graphics.DpiX;
- this.yDpi = graphics.DpiY;
- }
- }
- [DllImport("kernel32.dll", CharSet = CharSet.Auto)]
- private static extern IntPtr LoadLibrary(string lpFileName);
- protected override void OnCreateControl()
- {
- base.OnCreateControl();
- base.SetStyle(ControlStyles.ResizeRedraw | ControlStyles.AllPaintingInWmPaint | ControlStyles.DoubleBuffer | ControlStyles.OptimizedDoubleBuffer, true);
- }
- public RtfRichTextBox(RtfRichTextBox.RtfColor _textColor) : this()
- {
- this.textColor = _textColor;
- }
- public RtfRichTextBox(RtfRichTextBox.RtfColor _textColor, RtfRichTextBox.RtfColor _highlightColor) : this()
- {
- this.textColor = _textColor;
- this.highlightColor = _highlightColor;
- }
- public void AppendRtf(string _rtf)
- {
- base.Select(this.TextLength, 0);
- base.SelectionColor = Color.Black;
- base.SelectedRtf = _rtf;
- }
- public void AppendTextAsRtf(string _text)
- {
- this.AppendTextAsRtf(_text, this.Font);
- }
- public void AppendTextAsRtf(string _text, Font _font)
- {
- this.AppendTextAsRtf(_text, _font, this.textColor);
- }
- public void AppendTextAsRtf(string _text, Font _font, RtfRichTextBox.RtfColor _textColor)
- {
- this.AppendTextAsRtf(_text, _font, _textColor, this.highlightColor);
- }
- public void AppendTextAsRtf(string _text, Font _font, RtfRichTextBox.RtfColor _textColor, RtfRichTextBox.RtfColor _backColor)
- {
- base.Select(this.TextLength, 0);
- this.InsertTextAsRtf(_text, _font, _textColor, _backColor);
- }
- private string GetColorTable(RtfRichTextBox.RtfColor _textColor, RtfRichTextBox.RtfColor _backColor)
- {
- StringBuilder builder = new StringBuilder();
- builder.Append("{\\colortbl ;");
- builder.Append(this.rtfColor[_textColor]);
- builder.Append(";");
- builder.Append(this.rtfColor[_backColor]);
- builder.Append(";}\\n");
- return builder.ToString();
- }
- private string GetDocumentArea(string _text, Font _font)
- {
- StringBuilder builder = new StringBuilder();
- builder.Append("\\viewkind4\\uc1\\pard\\cf1\\f0\\fs20");
- builder.Append("\\highlight2");
- if (_font.Bold)
- {
- builder.Append("\\b");
- }
- if (_font.Italic)
- {
- builder.Append("\\i");
- }
- if (_font.Strikeout)
- {
- builder.Append("\\strike");
- }
- if (_font.Underline)
- {
- builder.Append("\\ul");
- }
- builder.Append("\\f0");
- builder.Append("\\fs");
- builder.Append((int)Math.Round((double)(2f * _font.SizeInPoints)));
- builder.Append(" ");
- builder.Append(_text.Replace("\n", "\\par "));
- builder.Append("\\highlight0");
- if (_font.Bold)
- {
- builder.Append("\\b0");
- }
- if (_font.Italic)
- {
- builder.Append("\\i0");
- }
- if (_font.Strikeout)
- {
- builder.Append("\\strike0");
- }
- if (_font.Underline)
- {
- builder.Append("\\ulnone");
- }
- builder.Append("\\f0");
- builder.Append("\\fs20");
- builder.Append("\\cf0\\fs17}");
- return builder.ToString();
- }
- private string GetFontTable(Font _font)
- {
- StringBuilder builder = new StringBuilder();
- builder.Append("{\\fonttbl{\\f0");
- builder.Append("\\");
- if (this.rtfFontFamily.ContainsKey(_font.FontFamily.Name))
- {
- builder.Append(this.rtfFontFamily[_font.FontFamily.Name]);
- }
- else
- {
- builder.Append(this.rtfFontFamily["UNKNOWN"]);
- }
- builder.Append("\\fcharset134 ");
- builder.Append(_font.Name);
- builder.Append(";}}");
- return builder.ToString();
- }
- private string GetImagePrefix(Image _image)
- {
- StringBuilder builder = new StringBuilder();
- int picw = (int)Math.Round((double)((float)_image.Width / this.xDpi * 2540f));
- int pich = (int)Math.Round((double)((float)_image.Height / this.yDpi * 2540f));
- int picwgoal = (int)Math.Round((double)((float)_image.Width / this.xDpi * 1440f));
- int pichgoal = (int)Math.Round((double)((float)_image.Height / this.yDpi * 1440f));
- builder.Append("{\\pict\\wmetafile8");
- builder.Append("\\picw");
- builder.Append(picw);
- builder.Append("\\pich");
- builder.Append(pich);
- builder.Append("\\picwgoal");
- builder.Append(picwgoal);
- builder.Append("\\pichgoal");
- builder.Append(pichgoal);
- builder.Append(" ");
- return builder.ToString();
- }
- private string GetRtfImage(Image _image)
- {
- MemoryStream stream = null;
- Graphics graphics = null;
- Metafile image = null;
- string ret;
- try
- {
- stream = new MemoryStream();
- Graphics graphics2;
- graphics = (graphics2 = base.CreateGraphics());
- try
- {
- IntPtr hdc = graphics.GetHdc();
- image = new Metafile(stream, hdc);
- graphics.ReleaseHdc(hdc);
- }
- finally
- {
- if (graphics2 != null)
- {
- ((IDisposable)graphics2).Dispose();
- }
- }
- Graphics graphics3;
- graphics = (graphics3 = Graphics.FromImage(image));
- try
- {
- graphics.DrawImage(_image, new Rectangle(0, 0, _image.Width, _image.Height));
- }
- finally
- {
- if (graphics3 != null)
- {
- ((IDisposable)graphics3).Dispose();
- }
- }
- IntPtr henhmetafile = image.GetHenhmetafile();
- uint num = RtfRichTextBox.GdipEmfToWmfBits(henhmetafile, 0u, null, 1, RtfRichTextBox.EmfToWmfBitsFlags.EmfToWmfBitsFlagsDefault);
- byte[] buffer = new byte[num];
- RtfRichTextBox.GdipEmfToWmfBits(henhmetafile, num, buffer, 1, RtfRichTextBox.EmfToWmfBitsFlags.EmfToWmfBitsFlagsDefault);
- StringBuilder builder = new StringBuilder();
- for (int i = 0; i < buffer.Length; i++)
- {
- builder.Append(string.Format("{0:X2}", buffer[i]));
- }
- ret = builder.ToString();
- }
- finally
- {
- if (graphics != null)
- {
- graphics.Dispose();
- }
- if (image != null)
- {
- image.Dispose();
- }
- if (stream != null)
- {
- stream.Close();
- }
- }
- return ret;
- }
- public void InsertEmotion()
- {
- if (RtfRichTextBox.hasGdiPlus)
- {
- foreach (string emoticon in this.emotions.Keys)
- {
- int start = base.Find(emoticon, RichTextBoxFinds.None);
- if (start > -1)
- {
- base.Select(start, emoticon.Length);
- this.InsertImage(this.emotions[emoticon]);
- }
- }
- }
- }
- public void InsertImage(Image _image)
- {
- if (RtfRichTextBox.hasGdiPlus)
- {
- StringBuilder builder = new StringBuilder();
- builder.Append("{\\rtf1\\ansi\\ansicpg936\\deff0\\deflang1033\\deflangfe2052");
- builder.Append(this.GetFontTable(this.Font));
- builder.Append(this.GetImagePrefix(_image));
- builder.Append(this.GetRtfImage(_image));
- builder.Append("}");
- base.SelectedRtf = builder.ToString();
- }
- }
- public void InsertRtf(string _rtf)
- {
- base.SelectedRtf = _rtf;
- }
- public void InsertTextAsRtf(string _text)
- {
- this.InsertTextAsRtf(_text, this.Font);
- }
- public void InsertTextAsRtf(string _text, Font _font)
- {
- this.InsertTextAsRtf(_text, _font, this.textColor);
- }
- public void InsertTextAsRtf(string _text, Font _font, RtfRichTextBox.RtfColor _textColor)
- {
- this.InsertTextAsRtf(_text, _font, _textColor, this.highlightColor);
- }
- public void InsertTextAsRtf(string _text, Font _font, RtfRichTextBox.RtfColor _textColor, RtfRichTextBox.RtfColor _backColor)
- {
- StringBuilder builder = new StringBuilder();
- builder.Append("{\\rtf1\\ansi\\ansicpg936\\deff0\\deflang1033\\deflangfe2052");
- builder.Append(this.GetFontTable(_font));
- builder.Append(this.GetColorTable(_textColor, _backColor));
- builder.Append(this.GetDocumentArea(_text, _font));
- base.SelectedRtf = builder.ToString();
- }
- private string RemoveBadChars(string _originalRtf)
- {
- return _originalRtf.Replace("\0", "");
- }
- }
- }
|