RichEditOle.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. using LYFZ.OtherExpansion.Win32;
  2. using System;
  3. using System.Drawing;
  4. using System.Drawing.Drawing2D;
  5. using System.Runtime.InteropServices;
  6. using System.Windows.Forms;
  7. namespace LYFZ.OtherExpansion.SkinControl
  8. {
  9. public class RichEditOle
  10. {
  11. private SkinRichTextBox _richEdit;
  12. private IRichEditOle _richEditOle;
  13. public IRichEditOle IRichEditOle
  14. {
  15. get
  16. {
  17. if (this._richEditOle == null)
  18. {
  19. this._richEditOle = NativeMethods.SendMessage(this._richEdit.Handle, 1084, 0);
  20. }
  21. return this._richEditOle;
  22. }
  23. }
  24. public RichEditOle(SkinRichTextBox richEdit)
  25. {
  26. this._richEdit = richEdit;
  27. }
  28. public void InsertControl(Control control)
  29. {
  30. if (control != null)
  31. {
  32. Guid guid = Marshal.GenerateGuidForType(control.GetType());
  33. ILockBytes bytes;
  34. NativeMethods.CreateILockBytesOnHGlobal(IntPtr.Zero, true, out bytes);
  35. IStorage storage;
  36. NativeMethods.StgCreateDocfileOnILockBytes(bytes, 4114u, 0u, out storage);
  37. IOleClientSite site;
  38. this.IRichEditOle.GetClientSite(out site);
  39. REOBJECT lpreobject = new REOBJECT();
  40. lpreobject.cp = this._richEdit.TextLength;
  41. lpreobject.clsid = guid;
  42. lpreobject.pstg = storage;
  43. lpreobject.poleobj = Marshal.GetIUnknownForObject(control);
  44. lpreobject.polesite = site;
  45. lpreobject.dvAspect = 1u;
  46. lpreobject.dwFlags = 2u;
  47. lpreobject.dwUser = 1u;
  48. this.IRichEditOle.InsertObject(lpreobject);
  49. Marshal.ReleaseComObject(bytes);
  50. Marshal.ReleaseComObject(site);
  51. Marshal.ReleaseComObject(storage);
  52. }
  53. }
  54. public bool InsertImageFromFile(string strFilename)
  55. {
  56. ILockBytes bytes;
  57. NativeMethods.CreateILockBytesOnHGlobal(IntPtr.Zero, true, out bytes);
  58. IStorage storage;
  59. NativeMethods.StgCreateDocfileOnILockBytes(bytes, 4114u, 0u, out storage);
  60. IOleClientSite site;
  61. this.IRichEditOle.GetClientSite(out site);
  62. FORMATETC pFormatEtc = default(FORMATETC);
  63. pFormatEtc.cfFormat = (CLIPFORMAT)0;
  64. pFormatEtc.ptd = IntPtr.Zero;
  65. pFormatEtc.dwAspect = DVASPECT.DVASPECT_CONTENT;
  66. pFormatEtc.lindex = -1;
  67. pFormatEtc.tymed = TYMED.TYMED_NULL;
  68. Guid riid = new Guid("{00000112-0000-0000-C000-000000000046}");
  69. Guid rclsid = new Guid("{00000000-0000-0000-0000-000000000000}");
  70. object obj2;
  71. NativeMethods.OleCreateFromFile(ref rclsid, strFilename, ref riid, 1u, ref pFormatEtc, site, storage, out obj2);
  72. if (obj2 == null)
  73. {
  74. Marshal.ReleaseComObject(bytes);
  75. Marshal.ReleaseComObject(site);
  76. Marshal.ReleaseComObject(storage);
  77. return false;
  78. }
  79. IOleObject pUnk = (IOleObject)obj2;
  80. Guid pClsid = default(Guid);
  81. pUnk.GetUserClassID(ref pClsid);
  82. NativeMethods.OleSetContainedObject(pUnk, true);
  83. REOBJECT lpreobject = new REOBJECT();
  84. lpreobject.cp = this._richEdit.TextLength;
  85. lpreobject.clsid = pClsid;
  86. lpreobject.pstg = storage;
  87. lpreobject.poleobj = Marshal.GetIUnknownForObject(pUnk);
  88. lpreobject.polesite = site;
  89. lpreobject.dvAspect = 1u;
  90. lpreobject.dwFlags = 2u;
  91. lpreobject.dwUser = 0u;
  92. this.IRichEditOle.InsertObject(lpreobject);
  93. Marshal.ReleaseComObject(bytes);
  94. Marshal.ReleaseComObject(site);
  95. Marshal.ReleaseComObject(storage);
  96. Marshal.ReleaseComObject(pUnk);
  97. return true;
  98. }
  99. public REOBJECT InsertOleObject(IOleObject oleObject, int index)
  100. {
  101. if (oleObject == null)
  102. {
  103. return null;
  104. }
  105. ILockBytes pLockBytes;
  106. NativeMethods.CreateILockBytesOnHGlobal(IntPtr.Zero, true, out pLockBytes);
  107. IStorage pStorage;
  108. NativeMethods.StgCreateDocfileOnILockBytes(pLockBytes, 4114u, 0u, out pStorage);
  109. IOleClientSite pOleClientSite;
  110. this.IRichEditOle.GetClientSite(out pOleClientSite);
  111. Guid guid = default(Guid);
  112. oleObject.GetUserClassID(ref guid);
  113. NativeMethods.OleSetContainedObject(oleObject, true);
  114. REOBJECT reoObject = new REOBJECT();
  115. reoObject.cp = this._richEdit.TextLength;
  116. reoObject.clsid = guid;
  117. reoObject.pstg = pStorage;
  118. reoObject.poleobj = Marshal.GetIUnknownForObject(oleObject);
  119. reoObject.polesite = pOleClientSite;
  120. reoObject.dvAspect = 1u;
  121. reoObject.dwFlags = 2u;
  122. reoObject.dwUser = (uint)index;
  123. this.IRichEditOle.InsertObject(reoObject);
  124. Marshal.ReleaseComObject(pLockBytes);
  125. Marshal.ReleaseComObject(pOleClientSite);
  126. Marshal.ReleaseComObject(pStorage);
  127. return reoObject;
  128. }
  129. public void UpdateObjects()
  130. {
  131. int objectCount = this.IRichEditOle.GetObjectCount();
  132. for (int i = 0; i < objectCount; i++)
  133. {
  134. REOBJECT lpreobject = new REOBJECT();
  135. this.IRichEditOle.GetObject(i, lpreobject, GETOBJECTOPTIONS.REO_GETOBJ_ALL_INTERFACES);
  136. Point positionFromCharIndex = this._richEdit.GetPositionFromCharIndex(lpreobject.cp);
  137. Rectangle rc = new Rectangle(positionFromCharIndex.X, positionFromCharIndex.Y, 50, 50);
  138. this._richEdit.Invalidate(rc, false);
  139. }
  140. }
  141. public void UpdateObjects(int pos)
  142. {
  143. REOBJECT lpreobject = new REOBJECT();
  144. this.IRichEditOle.GetObject(pos, lpreobject, GETOBJECTOPTIONS.REO_GETOBJ_ALL_INTERFACES);
  145. this.UpdateObjects(lpreobject);
  146. }
  147. public void UpdateObjects(REOBJECT reObj)
  148. {
  149. Point positionFromCharIndex = this._richEdit.GetPositionFromCharIndex(reObj.cp);
  150. Size size = this.GetSizeFromMillimeter(reObj);
  151. Rectangle rc = new Rectangle(positionFromCharIndex, size);
  152. this._richEdit.Invalidate(rc, false);
  153. }
  154. private Size GetSizeFromMillimeter(REOBJECT lpreobject)
  155. {
  156. Size result;
  157. using (Graphics graphics = Graphics.FromHwnd(this._richEdit.Handle))
  158. {
  159. Point[] pts = new Point[1];
  160. graphics.PageUnit = GraphicsUnit.Millimeter;
  161. pts[0] = new Point(lpreobject.sizel.Width / 100, lpreobject.sizel.Height / 100);
  162. graphics.TransformPoints(CoordinateSpace.Device, CoordinateSpace.Page, pts);
  163. result = new Size(pts[0]);
  164. }
  165. return result;
  166. }
  167. }
  168. }