blob: ff618cb45e296607090f8280b8e2d5afc62518bc (
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
|
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(btn.Text);
};
pnlcategories.Widgets.Add(btn);
btn.Show();
}
}
public void ShowAllPropertyGridsInCategory(string cat)
{
}
}
[ShifterCategory("Desktop")]
[ShifterPropertyGrid("Desktop")]
public class ShifterDesktopSettings
{
[SkinMap("images/desktopbackground")]
public Image DesktopBackground { get; set; }
[SkinMap("skin/desktopbackgroundcolour")]
public Color DesktopBackgroundColor { get; set; }
}
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; }
}
}
|