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
|
using System;
namespace AdvancedInspector
{
/// <summary>
/// This allows control over how a string field is displayed.
/// Only useful on string field.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class TextFieldAttribute : Attribute, IListAttribute
{
private const string TITLE = "Select Path...";
private const string PATH = "";
private const string EXTENSION = "";
private string title = "";
/// <summary>
/// Title of the modal dialog
/// </summary>
public string Title
{
get { return title; }
set { title = value; }
}
private string path = "C:\\";
/// <summary>
/// Default file/folder path
/// </summary>
public string Path
{
get { return path; }
set { path = value; }
}
private string extension = "";
/// <summary>
/// Force the file dialog to show only specific file type.
/// </summary>
public string Extension
{
get { return extension; }
set { extension = value; }
}
private TextFieldType type;
/// <summary>
/// What type of control is this string.
/// </summary>
public TextFieldType Type
{
get { return type; }
set { type = value; }
}
public TextFieldAttribute(TextFieldType type)
: this(type, TITLE, PATH, EXTENSION) { }
public TextFieldAttribute(TextFieldType type, string title)
: this(type, title, PATH, EXTENSION) { }
public TextFieldAttribute(TextFieldType type, string title, string path)
: this(type, title, path, EXTENSION) { }
public TextFieldAttribute(TextFieldType type, string title, string path, string extension)
{
this.type = type;
this.title = title;
this.path = path;
this.extension = extension;
}
}
public enum TextFieldType
{
Standard,
Password,
Area,
Tag,
File,
Folder
}
}
|