aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/UI
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-09-13 11:13:17 -0400
committerlempamo <[email protected]>2017-09-13 11:13:17 -0400
commite4bb33426e4e1a3b5c5ef36866ef2947a7d4356d (patch)
treec4a5c609b5dda7bf2c83a28bad19cffc124be1bf /Histacom2.Engine/UI
parentab9f118edb06826ed49c0b46bb1bce38d407e4f6 (diff)
downloadhistacom2-e4bb33426e4e1a3b5c5ef36866ef2947a7d4356d.tar.gz
histacom2-e4bb33426e4e1a3b5c5ef36866ef2947a7d4356d.tar.bz2
histacom2-e4bb33426e4e1a3b5c5ef36866ef2947a7d4356d.zip
start menu stuffs
Diffstat (limited to 'Histacom2.Engine/UI')
-rw-r--r--Histacom2.Engine/UI/ClassicStartMenuItem.cs57
1 files changed, 57 insertions, 0 deletions
diff --git a/Histacom2.Engine/UI/ClassicStartMenuItem.cs b/Histacom2.Engine/UI/ClassicStartMenuItem.cs
new file mode 100644
index 0000000..49aecd9
--- /dev/null
+++ b/Histacom2.Engine/UI/ClassicStartMenuItem.cs
@@ -0,0 +1,57 @@
+using System;
+using System.Collections.Generic;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Histacom2.Engine.UI
+{
+ public class ClassicStartMenuItem : ToolStripMenuItem
+ {
+ public ClassicStartMenuItem()
+ {
+
+ }
+
+ protected override void OnPaint(PaintEventArgs e)
+ {
+ base.OnPaint(e);
+ if (SaveSystem.currentTheme != null) e.Graphics.Clear(SaveSystem.currentTheme.threeDObjectsColor);
+ else e.Graphics.Clear(BackColor);
+ if (Selected)
+ {
+ if (SaveSystem.currentTheme != null) e.Graphics.Clear(SaveSystem.currentTheme.selectedBackColor);
+ else e.Graphics.Clear(Color.Navy);
+ }
+
+ e.Graphics.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SingleBitPerPixelGridFit;
+
+ StringFormat sf = new StringFormat();
+ sf.HotkeyPrefix = System.Drawing.Text.HotkeyPrefix.Show;
+
+ e.Graphics.DrawImage(Image, 0 + Padding.Left - Padding.Right, 0);
+ if (!Selected) {
+ e.Graphics.DrawString(Text, new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular), Brushes.Black, 38, 11, sf);
+
+ if (DropDownItems.Count > 0)
+ {
+ e.Graphics.DrawPolygon(Pens.Black, new Point[] { new Point(121, 11), new Point(124, 14), new Point(121, 17) });
+ e.Graphics.FillPolygon(Brushes.Black, new Point[] { new Point(121, 11), new Point(124, 14), new Point(121, 17) });
+ }
+ } else
+ {
+ if (SaveSystem.currentTheme != null)
+ {
+ e.Graphics.DrawString(Text, new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular), new SolidBrush(SaveSystem.currentTheme.selectedTextColor), 38, 11, sf);
+ if (DropDownItems.Count > 0)
+ {
+ e.Graphics.DrawPolygon(new Pen(SaveSystem.currentTheme.selectedTextColor), new Point[] { new Point(121, 11), new Point(124, 14), new Point(121, 17) });
+ e.Graphics.FillPolygon(new SolidBrush(SaveSystem.currentTheme.selectedTextColor), new Point[] { new Point(121, 11), new Point(124, 14), new Point(121, 17) });
+ }
+ }
+ }
+ }
+ }
+}