This repository was archived by the owner on Dec 23, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathRelationshipStyle.cs
142 lines (124 loc) · 3.87 KB
/
RelationshipStyle.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
using System;
using System.Runtime.Serialization;
namespace Structurizr
{
/// <summary>
/// A definition of a relationship style.
/// </summary>
[DataContract]
public sealed class RelationshipStyle
{
/// <summary>
/// The tag to which this relationship style applies.
/// </summary>
[DataMember(Name="tag", EmitDefaultValue=false)]
public string Tag { get; set; }
/// <summary>
/// The thickness of the line, in pixels.
/// </summary>
[DataMember(Name="thickness", EmitDefaultValue=false)]
public int? Thickness { get; set; }
private string _color;
/// <summary>
/// The colour of the line, as a HTML RGB hex string (e.g. #123456)
/// </summary>
[DataMember(Name = "color", EmitDefaultValue = false)]
public string Color
{
get {
return this._color;
}
set
{
if (Structurizr.Color.IsHexColorCode(value))
{
this._color = value.ToLower();
}
else
{
throw new ArgumentException("'" + value + "' is not a valid hex color code.");
}
}
}
/// <summary>
/// The standard font size used to render the relationship annotation, in pixels.
/// </summary>
[DataMember(Name="fontSize", EmitDefaultValue=false)]
public int? FontSize { get; set; }
/// <summary>
/// The width of the relationship annotation, in pixels.
/// </summary>
[DataMember(Name="width", EmitDefaultValue=false)]
public int? Width { get; set; }
/// <summary>
/// A flag to indicate whether the line is rendered as dashed or not.
/// </summary>
/// <value>A flag to indicate whether the line is rendered as dashed or not.</value>
[DataMember(Name="dashed", EmitDefaultValue=false)]
public bool? Dashed { get; set; }
/// <summary>
/// The routing of the line.
/// </summary>
[DataMember(Name="routing", EmitDefaultValue=false)]
public Routing? Routing { get; set; }
private int? _position;
/// <summary>
/// The position of the annotation along the line; 0 (start) to 100 (end).
/// </summary>
[DataMember(Name="position", EmitDefaultValue=false)]
public int? Position
{
get { return _position; }
set
{
if (value != null)
{
if (value < 0)
{
_position = 0;
}
else if (value > 100)
{
_position = 100;
}
else {
_position = value;
}
}
}
}
private int? _opacity;
/// <summary>
/// The opacity of the line/text; 0 to 100.
/// </summary>
[DataMember(Name = "opacity", EmitDefaultValue = false)]
public int? Opacity
{
get { return _opacity; }
set
{
if (value != null)
{
if (value < 0)
{
_opacity = 0;
}
else if (value > 100)
{
_opacity = 100;
}
else {
_opacity = value;
}
}
}
}
internal RelationshipStyle()
{
}
public RelationshipStyle(string tag)
{
this.Tag = tag;
}
}
}