aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Apps/Shifter.cs
blob: 3e161840471bab31ae4ca3a37710d3d1543ce0fc (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ShiftUI;
using System.Reflection;

namespace ShiftOS
{
    public partial class Shifter : Form
    {
        public Shifter()
        {
            InitializeComponent();
            ShowAllCategories();
        }

        public void ShowAllCategories()
        {
            var categories =
from a in AppDomain.CurrentDomain.GetAssemblies()
from t in a.GetTypes()
let attributes = t.GetCustomAttributes(typeof(ShifterCategoryAttribute), true)
where attributes != null && attributes.Length > 0
select new { Type = t, Attributes = attributes.Cast<ShifterCategoryAttribute>() };
            pnlcategories.Widgets.Clear();
            foreach(var type in categories)
            {
                Button btn = new Button();
                btn.Text = type.Attributes.First().Name;
                btn.Click += (o, a) =>
                {
                    ShowAllPropertyGridsInCategory(Activator.CreateInstance(type.Type));
                };
                pnlcategories.Widgets.Add(btn);
                btn.Show();
            }
        }

        public void ShowAllPropertyGridsInCategory(object cls)
        {

        }
    }

    [ShifterCategory("Desktop")]
    [ShifterPropertyGrid("Desktop")]
    public class ShifterDesktopSettings
    {
        [Upgrade("skinning")]
        [SkinMap("images/desktopbackground")]
        public Image DesktopBackground { get; set; }

        [Upgrade("shiftdesktopbackground")]
        [SkinMap("skin/desktopbackgroundcolour")]
        public Color DesktopBackgroundColor { get; set; }
    }

    public class UpgradeAttribute : Attribute
    {
        public UpgradeAttribute(string upgrade)
        {
            upg = upgrade;
        }

        private string upg = "";

        public bool UpgradeInstalled
        {
            get
            {
                return API.Upgrades[upg];
            }
        }
    }

    public class SkinMapAttribute : Attribute
    {
        public SkinMapAttribute(string varName)
        {
            Variable = varName;
        }

        public string Variable { get; set; }
    }

    public class ShifterCategoryAttribute : Attribute
    {
        public ShifterCategoryAttribute(string name)
        {
            Name = name;
        }

        public string Name { get; set; }
    }

    public class ShifterPropertyGridAttribute : Attribute
    {
        public ShifterPropertyGridAttribute(string name)
        {
            Name = name;
        }

        public string Name { get; set; }
    }


}