123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- using System;
- using System.ComponentModel;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Runtime.InteropServices;
- using System.Security.Permissions;
- using System.Windows.Forms;
- namespace Optimizer
- {
- [
- ComVisible(true), ClassInterface(ClassInterfaceType.AutoDispatch),
- DefaultProperty("TabPages"), DefaultEvent("SelectedIndexChanged")
- ]
- public sealed class MoonTabs : TabControl
- {
- [System.Runtime.InteropServices.DllImport("user32.dll")]
- private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wp, IntPtr lp);
- [Category("Custom"), Description("Indicates whether or not you the components Tabpages Headers have border edges."), DefaultValue(false)]
- public bool BorderEdges { get; set; } = false;
- private int _BorderSize = 0;
- [Category("Custom"), Description("The size of the components border."), DefaultValue(0)]
- public int BorderSize
- {
- get => _BorderSize;
- set => _BorderSize = 0;
- }
- [Category("Custom"), Description("The size of the components Indicator."), DefaultValue(0)]
- public int IndicatorSize { get; set; } = 0;
- private int _DividerSize = 0;
- [Category("Custom"), Description("The size of the components Divider."), DefaultValue(0)]
- public int DividerSize
- {
- get => _DividerSize;
- set => _DividerSize = value.LimitToRange(0, 0);
- }
- [Category("Custom"), Description("Indicates whether or not you can rearrange the components Tabpages. CLICK on the Tabpages HEADER with the LEFT mousebutton and HOLD DOWN the <SHIFT> KEY, to drag it LEFT or RIGHT."), DefaultValue(false)]
- public bool CanDrag { get; set; }
- StringFormat format = new StringFormat { Alignment = StringAlignment.Center };
- private Bitmap bitDrag = default(Bitmap);
- private bool bDrag, bMouseDown, bShiftKey;
- private Point ptPreviousLocation, ptMaxDrag;
- private int DraggedIndex = -1;
- protected override CreateParams CreateParams
- {
- [SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.UnmanagedCode)]
- get
- {
- CreateParams cp = base.CreateParams;
- cp.ExStyle |= 0x02000000;
- return cp;
- }
- }
- // OVERRIDE TAB HEADER WIDTH
- protected override void OnHandleCreated(EventArgs e)
- {
- base.OnHandleCreated(e);
- // Send TCM_SETMINTABWIDTH
- string maxTitle = string.Empty;
- foreach (TabPage x in this.TabPages)
- {
- if (x.Text.Length > maxTitle.Length) maxTitle = x.Text;
- }
- Size textSize = TextRenderer.MeasureText(maxTitle, this.Font);
- SendMessage(this.Handle, 0x1300 + 49, IntPtr.Zero, (IntPtr)textSize.Width);
- }
- public MoonTabs()
- {
- SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer |
- ControlStyles.UserPaint | ControlStyles.ResizeRedraw | ControlStyles.CacheText, true);
- Alignment = TabAlignment.Top;
- Margin = new Padding(0);
- Padding = new Point(0, 0);
- this.SizeMode = TabSizeMode.Fixed;
- }
- private void SetDragState() => bDrag = (CanDrag && bMouseDown && bShiftKey);
- protected override void OnMouseDown(MouseEventArgs e)
- {
- bMouseDown = true;
- SetDragState();
- if (SelectedIndex == -1) return;
- Rectangle rectDrag = GetTabRect(SelectedIndex);
- ptPreviousLocation = new Point(rectDrag.X, rectDrag.Y);
- rectDrag.Width += 1; rectDrag.Height += 1;
- Bitmap src = new Bitmap(Width, Height);
- DrawToBitmap(src, ClientRectangle);
- using (Graphics g = Graphics.FromImage(bitDrag = new Bitmap(rectDrag.Width, rectDrag.Height)))
- {
- g.DrawImage(src, new Rectangle(0, 0, bitDrag.Width, bitDrag.Height), rectDrag, GraphicsUnit.Pixel);
- }
- }
- protected override void OnMouseMove(MouseEventArgs e)
- {
- if (bDrag)
- {
- if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom)
- {
- ptPreviousLocation = new Point(((e.X < 0) ? 0 : (e.X > ptMaxDrag.X) ? ptMaxDrag.X : e.X), (Alignment == TabAlignment.Top ? BorderSize : ptMaxDrag.Y));
- }
- if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left)
- {
- ptPreviousLocation = new Point(ptMaxDrag.X, ((e.Y < 0) ? 0 : (e.Y > ptMaxDrag.Y) ? ptMaxDrag.Y : e.Y));
- }
- for (int i = 0; i < TabCount; i++)
- {
- if (GetTabRect(i).Contains(PointToClient(Cursor.Position))) { DraggedIndex = i; break; }
- }
- Invalidate();
- }
- }
- protected override void OnMouseUp(MouseEventArgs e)
- {
- void SwapTabPages(TabPage inDestTab)
- {
- int SourceIndex = TabPages.IndexOf(SelectedTab);
- int DestinationIndex = TabPages.IndexOf(inDestTab);
- TabPages[DestinationIndex] = SelectedTab;
- TabPages[SourceIndex] = inDestTab;
- if (SelectedIndex == SourceIndex) { SelectedIndex = DestinationIndex; }
- else if (SelectedIndex == DestinationIndex) { SelectedIndex = SourceIndex; }
- }
- bDrag = bMouseDown = false;
- if (DraggedIndex > -1)
- {
- SwapTabPages(TabPages[DraggedIndex]);
- DraggedIndex = -1;
- }
- SetDragState();
- Invalidate();
- }
- protected override void OnKeyDown(KeyEventArgs ke) { bShiftKey = ke.Shift; SetDragState(); }
- protected override void OnKeyUp(KeyEventArgs e) { bDrag = bShiftKey = false; SetDragState(); }
- protected override void OnPaint(PaintEventArgs e)
- {
- if (DesignMode) return;
- e.Graphics.Clear(Color.FromArgb(40, 40, 40));
- Rectangle container = new Rectangle(0, 0, Width - (BorderSize % 2), Height - (BorderSize % 2));
- Rectangle containerHead = default(Rectangle);
- if (TabCount > 0)
- {
- using (SolidBrush brushBackgroundTab = new SolidBrush(Color.FromArgb(40, 40, 40)))
- using (SolidBrush brushDivider = new SolidBrush(OptionsHelper.ForegroundColor))
- {
- {
- e.Graphics.FillRectangle(brushBackgroundTab, DisplayRectangle);
- }
- {
- if (SelectedIndex == -1) return;
- Rectangle rectDivider = GetTabRect(SelectedIndex);
- if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom)
- {
- e.Graphics.FillRectangle(brushDivider,
- 0,
- (((Alignment == TabAlignment.Top) ? (TabPages[SelectedIndex].Top - DividerSize - (DividerSize % 2)) :
- (TabPages[SelectedIndex].Bottom + (DividerSize % 2)))),
- (Width - BorderSize), DividerSize
- );
- }
- if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left)
- {
- e.Graphics.FillRectangle(brushDivider,
- ((Alignment == TabAlignment.Right) ? (TabPages[SelectedIndex].Right + (DividerSize % 2)) : TabPages[SelectedIndex].Left - DividerSize - (DividerSize % 2)),
- BorderSize,
- DividerSize,
- (Height - (BorderSize * 2))
- );
- }
- }
- }
- }
- SolidBrush brushActiveText;
- using (Pen penActive = new Pen(OptionsHelper.ForegroundColor))
- using (Pen penBorder = new Pen(Color.FromArgb(40, 40, 40), 0))
- using (SolidBrush brushActive = new SolidBrush(OptionsHelper.ForegroundColor))
- using (SolidBrush brushInActive = new SolidBrush(Color.FromArgb(40, 40, 40)))
- using (SolidBrush brushAlternative = new SolidBrush(OptionsHelper.ForegroundColor))
- using (SolidBrush brushActiveIndicator = new SolidBrush(ControlPaint.Light(OptionsHelper.ForegroundColor)))
- using (SolidBrush brushInActiveIndicator = new SolidBrush(OptionsHelper.ForegroundColor))
- using (brushActiveText = new SolidBrush(OptionsHelper.TextColor))
- using (SolidBrush brushInActiveText = new SolidBrush(Color.White))
- using (SolidBrush brushDrag = new SolidBrush(ControlPaint.Dark(OptionsHelper.ForegroundColor)))
- {
- //if (MoonManager.THEME_PREFERENCE == THEME.LIGHT) brushActiveText = new SolidBrush(Color.White);
- penBorder.Alignment = penActive.Alignment = PenAlignment.Inset;
- e.Graphics.DrawRectangle(penBorder, container);
- if (TabCount > 0)
- {
- ptMaxDrag = new Point(0, 0);
- for (int i = 0; i < TabCount; i++)
- {
- containerHead = GetTabRect(i);
- e.Graphics.FillRectangle((SelectedIndex == i) ? (bDrag ? brushDrag : brushActive) : brushInActive, containerHead);
- if (BorderEdges && (i == SelectedIndex))
- {
- Point ptA = new Point(0, 0); Point ptB = new Point(0, 0);
- Point ptC = new Point(0, 0); Point ptD = new Point(0, 0);
- ptA.X = ptB.X = ptD.X = containerHead.X;
- ptA.Y = ptB.Y = ptC.Y = containerHead.Y;
- ptA.Y = ptC.Y = ptD.Y = containerHead.Y + containerHead.Height - 1;
- if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom)
- {
- ptD.X = ptC.X = containerHead.X + containerHead.Width;
- ptC.Y = containerHead.Y;
- if (Alignment == TabAlignment.Bottom)
- {
- MoonTabHelper.Swap(ref ptA, ref ptB); MoonTabHelper.Swap(ref ptC, ref ptD);
- }
- }
- if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left)
- {
- ptA.Y = containerHead.Y;
- ptB.X = ptC.X = containerHead.X + containerHead.Width - 1;
- if (Alignment == TabAlignment.Left)
- {
- MoonTabHelper.Swap(ref ptA, ref ptC); MoonTabHelper.Swap(ref ptB, ref ptD);
- }
- }
- e.Graphics.DrawLine(new Pen(ControlPaint.Light(brushActive.Color)), ptA, ptB);
- e.Graphics.DrawLine(new Pen(ControlPaint.Light(brushActive.Color)), ptB, ptC);
- e.Graphics.DrawLine(new Pen(ControlPaint.Dark(brushActive.Color)), ptC, ptD);
- }
- {
- Rectangle rectDivider = default(Rectangle);
- if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom)
- {
- rectDivider = new Rectangle(containerHead.X, containerHead.Y + ((Alignment == TabAlignment.Top) ? containerHead.Height : -DividerSize), containerHead.Width, DividerSize);
- }
- if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left)
- {
- rectDivider = new Rectangle(containerHead.X - ((Alignment == TabAlignment.Right) ? DividerSize : -containerHead.Width), containerHead.Y, DividerSize, containerHead.Height);
- }
- e.Graphics.FillRectangle(((MoonTabHelper.TagToInt(TabPages[i]) == 1) ? brushAlternative : ((i == SelectedIndex) ? brushActiveIndicator : brushInActiveIndicator)), rectDivider);
- }
- if (!(bDrag && i == SelectedIndex))
- {
- int angle = 0;
- {
- if (Alignment == TabAlignment.Right) angle = 90;
- if (Alignment == TabAlignment.Left) angle = 270;
- }
- float w, h;
- w = h = 0f;
- if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { w = containerHead.X + (containerHead.Width / 2); }
- if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { w = containerHead.X; h = containerHead.Y + (containerHead.Height / 2); }
- if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { h = containerHead.Y + ((Alignment == TabAlignment.Top) ? IndicatorSize : 0) + ((containerHead.Height - IndicatorSize) / 2); }
- if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { w += (((Alignment == TabAlignment.Right) ? 0 : IndicatorSize) + ((containerHead.Width - IndicatorSize) / 2)); }
- e.Graphics.TranslateTransform(w, h);
- {
- Size textSize = e.Graphics.MeasureString(TabPages[i].Text, Font).ToSize();
- e.Graphics.RotateTransform(angle);
- e.Graphics.DrawString(TabPages[i].Text, Font, ((SelectedIndex == i) ? brushActiveText : brushInActiveText), new PointF((-textSize.Width / 2f), (-textSize.Height / 2f)));
- }
- e.Graphics.ResetTransform();
- }
- if (bMouseDown)
- {
- if (Alignment == TabAlignment.Top || Alignment == TabAlignment.Bottom) { if (i > 0) { ptMaxDrag.X += GetTabRect(i).Width; } }
- if (Alignment == TabAlignment.Top) { ptMaxDrag.Y = BorderSize; }
- if (Alignment == TabAlignment.Bottom) { ptMaxDrag.Y = containerHead.Y; };
- if (Alignment == TabAlignment.Right || Alignment == TabAlignment.Left) { ptMaxDrag.X = containerHead.X; if (i > 0) { ptMaxDrag.Y += containerHead.Height; } }
- }
- if (bDrag && (bitDrag != null)) { e.Graphics.DrawImage(bitDrag, new Point(ptPreviousLocation.X, ptPreviousLocation.Y)); }
- }
- }
- }
- }
- }
- public static class MoonTabHelper
- {
- public static int LimitToRange(this int value, int inclusiveMinimum, int inclusiveMaximum)
- {
- if (value < inclusiveMinimum) { return inclusiveMinimum; }
- if (value > inclusiveMaximum) { return inclusiveMaximum; }
- return value;
- }
- public static void Swap<T>(ref T a, ref T b)
- {
- T temp = a;
- a = b; b = temp;
- }
- public static int TagToInt(object inObject) => Convert.ToInt32((inObject as Control).Tag);
- }
- }
|