forked from dgis/xsddiagram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.cs
122 lines (110 loc) · 4.7 KB
/
Settings.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
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
115
116
117
118
119
120
121
122
using System.ComponentModel;
namespace XSDDiagram {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default {
get {
return defaultInstance;
}
}
[BrowsableAttribute(false)]
[Category("UI"), DisplayName("Display Right Panel"), Description("Display the right panel.")]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool DisplayPanel
{
get
{
return ((bool)(this["DisplayPanel"]));
}
set
{
this["DisplayPanel"] = value;
}
}
[BrowsableAttribute(false)]
[Category("Diagram"), DisplayName("Zoom"), Description("The zoom level.")]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("8")]
public int Zoom
{
get
{
return ((int)(this["Zoom"]));
}
set
{
this["Zoom"] = value;
}
}
[BrowsableAttribute(false)]
[Category("Diagram"), DisplayName("Alignement"), Description("The item alignement.")]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("1")]
public int Alignement {
get {
return ((int)(this["Alignement"]));
}
set {
this["Alignement"] = value;
}
}
[BrowsableAttribute(false)]
[Category("Diagram"), DisplayName("Show Documentation"), Description("Show the documentation under the item.")]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool ShowDocumentation {
get {
return ((bool)(this["ShowDocumentation"]));
}
set {
this["ShowDocumentation"] = value;
}
}
[Category("Diagram"), DisplayName("Always Show Occurence"), Description("Always show the occurence of an item even if it is different from 1..1.")]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool AlwaysShowOccurence {
get {
return ((bool)(this["AlwaysShowOccurence"]));
}
set {
this["AlwaysShowOccurence"] = value;
}
}
[Category("Diagram"), DisplayName("Show Type"), Description("Show the type of an item if it exist.")]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool ShowType {
get {
return ((bool)(this["ShowType"]));
}
set {
this["ShowType"] = value;
}
}
[Category("Diagram"), DisplayName("CompactLayoutDensity"), Description("Display the diagram with a compact density.")]
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool CompactLayoutDensity
{
get
{
return ((bool)(this["CompactLayoutDensity"]));
}
set
{
this["CompactLayoutDensity"] = value;
}
}
}
}