ProfessionalToolStripRendererEx.cs 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899
  1. using LYFZ.OtherExpansion.SkinClass;
  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 ProfessionalToolStripRendererEx : ToolStripRenderer
  10. {
  11. private ToolStripColorTable _colorTable;
  12. public ToolStripColorTable ColorTable
  13. {
  14. get
  15. {
  16. return this._colorTable;
  17. }
  18. set
  19. {
  20. this._colorTable = value;
  21. }
  22. }
  23. public ProfessionalToolStripRendererEx()
  24. {
  25. this.ColorTable = new ToolStripColorTable();
  26. }
  27. public ProfessionalToolStripRendererEx(ToolStripColorTable colorTable)
  28. {
  29. this.ColorTable = colorTable;
  30. }
  31. protected override void OnRenderToolStripBackground(ToolStripRenderEventArgs e)
  32. {
  33. ToolStrip toolStrip = e.ToolStrip;
  34. Graphics g = e.Graphics;
  35. Rectangle bounds = e.AffectedBounds;
  36. if (toolStrip is ToolStripDropDown)
  37. {
  38. RegionHelper.CreateRegion(toolStrip, bounds, this.ColorTable.BackRadius, this.ColorTable.RadiusStyle);
  39. using (SolidBrush brush = new SolidBrush(this.ColorTable.Back))
  40. {
  41. g.FillRectangle(brush, bounds);
  42. return;
  43. }
  44. }
  45. LinearGradientMode mode = (toolStrip.Orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  46. RenderHelperStrip.RenderBackgroundInternal(g, bounds, this.ColorTable.Base, this.ColorTable.ItemBorder, this.ColorTable.Back, this.ColorTable.RadiusStyle, this.ColorTable.BackRadius, 0.35f, false, false, mode);
  47. }
  48. protected override void OnRenderImageMargin(ToolStripRenderEventArgs e)
  49. {
  50. ToolStrip toolStrip = e.ToolStrip;
  51. Graphics g = e.Graphics;
  52. Rectangle bounds = e.AffectedBounds;
  53. if (toolStrip is ToolStripDropDown)
  54. {
  55. bool bRightToLeft = toolStrip.RightToLeft == RightToLeft.Yes;
  56. Rectangle imageBackRect = bounds;
  57. Rectangle logoRect = bounds;
  58. if (bRightToLeft)
  59. {
  60. logoRect.X -= 2;
  61. imageBackRect.X = logoRect.X;
  62. }
  63. else
  64. {
  65. logoRect.X += 2;
  66. imageBackRect.X = logoRect.Right;
  67. }
  68. logoRect.Y++;
  69. logoRect.Height -= 2;
  70. using (LinearGradientBrush brush = new LinearGradientBrush(logoRect, this.ColorTable.TitleColor, this.ColorTable.Back, 90f))
  71. {
  72. brush.Blend = new Blend
  73. {
  74. Positions = new float[]
  75. {
  76. 0f,
  77. 0.2f,
  78. 1f
  79. },
  80. Factors = new float[]
  81. {
  82. 0f,
  83. 0.1f,
  84. 0.9f
  85. }
  86. };
  87. logoRect.Y++;
  88. logoRect.Height -= 2;
  89. using (GraphicsPath path = GraphicsPathHelper.CreatePath(logoRect, this.ColorTable.TitleRadius, this.ColorTable.TitleRadiusStyle, false))
  90. {
  91. using (new SmoothingModeGraphics(g))
  92. {
  93. if (this.ColorTable.TitleAnamorphosis)
  94. {
  95. g.FillPath(brush, path);
  96. }
  97. else
  98. {
  99. SolidBrush br = new SolidBrush(this.ColorTable.TitleColor);
  100. g.FillPath(br, path);
  101. }
  102. }
  103. }
  104. return;
  105. }
  106. }
  107. base.OnRenderImageMargin(e);
  108. }
  109. protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e)
  110. {
  111. ToolStrip toolStrip = e.ToolStrip;
  112. Graphics g = e.Graphics;
  113. Rectangle bounds = e.AffectedBounds;
  114. if (toolStrip is ToolStripDropDown)
  115. {
  116. if (this.ColorTable.RadiusStyle == RoundStyle.None)
  117. {
  118. bounds.Width--;
  119. bounds.Height--;
  120. }
  121. using (new SmoothingModeGraphics(g))
  122. {
  123. using (GraphicsPath path = GraphicsPathHelper.CreatePath(bounds, this.ColorTable.BackRadius, this.ColorTable.RadiusStyle, true))
  124. {
  125. using (Pen pen = new Pen(this.ColorTable.DropDownImageSeparator))
  126. {
  127. path.Widen(pen);
  128. g.DrawPath(pen, path);
  129. }
  130. }
  131. }
  132. if (toolStrip is ToolStripOverflow)
  133. {
  134. return;
  135. }
  136. bounds.Inflate(-1, -1);
  137. using (GraphicsPath innerPath = GraphicsPathHelper.CreatePath(bounds, this.ColorTable.BackRadius, this.ColorTable.RadiusStyle, true))
  138. {
  139. using (Pen pen2 = new Pen(this.ColorTable.Back))
  140. {
  141. g.DrawPath(pen2, innerPath);
  142. }
  143. return;
  144. }
  145. }
  146. base.OnRenderToolStripBorder(e);
  147. }
  148. protected override void OnRenderMenuItemBackground(ToolStripItemRenderEventArgs e)
  149. {
  150. ToolStrip toolStrip = e.ToolStrip;
  151. ToolStripItem item = e.Item;
  152. if (!item.Enabled)
  153. {
  154. return;
  155. }
  156. Graphics g = e.Graphics;
  157. Rectangle rect = new Rectangle(Point.Empty, e.Item.Size);
  158. if (toolStrip is MenuStrip)
  159. {
  160. LinearGradientMode mode = (toolStrip.Orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  161. if (item.Selected)
  162. {
  163. RenderHelperStrip.RenderBackgroundInternal(g, rect, this.ColorTable.ItemHover, this.ColorTable.ItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, true, true, mode);
  164. return;
  165. }
  166. if (item.Pressed)
  167. {
  168. RenderHelperStrip.RenderBackgroundInternal(g, rect, this.ColorTable.ItemPressed, this.ColorTable.ItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, true, true, mode);
  169. return;
  170. }
  171. base.OnRenderMenuItemBackground(e);
  172. return;
  173. }
  174. else
  175. {
  176. if (!(toolStrip is ToolStripDropDown))
  177. {
  178. base.OnRenderMenuItemBackground(e);
  179. return;
  180. }
  181. rect = new Rectangle(new Point(-2, 0), new Size(e.Item.Size.Width + 5, e.Item.Size.Height + 1));
  182. if (item.RightToLeft == RightToLeft.Yes)
  183. {
  184. rect.X += 4;
  185. }
  186. else
  187. {
  188. rect.X += 4;
  189. }
  190. rect.Width -= 8;
  191. rect.Height--;
  192. if (item.Selected)
  193. {
  194. RenderHelperStrip.RenderBackgroundInternal(g, rect, this.ColorTable.ItemHover, this.ColorTable.ItemBorder, this.ColorTable.Back, this.ColorTable.ItemRadiusStyle, this.ColorTable.ItemRadius, this.ColorTable.ItemBorderShow, this.ColorTable.ItemAnamorphosis, LinearGradientMode.Vertical);
  195. return;
  196. }
  197. base.OnRenderMenuItemBackground(e);
  198. return;
  199. }
  200. }
  201. protected override void OnRenderItemImage(ToolStripItemImageRenderEventArgs e)
  202. {
  203. ToolStrip toolStrip = e.ToolStrip;
  204. Graphics g = e.Graphics;
  205. if (toolStrip is ToolStripDropDown && e.Item is ToolStripMenuItem)
  206. {
  207. ToolStripMenuItem item = (ToolStripMenuItem)e.Item;
  208. if (item.Checked)
  209. {
  210. return;
  211. }
  212. Rectangle rect = e.ImageRectangle;
  213. if (e.Item.RightToLeft == RightToLeft.Yes)
  214. {
  215. rect.X -= 2;
  216. }
  217. else
  218. {
  219. rect.X += 2;
  220. }
  221. using (new InterpolationModeGraphics(g))
  222. {
  223. ToolStripItemImageRenderEventArgs ne = new ToolStripItemImageRenderEventArgs(g, e.Item, e.Image, rect);
  224. base.OnRenderItemImage(ne);
  225. return;
  226. }
  227. }
  228. base.OnRenderItemImage(e);
  229. }
  230. protected override void OnRenderItemText(ToolStripItemTextRenderEventArgs e)
  231. {
  232. ToolStrip toolStrip = e.ToolStrip;
  233. ToolStripItem item = e.Item;
  234. if (toolStrip is ToolStripDropDown)
  235. {
  236. e.TextColor = (item.Selected ? this.ColorTable.HoverFore : this.ColorTable.Fore);
  237. }
  238. else
  239. {
  240. e.TextColor = (item.Selected ? this.ColorTable.BaseHoverFore : this.ColorTable.BaseFore);
  241. }
  242. if (toolStrip is ToolStripDropDown && e.Item is ToolStripMenuItem)
  243. {
  244. Rectangle rect = e.TextRectangle;
  245. e.TextRectangle = rect;
  246. }
  247. if (!(toolStrip is ToolStripDropDown) && this.ColorTable.BaseForeAnamorphosis && !string.IsNullOrEmpty(e.Item.Text))
  248. {
  249. Graphics g = e.Graphics;
  250. Image img = UpdateForm.ImageLightEffect(e.Item.Text, e.Item.Font, e.TextColor, this.ColorTable.BaseForeAnamorphosisColor, this.ColorTable.BaseForeAnamorphosisBorder);
  251. g.DrawImage(img, e.TextRectangle.Left - this.ColorTable.BaseForeAnamorphosisBorder / 2, e.TextRectangle.Top - this.ColorTable.BaseForeAnamorphosisBorder / 2);
  252. return;
  253. }
  254. base.OnRenderItemText(e);
  255. }
  256. protected override void OnRenderItemCheck(ToolStripItemImageRenderEventArgs e)
  257. {
  258. ToolStrip toolStrip = e.ToolStrip;
  259. Graphics g = e.Graphics;
  260. if (toolStrip is ToolStripDropDown && e.Item is ToolStripMenuItem)
  261. {
  262. Rectangle rect = e.ImageRectangle;
  263. if (e.Item.RightToLeft == RightToLeft.Yes)
  264. {
  265. rect.X -= 2;
  266. }
  267. else
  268. {
  269. rect.X += 2;
  270. }
  271. rect.Width = 13;
  272. rect.Y++;
  273. rect.Height -= 3;
  274. using (new SmoothingModeGraphics(g))
  275. {
  276. using (GraphicsPath path = new GraphicsPath())
  277. {
  278. path.AddRectangle(rect);
  279. using (PathGradientBrush brush = new PathGradientBrush(path))
  280. {
  281. brush.CenterColor = Color.White;
  282. brush.SurroundColors = new Color[]
  283. {
  284. ControlPaint.Light(this.ColorTable.Back)
  285. };
  286. brush.Blend = new Blend
  287. {
  288. Positions = new float[]
  289. {
  290. 0f,
  291. 0.3f,
  292. 1f
  293. },
  294. Factors = new float[]
  295. {
  296. 0f,
  297. 0.5f,
  298. 1f
  299. }
  300. };
  301. g.FillRectangle(brush, rect);
  302. }
  303. }
  304. using (Pen pen = new Pen(ControlPaint.Light(this.ColorTable.Back)))
  305. {
  306. g.DrawRectangle(pen, rect);
  307. }
  308. ControlPaintEx.DrawCheckedFlag(g, rect, this.ColorTable.Fore);
  309. return;
  310. }
  311. }
  312. base.OnRenderItemCheck(e);
  313. }
  314. protected override void OnRenderArrow(ToolStripArrowRenderEventArgs e)
  315. {
  316. if (e.Item.Enabled)
  317. {
  318. e.ArrowColor = this.ColorTable.Arrow;
  319. }
  320. ToolStrip toolStrip = e.Item.Owner;
  321. if (toolStrip is ToolStripDropDown && e.Item is ToolStripMenuItem)
  322. {
  323. Rectangle rect = e.ArrowRectangle;
  324. e.ArrowRectangle = rect;
  325. }
  326. base.OnRenderArrow(e);
  327. }
  328. protected override void OnRenderSeparator(ToolStripSeparatorRenderEventArgs e)
  329. {
  330. ToolStrip toolStrip = e.ToolStrip;
  331. Rectangle rect = e.Item.ContentRectangle;
  332. Graphics g = e.Graphics;
  333. if (toolStrip is ToolStripDropDown)
  334. {
  335. if (e.Item.RightToLeft != RightToLeft.Yes)
  336. {
  337. rect.X += 26;
  338. }
  339. rect.Width -= 28;
  340. }
  341. this.RenderSeparatorLine(g, rect, this.ColorTable.BaseItemSplitter, this.ColorTable.Back, SystemColors.ControlLightLight, e.Vertical);
  342. }
  343. protected override void OnRenderButtonBackground(ToolStripItemRenderEventArgs e)
  344. {
  345. ToolStrip toolStrip = e.ToolStrip;
  346. ToolStripButton item = e.Item as ToolStripButton;
  347. Graphics g = e.Graphics;
  348. if (item != null)
  349. {
  350. LinearGradientMode mode = (toolStrip.Orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  351. SmoothingModeGraphics sg = new SmoothingModeGraphics(g);
  352. Rectangle bounds = new Rectangle(Point.Empty, item.Size);
  353. if (item.BackgroundImage != null)
  354. {
  355. Rectangle clipRect = item.Selected ? item.ContentRectangle : bounds;
  356. ControlPaintEx.DrawBackgroundImage(g, item.BackgroundImage, this.ColorTable.Back, item.BackgroundImageLayout, bounds, clipRect);
  357. }
  358. if (item.CheckState == CheckState.Unchecked)
  359. {
  360. if (item.Selected)
  361. {
  362. Bitmap btm = item.Pressed ? ((Bitmap)this.ColorTable.BaseItemDown) : ((Bitmap)this.ColorTable.BaseItemMouse);
  363. if (btm != null)
  364. {
  365. LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, btm, bounds, Rectangle.FromLTRB(this.ColorTable.BackRectangle.X, this.ColorTable.BackRectangle.Y, this.ColorTable.BackRectangle.Width, this.ColorTable.BackRectangle.Height), 1, 1);
  366. goto IL_302;
  367. }
  368. Color color = this.ColorTable.BaseItemHover;
  369. if (item.Pressed)
  370. {
  371. color = this.ColorTable.BaseItemPressed;
  372. }
  373. RenderHelperStrip.RenderBackgroundInternal(g, bounds, color, this.ColorTable.BaseItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, this.ColorTable.BaseItemBorderShow, this.ColorTable.BaseItemAnamorphosis, mode);
  374. goto IL_302;
  375. }
  376. else
  377. {
  378. if (!(toolStrip is ToolStripOverflow))
  379. {
  380. goto IL_302;
  381. }
  382. using (Brush brush = new SolidBrush(this.ColorTable.ItemHover))
  383. {
  384. g.FillRectangle(brush, bounds);
  385. goto IL_302;
  386. }
  387. }
  388. }
  389. Bitmap btm2 = (Bitmap)this.ColorTable.BaseItemMouse;
  390. Color color2 = ControlPaint.Light(this.ColorTable.ItemHover);
  391. if (item.Selected)
  392. {
  393. color2 = this.ColorTable.ItemHover;
  394. btm2 = (Bitmap)this.ColorTable.BaseItemMouse;
  395. }
  396. if (item.Pressed)
  397. {
  398. color2 = this.ColorTable.ItemPressed;
  399. btm2 = (Bitmap)this.ColorTable.BaseItemDown;
  400. }
  401. if (btm2 == null)
  402. {
  403. RenderHelperStrip.RenderBackgroundInternal(g, bounds, color2, this.ColorTable.BaseItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, this.ColorTable.BaseItemBorderShow, this.ColorTable.BaseItemAnamorphosis, mode);
  404. }
  405. else
  406. {
  407. LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, btm2, bounds, Rectangle.FromLTRB(this.ColorTable.BackRectangle.X, this.ColorTable.BackRectangle.Y, this.ColorTable.BackRectangle.Width, this.ColorTable.BackRectangle.Height), 1, 1);
  408. }
  409. IL_302:
  410. sg.Dispose();
  411. }
  412. }
  413. protected override void OnRenderDropDownButtonBackground(ToolStripItemRenderEventArgs e)
  414. {
  415. ToolStrip toolStrip = e.ToolStrip;
  416. ToolStripDropDownItem item = e.Item as ToolStripDropDownItem;
  417. if (item != null)
  418. {
  419. LinearGradientMode mode = (toolStrip.Orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  420. Graphics g = e.Graphics;
  421. SmoothingModeGraphics sg = new SmoothingModeGraphics(g);
  422. Rectangle bounds = new Rectangle(Point.Empty, item.Size);
  423. if (item.Pressed && item.HasDropDownItems)
  424. {
  425. if (this.ColorTable.BaseItemDown != null)
  426. {
  427. LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, (Bitmap)this.ColorTable.BaseItemDown, bounds, Rectangle.FromLTRB(this.ColorTable.BackRectangle.X, this.ColorTable.BackRectangle.Y, this.ColorTable.BackRectangle.Width, this.ColorTable.BackRectangle.Height), 1, 1);
  428. }
  429. else
  430. {
  431. RenderHelperStrip.RenderBackgroundInternal(g, bounds, this.ColorTable.BaseItemPressed, this.ColorTable.BaseItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, this.ColorTable.BaseItemBorderShow, this.ColorTable.BaseItemAnamorphosis, mode);
  432. }
  433. }
  434. else
  435. {
  436. if (item.Selected)
  437. {
  438. if (this.ColorTable.BaseItemDown != null)
  439. {
  440. LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, (Bitmap)this.ColorTable.BaseItemMouse, bounds, Rectangle.FromLTRB(this.ColorTable.BackRectangle.X, this.ColorTable.BackRectangle.Y, this.ColorTable.BackRectangle.Width, this.ColorTable.BackRectangle.Height), 1, 1);
  441. }
  442. else
  443. {
  444. RenderHelperStrip.RenderBackgroundInternal(g, bounds, this.ColorTable.BaseItemHover, this.ColorTable.BaseItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, this.ColorTable.BaseItemBorderShow, this.ColorTable.BaseItemAnamorphosis, mode);
  445. }
  446. }
  447. else
  448. {
  449. if (toolStrip is ToolStripOverflow)
  450. {
  451. using (Brush brush = new SolidBrush(this.ColorTable.Back))
  452. {
  453. g.FillRectangle(brush, bounds);
  454. goto IL_256;
  455. }
  456. }
  457. base.OnRenderDropDownButtonBackground(e);
  458. }
  459. }
  460. IL_256:
  461. sg.Dispose();
  462. }
  463. }
  464. protected override void OnRenderSplitButtonBackground(ToolStripItemRenderEventArgs e)
  465. {
  466. ToolStrip toolStrip = e.ToolStrip;
  467. ToolStripSplitButton item = e.Item as ToolStripSplitButton;
  468. if (item == null)
  469. {
  470. base.OnRenderSplitButtonBackground(e);
  471. return;
  472. }
  473. Graphics g = e.Graphics;
  474. LinearGradientMode mode = (toolStrip.Orientation == Orientation.Horizontal) ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  475. Rectangle bounds = new Rectangle(Point.Empty, item.Size);
  476. new SmoothingModeGraphics(g);
  477. Color arrowColor = toolStrip.Enabled ? this.ColorTable.Fore : SystemColors.ControlDark;
  478. if (item.BackgroundImage != null)
  479. {
  480. Rectangle clipRect = item.Selected ? item.ContentRectangle : bounds;
  481. ControlPaintEx.DrawBackgroundImage(g, item.BackgroundImage, this.ColorTable.Back, item.BackgroundImageLayout, bounds, clipRect);
  482. }
  483. if (item.ButtonPressed)
  484. {
  485. if (this.ColorTable.BaseItemDown != null)
  486. {
  487. LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, (Bitmap)this.ColorTable.BaseItemDown, bounds, Rectangle.FromLTRB(this.ColorTable.BackRectangle.X, this.ColorTable.BackRectangle.Y, this.ColorTable.BackRectangle.Width, this.ColorTable.BackRectangle.Height), 1, 1);
  488. }
  489. else
  490. {
  491. Rectangle buttonBounds = item.ButtonBounds;
  492. Padding padding = (item.RightToLeft == RightToLeft.Yes) ? new Padding(0, 1, 1, 1) : new Padding(1, 1, 0, 1);
  493. buttonBounds = LayoutUtils.DeflateRect(buttonBounds, padding);
  494. RenderHelperStrip.RenderBackgroundInternal(g, bounds, this.ColorTable.BaseItemHover, this.ColorTable.BaseItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, this.ColorTable.BaseItemBorderShow, this.ColorTable.BaseItemAnamorphosis, mode);
  495. buttonBounds.Inflate(-1, -1);
  496. g.SetClip(buttonBounds);
  497. RenderHelperStrip.RenderBackgroundInternal(g, buttonBounds, this.ColorTable.BaseItemPressed, this.ColorTable.BaseItemBorder, this.ColorTable.Back, RoundStyle.Left, false, true, mode);
  498. g.ResetClip();
  499. using (Pen pen = new Pen(this.ColorTable.BaseItemSplitter))
  500. {
  501. g.DrawLine(pen, item.SplitterBounds.Left, item.SplitterBounds.Top, item.SplitterBounds.Left, item.SplitterBounds.Bottom);
  502. }
  503. }
  504. base.DrawArrow(new ToolStripArrowRenderEventArgs(g, item, item.DropDownButtonBounds, arrowColor, ArrowDirection.Down));
  505. return;
  506. }
  507. if (item.Pressed || item.DropDownButtonPressed)
  508. {
  509. if (this.ColorTable.BaseItemDown != null)
  510. {
  511. LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, (Bitmap)this.ColorTable.BaseItemDown, bounds, Rectangle.FromLTRB(this.ColorTable.BackRectangle.X, this.ColorTable.BackRectangle.Y, this.ColorTable.BackRectangle.Width, this.ColorTable.BackRectangle.Height), 1, 1);
  512. }
  513. else
  514. {
  515. RenderHelperStrip.RenderBackgroundInternal(g, bounds, this.ColorTable.BaseItemPressed, this.ColorTable.BaseItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, this.ColorTable.BaseItemBorderShow, this.ColorTable.BaseItemAnamorphosis, mode);
  516. }
  517. base.DrawArrow(new ToolStripArrowRenderEventArgs(g, item, item.DropDownButtonBounds, arrowColor, ArrowDirection.Down));
  518. return;
  519. }
  520. if (item.Selected)
  521. {
  522. if (this.ColorTable.BaseItemMouse != null)
  523. {
  524. LYFZ.OtherExpansion.SkinClass.ImageDrawRect.DrawRect(g, (Bitmap)this.ColorTable.BaseItemMouse, bounds, Rectangle.FromLTRB(this.ColorTable.BackRectangle.X, this.ColorTable.BackRectangle.Y, this.ColorTable.BackRectangle.Width, this.ColorTable.BackRectangle.Height), 1, 1);
  525. }
  526. else
  527. {
  528. RenderHelperStrip.RenderBackgroundInternal(g, bounds, this.ColorTable.BaseItemHover, this.ColorTable.BaseItemBorder, this.ColorTable.Back, this.ColorTable.BaseItemRadiusStyle, this.ColorTable.BaseItemRadius, this.ColorTable.BaseItemBorderShow, this.ColorTable.BaseItemAnamorphosis, mode);
  529. using (Pen pen2 = new Pen(this.ColorTable.BaseItemSplitter))
  530. {
  531. g.DrawLine(pen2, item.SplitterBounds.Left, item.SplitterBounds.Top, item.SplitterBounds.Left, item.SplitterBounds.Bottom);
  532. }
  533. }
  534. base.DrawArrow(new ToolStripArrowRenderEventArgs(g, item, item.DropDownButtonBounds, arrowColor, ArrowDirection.Down));
  535. return;
  536. }
  537. base.DrawArrow(new ToolStripArrowRenderEventArgs(g, item, item.DropDownButtonBounds, arrowColor, ArrowDirection.Down));
  538. }
  539. protected override void OnRenderOverflowButtonBackground(ToolStripItemRenderEventArgs e)
  540. {
  541. ToolStripItem item = e.Item;
  542. ToolStrip toolStrip = e.ToolStrip;
  543. Graphics g = e.Graphics;
  544. bool rightToLeft = item.RightToLeft == RightToLeft.Yes;
  545. new SmoothingModeGraphics(g);
  546. this.RenderOverflowBackground(e, rightToLeft);
  547. bool bHorizontal = toolStrip.Orientation == Orientation.Horizontal;
  548. Rectangle empty = Rectangle.Empty;
  549. if (rightToLeft)
  550. {
  551. empty = new Rectangle(0, item.Height - 8, 10, 5);
  552. }
  553. else
  554. {
  555. empty = new Rectangle(item.Width - 12, item.Height - 8, 10, 5);
  556. }
  557. ArrowDirection direction = bHorizontal ? ArrowDirection.Down : ArrowDirection.Right;
  558. int x = (rightToLeft && bHorizontal) ? -1 : 1;
  559. empty.Offset(x, 1);
  560. Color arrowColor = toolStrip.Enabled ? this.ColorTable.Fore : SystemColors.ControlDark;
  561. using (Brush brush = new SolidBrush(arrowColor))
  562. {
  563. RenderHelperStrip.RenderArrowInternal(g, empty, direction, brush);
  564. }
  565. if (bHorizontal)
  566. {
  567. using (Pen pen = new Pen(arrowColor))
  568. {
  569. g.DrawLine(pen, empty.Right - 8, empty.Y - 2, empty.Right - 2, empty.Y - 2);
  570. g.DrawLine(pen, empty.Right - 8, empty.Y - 1, empty.Right - 2, empty.Y - 1);
  571. return;
  572. }
  573. }
  574. using (Pen pen2 = new Pen(arrowColor))
  575. {
  576. g.DrawLine(pen2, empty.X, empty.Y, empty.X, empty.Bottom - 1);
  577. g.DrawLine(pen2, empty.X, empty.Y + 1, empty.X, empty.Bottom);
  578. }
  579. }
  580. protected override void OnRenderGrip(ToolStripGripRenderEventArgs e)
  581. {
  582. if (e.GripStyle == ToolStripGripStyle.Visible)
  583. {
  584. Rectangle bounds = e.GripBounds;
  585. bool vert = e.GripDisplayStyle == ToolStripGripDisplayStyle.Vertical;
  586. ToolStrip toolStrip = e.ToolStrip;
  587. Graphics g = e.Graphics;
  588. if (vert)
  589. {
  590. bounds.X = e.AffectedBounds.X;
  591. bounds.Width = e.AffectedBounds.Width;
  592. if (toolStrip is MenuStrip)
  593. {
  594. if (e.AffectedBounds.Height > e.AffectedBounds.Width)
  595. {
  596. vert = false;
  597. bounds.Y = e.AffectedBounds.Y;
  598. }
  599. else
  600. {
  601. toolStrip.GripMargin = new Padding(0, 2, 0, 2);
  602. bounds.Y = e.AffectedBounds.Y;
  603. bounds.Height = e.AffectedBounds.Height;
  604. }
  605. }
  606. else
  607. {
  608. toolStrip.GripMargin = new Padding(2, 2, 4, 2);
  609. bounds.X++;
  610. bounds.Width++;
  611. }
  612. }
  613. else
  614. {
  615. bounds.Y = e.AffectedBounds.Y;
  616. bounds.Height = e.AffectedBounds.Height;
  617. }
  618. this.DrawDottedGrip(g, bounds, vert, false, this.ColorTable.Back, ControlPaint.Dark(this.ColorTable.Base, 0.3f));
  619. }
  620. }
  621. protected override void OnRenderStatusStripSizingGrip(ToolStripRenderEventArgs e)
  622. {
  623. this.DrawSolidStatusGrip(e.Graphics, e.AffectedBounds, this.ColorTable.Back, ControlPaint.Dark(this.ColorTable.Base, 0.3f));
  624. }
  625. public void RenderSeparatorLine(Graphics g, Rectangle rect, Color baseColor, Color backColor, Color shadowColor, bool vertical)
  626. {
  627. if (vertical)
  628. {
  629. rect.Y += 2;
  630. rect.Height -= 4;
  631. using (LinearGradientBrush brush = new LinearGradientBrush(rect, baseColor, backColor, LinearGradientMode.Vertical))
  632. {
  633. using (Pen pen = new Pen(brush))
  634. {
  635. g.DrawLine(pen, rect.X, rect.Y, rect.X, rect.Bottom);
  636. }
  637. return;
  638. }
  639. }
  640. using (LinearGradientBrush brush2 = new LinearGradientBrush(rect, baseColor, backColor, 180f))
  641. {
  642. brush2.Blend = new Blend
  643. {
  644. Positions = new float[]
  645. {
  646. 0f,
  647. 0.2f,
  648. 0.5f,
  649. 0.8f,
  650. 1f
  651. },
  652. Factors = new float[]
  653. {
  654. 1f,
  655. 0.3f,
  656. 0f,
  657. 0.3f,
  658. 1f
  659. }
  660. };
  661. using (Pen pen2 = new Pen(brush2))
  662. {
  663. g.DrawLine(pen2, rect.X, rect.Y, rect.Right, rect.Y);
  664. brush2.LinearColors = new Color[]
  665. {
  666. shadowColor,
  667. backColor
  668. };
  669. pen2.Brush = brush2;
  670. g.DrawLine(pen2, rect.X, rect.Y + 1, rect.Right, rect.Y + 1);
  671. }
  672. }
  673. }
  674. public void RenderOverflowBackground(ToolStripItemRenderEventArgs e, bool rightToLeft)
  675. {
  676. Color color = Color.Empty;
  677. Graphics g = e.Graphics;
  678. ToolStrip toolStrip = e.ToolStrip;
  679. ToolStripOverflowButton item = e.Item as ToolStripOverflowButton;
  680. Rectangle bounds = new Rectangle(Point.Empty, item.Size);
  681. Rectangle withinBounds = bounds;
  682. bool bParentIsMenuStrip = !(item.GetCurrentParent() is MenuStrip);
  683. bool bHorizontal = toolStrip.Orientation == Orientation.Horizontal;
  684. if (bHorizontal)
  685. {
  686. bounds.X += bounds.Width - 12 + 1;
  687. bounds.Width = 12;
  688. if (rightToLeft)
  689. {
  690. bounds = LayoutUtils.RTLTranslate(bounds, withinBounds);
  691. }
  692. }
  693. else
  694. {
  695. bounds.Y = bounds.Height - 12 + 1;
  696. bounds.Height = 12;
  697. }
  698. if (item.Pressed)
  699. {
  700. color = this.ColorTable.ItemPressed;
  701. }
  702. else
  703. {
  704. if (item.Selected)
  705. {
  706. color = this.ColorTable.ItemHover;
  707. }
  708. else
  709. {
  710. color = this.ColorTable.Base;
  711. }
  712. }
  713. if (bParentIsMenuStrip)
  714. {
  715. using (Pen pen = new Pen(this.ColorTable.Base))
  716. {
  717. Point point = new Point(bounds.Left - 1, bounds.Height - 2);
  718. Point point2 = new Point(bounds.Left, bounds.Height - 2);
  719. if (rightToLeft)
  720. {
  721. point.X = bounds.Right + 1;
  722. point2.X = bounds.Right;
  723. }
  724. g.DrawLine(pen, point, point2);
  725. }
  726. }
  727. LinearGradientMode mode = bHorizontal ? LinearGradientMode.Vertical : LinearGradientMode.Horizontal;
  728. RenderHelperStrip.RenderBackgroundInternal(g, bounds, color, this.ColorTable.ItemBorder, this.ColorTable.Back, RoundStyle.None, 0, 0.35f, false, false, mode);
  729. if (bParentIsMenuStrip)
  730. {
  731. using (Brush brush = new SolidBrush(this.ColorTable.Base))
  732. {
  733. if (bHorizontal)
  734. {
  735. Point point3 = new Point(bounds.X - 2, 0);
  736. Point point4 = new Point(bounds.X - 1, 1);
  737. if (rightToLeft)
  738. {
  739. point3.X = bounds.Right + 1;
  740. point4.X = bounds.Right;
  741. }
  742. g.FillRectangle(brush, point3.X, point3.Y, 1, 1);
  743. g.FillRectangle(brush, point4.X, point4.Y, 1, 1);
  744. }
  745. else
  746. {
  747. g.FillRectangle(brush, bounds.Width - 3, bounds.Top - 1, 1, 1);
  748. g.FillRectangle(brush, bounds.Width - 2, bounds.Top - 2, 1, 1);
  749. }
  750. }
  751. using (Brush brush2 = new SolidBrush(this.ColorTable.Base))
  752. {
  753. if (bHorizontal)
  754. {
  755. Rectangle rect = new Rectangle(bounds.X - 1, 0, 1, 1);
  756. if (rightToLeft)
  757. {
  758. rect.X = bounds.Right;
  759. }
  760. g.FillRectangle(brush2, rect);
  761. }
  762. else
  763. {
  764. g.FillRectangle(brush2, bounds.X, bounds.Top - 1, 1, 1);
  765. }
  766. }
  767. }
  768. }
  769. private void DrawDottedGrip(Graphics g, Rectangle bounds, bool vertical, bool largeDot, Color innerColor, Color outerColor)
  770. {
  771. bounds.Height -= 3;
  772. Point position = new Point(bounds.X, bounds.Y);
  773. Rectangle posRect = new Rectangle(0, 0, 2, 2);
  774. using (new SmoothingModeGraphics(g))
  775. {
  776. if (vertical)
  777. {
  778. int sep = bounds.Height;
  779. position.Y += 8;
  780. int i = 0;
  781. while (position.Y > 4)
  782. {
  783. position.Y = sep - (2 + i);
  784. if (largeDot)
  785. {
  786. posRect.Location = position;
  787. this.DrawCircle(g, posRect, outerColor, innerColor);
  788. }
  789. else
  790. {
  791. int innerWin32Corlor = ColorTranslator.ToWin32(innerColor);
  792. int outerWin32Corlor = ColorTranslator.ToWin32(outerColor);
  793. IntPtr hdc = g.GetHdc();
  794. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X, position.Y, innerWin32Corlor);
  795. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X + 1, position.Y, outerWin32Corlor);
  796. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X, position.Y + 1, outerWin32Corlor);
  797. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X + 3, position.Y, innerWin32Corlor);
  798. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X + 4, position.Y, outerWin32Corlor);
  799. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X + 3, position.Y + 1, outerWin32Corlor);
  800. g.ReleaseHdc(hdc);
  801. }
  802. i += 4;
  803. }
  804. }
  805. else
  806. {
  807. bounds.Inflate(-2, 0);
  808. int sep = bounds.Width;
  809. position.X += 2;
  810. int j = 1;
  811. while (position.X > 0)
  812. {
  813. position.X = sep - (2 + j);
  814. if (largeDot)
  815. {
  816. posRect.Location = position;
  817. this.DrawCircle(g, posRect, outerColor, innerColor);
  818. }
  819. else
  820. {
  821. int innerWin32Corlor2 = ColorTranslator.ToWin32(innerColor);
  822. int outerWin32Corlor2 = ColorTranslator.ToWin32(outerColor);
  823. IntPtr hdc = g.GetHdc();
  824. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X, position.Y, innerWin32Corlor2);
  825. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X + 1, position.Y, outerWin32Corlor2);
  826. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X, position.Y + 1, outerWin32Corlor2);
  827. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X + 3, position.Y, innerWin32Corlor2);
  828. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X + 4, position.Y, outerWin32Corlor2);
  829. ProfessionalToolStripRendererEx.SetPixel(hdc, position.X + 3, position.Y + 1, outerWin32Corlor2);
  830. g.ReleaseHdc(hdc);
  831. }
  832. j += 4;
  833. }
  834. }
  835. }
  836. }
  837. private void DrawCircle(Graphics g, Rectangle bounds, Color borderColor, Color fillColor)
  838. {
  839. using (GraphicsPath circlePath = new GraphicsPath())
  840. {
  841. circlePath.AddEllipse(bounds);
  842. circlePath.CloseFigure();
  843. using (Pen borderPen = new Pen(borderColor))
  844. {
  845. g.DrawPath(borderPen, circlePath);
  846. }
  847. using (Brush backBrush = new SolidBrush(fillColor))
  848. {
  849. g.FillPath(backBrush, circlePath);
  850. }
  851. }
  852. }
  853. private void DrawDottedStatusGrip(Graphics g, Rectangle bounds, Color innerColor, Color outerColor)
  854. {
  855. Rectangle shape = new Rectangle(0, 0, 2, 2);
  856. shape.X = bounds.Width - 17;
  857. shape.Y = bounds.Height - 8;
  858. using (new SmoothingModeGraphics(g))
  859. {
  860. this.DrawCircle(g, shape, outerColor, innerColor);
  861. shape.X = bounds.Width - 12;
  862. this.DrawCircle(g, shape, outerColor, innerColor);
  863. shape.X = bounds.Width - 7;
  864. this.DrawCircle(g, shape, outerColor, innerColor);
  865. shape.Y = bounds.Height - 13;
  866. this.DrawCircle(g, shape, outerColor, innerColor);
  867. shape.Y = bounds.Height - 18;
  868. this.DrawCircle(g, shape, outerColor, innerColor);
  869. shape.Y = bounds.Height - 13;
  870. shape.X = bounds.Width - 12;
  871. this.DrawCircle(g, shape, outerColor, innerColor);
  872. }
  873. }
  874. private void DrawSolidStatusGrip(Graphics g, Rectangle bounds, Color innerColor, Color outerColor)
  875. {
  876. using (new SmoothingModeGraphics(g))
  877. {
  878. using (Pen innerPen = new Pen(innerColor))
  879. {
  880. using (Pen outerPen = new Pen(outerColor))
  881. {
  882. g.DrawLine(outerPen, new Point(bounds.Width - 14, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 16));
  883. g.DrawLine(innerPen, new Point(bounds.Width - 13, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 15));
  884. g.DrawLine(outerPen, new Point(bounds.Width - 12, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 14));
  885. g.DrawLine(innerPen, new Point(bounds.Width - 11, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 13));
  886. g.DrawLine(outerPen, new Point(bounds.Width - 10, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 12));
  887. g.DrawLine(innerPen, new Point(bounds.Width - 9, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 11));
  888. g.DrawLine(outerPen, new Point(bounds.Width - 8, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 10));
  889. g.DrawLine(innerPen, new Point(bounds.Width - 7, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 9));
  890. g.DrawLine(outerPen, new Point(bounds.Width - 6, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 8));
  891. g.DrawLine(innerPen, new Point(bounds.Width - 5, bounds.Height - 6), new Point(bounds.Width - 4, bounds.Height - 7));
  892. }
  893. }
  894. }
  895. }
  896. [DllImport("gdi32.dll")]
  897. private static extern uint SetPixel(IntPtr hdc, int X, int Y, int crColor);
  898. }
  899. }