forked from NeoforceControls/Neoforce-Mono
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtilities.cs
85 lines (72 loc) · 3.04 KB
/
Utilities.cs
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
////////////////////////////////////////////////////////////////
// //
// Neoforce Controls //
// //
////////////////////////////////////////////////////////////////
// //
// File: Utilities.cs //
// //
// Version: 0.7 //
// //
// Date: 11/09/2010 //
// //
// Author: Tom Shane //
// //
////////////////////////////////////////////////////////////////
// //
// Copyright (c) by Tom Shane //
// //
////////////////////////////////////////////////////////////////
#region //// Using /////////////
////////////////////////////////////////////////////////////////////////////
using System;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework;
////////////////////////////////////////////////////////////////////////////
#endregion
namespace TomShane.Neoforce.Controls
{
static class Utilities
{
#region //// Methods ///////////
////////////////////////////////////////////////////////////////////////////
public static string DeriveControlName(Control control)
{
if (control != null)
{
try
{
string str = control.ToString();
int i = str.LastIndexOf(".");
return str.Remove(0, i + 1);
}
catch
{
return control.ToString();
}
}
return control.ToString();
}
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
public static Color ParseColor(string str)
{
string[] val = str.Split(';');
byte r = 255, g = 255, b = 255, a = 255;
if (val.Length >= 1) r = byte.Parse(val[0]);
if (val.Length >= 2) g = byte.Parse(val[1]);
if (val.Length >= 3) b = byte.Parse(val[2]);
if (val.Length >= 4) a = byte.Parse(val[3]);
return Color.FromNonPremultiplied(r, g, b, a);
}
////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////
public static BevelStyle ParseBevelStyle(string str)
{
return (BevelStyle)Enum.Parse(typeof(BevelStyle), str, true);
}
////////////////////////////////////////////////////////////////////////////
#endregion
}
}