aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Frontend/GUI/Button.cs
blob: 7d6804a64fcca8384e935b0a44cb138c7a112675 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ShiftOS.Engine;
using ShiftOS.Frontend.GraphicsSubsystem;

namespace ShiftOS.Frontend.GUI
{
    public class Button : TextControl
    {
        public Button()
        {
            TextAlign = TextAlign.MiddleCenter;
            Text = "Click me!";
        }

        protected override void OnLayout()
        {
            if(AutoSize == true)
            {
                int borderwidth = SkinEngine.LoadedSkin.ButtonBorderWidth * 2;

                using (var gfx = Graphics.FromImage(new Bitmap(1, 1)))
                {
                    var measure = gfx.MeasureString(this.Text, this.Font);
                    Width = borderwidth + (int)measure.Width + 16;
                    Height = borderwidth + (int)measure.Height + 12;
                }
            }
        }

        protected override void OnPaint(GraphicsContext gfx)
        {
            var bgCol = SkinEngine.LoadedSkin.ButtonBackgroundColor.ToMonoColor();
            var fgCol = SkinEngine.LoadedSkin.ControlTextColor.ToMonoColor();
            if (ContainsMouse)
                bgCol = SkinEngine.LoadedSkin.ButtonHoverColor.ToMonoColor();
            if (MouseLeftDown)
                bgCol = SkinEngine.LoadedSkin.ButtonPressedColor.ToMonoColor();

            base.OnPaint(gfx);
            base.OnPaint(gfx);
        }
    }
}