1
+ using System ;
2
+ using System . Collections . Generic ;
1
3
using AppKit ;
4
+ using CoreAnimation ;
5
+ using CoreGraphics ;
2
6
using Xamarin . PropertyEditing . ViewModels ;
3
7
4
8
namespace Xamarin . PropertyEditing . Mac
@@ -24,6 +28,125 @@ public EditorViewModel ViewModel
24
28
25
29
if ( EditorView . NeedsPropertyButton )
26
30
PropertyButton . ViewModel = value as PropertyViewModel ;
31
+
32
+ UpdateVariations ( value as PropertyViewModel ) ;
33
+ }
34
+ }
35
+
36
+ private void UpdateVariations ( PropertyViewModel propertyViewModel )
37
+ {
38
+ if ( propertyViewModel != null ) {
39
+ if ( propertyViewModel . HasVariations ) {
40
+
41
+ if ( propertyViewModel . IsVariant ) {
42
+ WantsLayer = true ;
43
+
44
+ if ( propertyViewModel . GetIsLastVariant ( ) ) {
45
+ var endLineShape = new CAShapeLayer ( ) ;
46
+ var endLinePath = new NSBezierPath ( ) ;
47
+
48
+ endLinePath . MoveTo ( new CGPoint ( 10 , 35 ) ) ;
49
+ endLinePath . Append ( new CGPoint [ ] { new CGPoint ( 10 , 65 ) } ) ;
50
+ endLinePath . MoveTo ( new CGPoint ( 10 , 35 ) ) ;
51
+ endLinePath . Append ( new CGPoint [ ] { new CGPoint ( 15 , 35 ) } ) ;
52
+ endLineShape . Path = endLinePath . ToCGPath ( ) ;
53
+ endLineShape . FillColor = null ;
54
+ endLineShape . Opacity = 1.0f ;
55
+ endLineShape . StrokeColor = HostResources . GetNamedColor ( NamedResources . ForegroundColor ) . CGColor ;
56
+ Layer . AddSublayer ( endLineShape ) ;
57
+
58
+ this . variationLayersList . Add ( endLineShape ) ;
59
+ } else {
60
+ var midLineShape = new CAShapeLayer ( ) ;
61
+ var midLinePath = new NSBezierPath ( ) ;
62
+
63
+ midLinePath . MoveTo ( new CGPoint ( 10 , 0 ) ) ;
64
+ midLinePath . Append ( new CGPoint [ ] { new CGPoint ( 10 , 55 ) } ) ;
65
+ midLinePath . MoveTo ( new CGPoint ( 10 , 35 ) ) ;
66
+ midLinePath . Append ( new CGPoint [ ] { new CGPoint ( 15 , 35 ) } ) ;
67
+ midLineShape . Path = midLinePath . ToCGPath ( ) ;
68
+ midLineShape . FillColor = null ;
69
+ midLineShape . Opacity = 1.0f ;
70
+ midLineShape . StrokeColor = HostResources . GetNamedColor ( NamedResources . ForegroundColor ) . CGColor ;
71
+ Layer . AddSublayer ( midLineShape ) ;
72
+
73
+ this . variationLayersList . Add ( midLineShape ) ;
74
+ }
75
+
76
+
77
+ var deleteVariantButton = new CommandButton {
78
+ Bordered = false ,
79
+ Command = propertyViewModel . RemoveVariationCommand ,
80
+ TranslatesAutoresizingMaskIntoConstraints = false ,
81
+ Title = "x" ,
82
+ ToolTip = Properties . Resources . RemoveVariant ,
83
+ } ;
84
+
85
+ AddSubview ( deleteVariantButton ) ;
86
+ AddConstraints ( new [ ] {
87
+ NSLayoutConstraint . Create ( deleteVariantButton , NSLayoutAttribute . Top , NSLayoutRelation . Equal , this , NSLayoutAttribute . Top , 1f , 3f ) ,
88
+ NSLayoutConstraint . Create ( deleteVariantButton , NSLayoutAttribute . Left , NSLayoutRelation . Equal , this , NSLayoutAttribute . Left , 1f , 12f ) ,
89
+ NSLayoutConstraint . Create ( deleteVariantButton , NSLayoutAttribute . Width , NSLayoutRelation . Equal , 1f , 16f ) ,
90
+
91
+ } ) ;
92
+
93
+ this . variationControlsList . Add ( deleteVariantButton ) ;
94
+
95
+ NSView previousControl = deleteVariantButton ;
96
+ foreach ( PropertyVariationOption item in propertyViewModel . Variation ) {
97
+ var selectedVariationTextField = new UnfocusableTextField {
98
+ BackgroundColor = HostResources . GetNamedColor ( NamedResources . FrameBoxButtonBackgroundColor ) ,
99
+ Bordered = false ,
100
+ TranslatesAutoresizingMaskIntoConstraints = false ,
101
+ StringValue = string . Format ( " {0}: {1} " , item . Category , item . Name ) ,
102
+ } ;
103
+
104
+ AddSubview ( selectedVariationTextField ) ;
105
+ AddConstraints ( new [ ] {
106
+ NSLayoutConstraint . Create ( selectedVariationTextField , NSLayoutAttribute . Top , NSLayoutRelation . Equal , this , NSLayoutAttribute . Top , 1f , 3f ) ,
107
+ NSLayoutConstraint . Create ( selectedVariationTextField , NSLayoutAttribute . Left , NSLayoutRelation . Equal , previousControl , NSLayoutAttribute . Right , 1f , 3f ) ,
108
+ NSLayoutConstraint . Create ( selectedVariationTextField , NSLayoutAttribute . Height , NSLayoutRelation . Equal , 1f , 16f ) ,
109
+ } ) ;
110
+
111
+ previousControl = selectedVariationTextField ;
112
+ this . variationControlsList . Add ( selectedVariationTextField ) ;
113
+ }
114
+ } else {
115
+
116
+ var addVariantButton = new CommandButton {
117
+ Bordered = false ,
118
+ Command = propertyViewModel . RequestCreateVariantCommand ,
119
+ TranslatesAutoresizingMaskIntoConstraints = false ,
120
+ Title = "+" ,
121
+ ToolTip = Properties . Resources . AddVariant ,
122
+ } ;
123
+
124
+ AddSubview ( addVariantButton ) ;
125
+ AddConstraints ( new [ ] {
126
+ NSLayoutConstraint . Create ( addVariantButton , NSLayoutAttribute . Top , NSLayoutRelation . Equal , this , NSLayoutAttribute . Top , 1f , 3f ) ,
127
+ NSLayoutConstraint . Create ( addVariantButton , NSLayoutAttribute . Left , NSLayoutRelation . Equal , this , NSLayoutAttribute . Left , 1f , 2f ) ,
128
+ NSLayoutConstraint . Create ( addVariantButton , NSLayoutAttribute . Width , NSLayoutRelation . Equal , 1f , 16f ) ,
129
+ } ) ;
130
+
131
+ this . variationControlsList . Add ( addVariantButton ) ;
132
+ }
133
+ }
134
+ } else {
135
+ // Clear up required, if we reuse this view
136
+ WantsLayer = false ;
137
+
138
+
139
+ foreach ( CALayer item in this . variationLayersList ) {
140
+ item . RemoveFromSuperLayer ( ) ;
141
+ }
142
+
143
+ this . variationLayersList . Clear ( ) ;
144
+
145
+ foreach ( NSView item in this . variationControlsList ) {
146
+ item . RemoveFromSuperview ( ) ;
147
+ }
148
+
149
+ this . variationControlsList . Clear ( ) ;
27
150
}
28
151
}
29
152
@@ -57,8 +180,8 @@ public NSView LeftEdgeView
57
180
58
181
public override void ViewWillMoveToSuperview ( NSView newSuperview )
59
182
{
60
- if ( newSuperview == null && EditorView != null )
61
- EditorView . ViewModel = null ;
183
+ if ( newSuperview == null )
184
+ ViewModel = null ;
62
185
63
186
base . ViewWillMoveToSuperview ( newSuperview ) ;
64
187
}
@@ -71,5 +194,8 @@ public NSColor LabelTextColor {
71
194
72
195
private NSView leftEdgeView ;
73
196
private NSLayoutConstraint leftEdgeLeftConstraint , leftEdgeVCenterConstraint ;
197
+
198
+ private List < NSView > variationControlsList = new List < NSView > ( ) ;
199
+ private List < CALayer > variationLayersList = new List < CALayer > ( ) ;
74
200
}
75
201
}
0 commit comments