@@ -17,6 +17,7 @@ public EditorContainer (IHostResourceProvider hostResources, IEditorView editorV
17
17
}
18
18
19
19
private const string FrameChangedObservableProperty = "frame" ;
20
+ private readonly NSString observerKeyPath = new NSString ( FrameChangedObservableProperty ) ;
20
21
21
22
public IEditorView EditorView => ( IEditorView ) NativeContainer ;
22
23
@@ -131,62 +132,63 @@ private void UpdateVariations ()
131
132
if ( this . viewModelAsPropertyViewModel . HasVariations ) {
132
133
133
134
if ( this . viewModelAsPropertyViewModel . IsVariant ) {
135
+ this . deleteVariantButton = new VariationButton ( HostResources , "pe-variation-delete-button-active-mac-10" , "pe-variation-delete-button-mac-10" ) {
136
+ AccessibilityEnabled = true ,
137
+ AccessibilityTitle = Properties . Resources . AccessibilityDeleteVariationButton ,
138
+ Command = this . viewModelAsPropertyViewModel . RemoveVariationCommand ,
139
+ ToolTip = Properties . Resources . RemoveVariant ,
140
+ TranslatesAutoresizingMaskIntoConstraints = false ,
141
+ } ;
134
142
135
- if ( this . deleteVariantButton == null ) {
136
- this . deleteVariantButton = new VariationButton ( HostResources , "pe-variation-delete-button-active-mac-10" , "pe-variation-delete-button-mac-10" ) {
137
- AccessibilityEnabled = true ,
138
- AccessibilityTitle = Properties . Resources . AccessibilityDeleteVariationButton ,
139
- Command = this . viewModelAsPropertyViewModel . RemoveVariationCommand ,
140
- ToolTip = Properties . Resources . RemoveVariant ,
141
- TranslatesAutoresizingMaskIntoConstraints = false ,
142
- } ;
143
+ AddSubview ( this . deleteVariantButton ) ;
144
+ AddConstraints ( new [ ] {
145
+ NSLayoutConstraint . Create ( this . deleteVariantButton , NSLayoutAttribute . Top , NSLayoutRelation . Equal , this , NSLayoutAttribute . Top , 1f , 8f ) ,
146
+ NSLayoutConstraint . Create ( this . deleteVariantButton , NSLayoutAttribute . Left , NSLayoutRelation . Equal , this , NSLayoutAttribute . Left , 1f , 20f ) ,
147
+ } ) ;
143
148
144
- AddSubview ( this . deleteVariantButton ) ;
145
- AddConstraints ( new [ ] {
146
- NSLayoutConstraint . Create ( this . deleteVariantButton , NSLayoutAttribute . Top , NSLayoutRelation . Equal , this , NSLayoutAttribute . Top , 1f , 8f ) ,
147
- NSLayoutConstraint . Create ( this . deleteVariantButton , NSLayoutAttribute . Left , NSLayoutRelation . Equal , this , NSLayoutAttribute . Left , 1f , 20f ) ,
148
- } ) ;
149
+ this . variationControlsList . Add ( this . deleteVariantButton ) ;
149
150
150
- this . variationControlsList . Add ( this . deleteVariantButton ) ;
151
+ // Hook into the delete button's frame change, so we can fire off some drawing. If there's a better way, let me know.
152
+ this . deleteVariantButton . AddObserver ( this , this . observerKeyPath , NSKeyValueObservingOptions . New , IntPtr . Zero ) ;
151
153
152
- // Hook into the delete button's frame change, so we can fire off some drawing. If there's a better way, let me know.
153
- this . deleteVariantButton . AddObserver ( this , new NSString ( FrameChangedObservableProperty ) , NSKeyValueObservingOptions . New , IntPtr . Zero ) ;
154
- }
154
+ NextKeyView = this . deleteVariantButton ;
155
+
156
+ // Cache these before the loop
157
+ var variationBgColour = HostResources . GetNamedColor ( NamedResources . FrameBoxButtonBackgroundColor ) ;
155
158
156
159
NSView previousControl = this . deleteVariantButton ;
157
160
foreach ( PropertyVariationOption item in this . viewModelAsPropertyViewModel . Variation ) {
158
- var selectedVariationTextField = new UnfocusableTextField {
159
- BackgroundColor = HostResources . GetNamedColor ( NamedResources . FrameBoxButtonBackgroundColor ) ,
161
+ var selectedVariationTextField = new UnfocusableTextField {
162
+ BackgroundColor = variationBgColour ,
160
163
Bordered = false ,
161
- Font = NSFont . SystemFontOfSize ( NSFont . SystemFontSizeForControlSize ( NSControlSize . Small ) - 1f ) ,
164
+ Font = VariationOptionFont ,
162
165
TranslatesAutoresizingMaskIntoConstraints = false ,
163
166
StringValue = string . Format ( " {0}: {1} " , item . Category , item . Name ) ,
164
167
} ;
165
168
166
169
AddSubview ( selectedVariationTextField ) ;
167
- AddConstraints ( new [ ] {
168
- NSLayoutConstraint . Create ( selectedVariationTextField , NSLayoutAttribute . Top , NSLayoutRelation . Equal , this , NSLayoutAttribute . Top , 1f , 5f ) ,
170
+ AddConstraints ( new [ ] {
171
+ NSLayoutConstraint . Create ( selectedVariationTextField , NSLayoutAttribute . Top , NSLayoutRelation . Equal , this , NSLayoutAttribute . Top , 1f , VariationBorderOffset ) ,
169
172
NSLayoutConstraint . Create ( selectedVariationTextField , NSLayoutAttribute . Left , NSLayoutRelation . Equal , previousControl , NSLayoutAttribute . Right , 1f , 6f ) ,
170
173
NSLayoutConstraint . Create ( selectedVariationTextField , NSLayoutAttribute . Height , NSLayoutRelation . Equal , 1f , 16f ) ,
171
174
} ) ;
172
175
173
176
previousControl = selectedVariationTextField ;
174
177
this . variationControlsList . Add ( selectedVariationTextField ) ;
175
178
}
176
- } else {
177
- if ( this . addVariantButton == null ) {
178
- this . addVariantButton = new VariationButton ( HostResources , "pe-variation-add-button-active-mac-10" , "pe-variation-add-button-mac-10" ) {
179
- AccessibilityEnabled = true ,
180
- AccessibilityTitle = Properties . Resources . AccessibilityAddVariationButton ,
181
- Command = this . viewModelAsPropertyViewModel . RequestCreateVariantCommand ,
182
- ToolTip = Properties . Resources . AddVariant ,
183
- TranslatesAutoresizingMaskIntoConstraints = false ,
184
- } ;
185
-
186
- LeftEdgeView = this . addVariantButton ;
187
-
188
- this . variationControlsList . Add ( this . addVariantButton ) ;
189
- }
179
+ } else {
180
+ this . addVariantButton = new VariationButton ( HostResources , "pe-variation-add-button-active-mac-10" , "pe-variation-add-button-mac-10" ) {
181
+ AccessibilityEnabled = true ,
182
+ AccessibilityTitle = Properties . Resources . AccessibilityAddVariationButton ,
183
+ Command = this . viewModelAsPropertyViewModel . RequestCreateVariantCommand ,
184
+ ToolTip = Properties . Resources . AddVariant ,
185
+ TranslatesAutoresizingMaskIntoConstraints = false ,
186
+ } ;
187
+
188
+ LeftEdgeView = this . addVariantButton ;
189
+ NextKeyView = this . addVariantButton ;
190
+
191
+ this . variationControlsList . Add ( this . addVariantButton ) ;
190
192
}
191
193
}
192
194
}
@@ -201,7 +203,11 @@ private void ClearSubViews ()
201
203
this . variationControlsList . Clear ( ) ;
202
204
203
205
this . addVariantButton = null ;
204
- this . deleteVariantButton = null ;
206
+
207
+ if ( this . deleteVariantButton != null ) {
208
+ this . deleteVariantButton . RemoveObserver ( this , this . observerKeyPath ) ;
209
+ this . deleteVariantButton = null ;
210
+ }
205
211
}
206
212
207
213
private void ClearChildLayers ( )
@@ -315,8 +321,10 @@ public NSColor LabelTextColor {
315
321
private VariationButton addVariantButton ;
316
322
private const float treeLineLeftEdge = 14f ;
317
323
private const float treeLineLeafIndent = 4f ;
324
+ internal const float VariationBorderOffset = 5f ;
325
+ internal static NSFont VariationOptionFont = NSFont . SystemFontOfSize ( NSFont . SystemFontSizeForControlSize ( NSControlSize . Small ) - 1f ) ;
318
326
private nfloat ViewVariationChildVerticalDrawPoint => this . deleteVariantButton . Frame . Top + 5 ;
319
327
private nfloat ViewVariationParentVerticalDrawPoint => this . addVariantButton . Frame . Top - 2 ;
320
328
private PropertyViewModel viewModelAsPropertyViewModel ;
321
329
}
322
- }
330
+ }
0 commit comments