1
1
using System ;
2
+ using System . Threading . Tasks ;
2
3
using AppKit ;
3
4
using CoreGraphics ;
4
5
using Xamarin . PropertyEditing . ViewModels ;
@@ -19,11 +20,16 @@ internal PropertyViewModel ViewModel
19
20
set {
20
21
if ( this . viewModel != null ) {
21
22
this . viewModel . PropertyChanged -= OnPropertyChanged ;
23
+ if ( this . viewModel . HasVariations )
24
+ this . viewModel . CreateVariantRequested -= OnCreateVariantRequested ;
22
25
}
23
26
24
27
this . viewModel = value ;
25
28
if ( this . viewModel != null ) {
26
29
this . viewModel . PropertyChanged += OnPropertyChanged ;
30
+ if ( this . viewModel . HasVariations )
31
+ this . viewModel . CreateVariantRequested += OnCreateVariantRequested ;
32
+
27
33
ValueSourceChanged ( this . viewModel . ValueSource ) ;
28
34
}
29
35
}
@@ -82,7 +88,7 @@ private void PopUpContextMenu ()
82
88
AttributedTitle = new Foundation . NSAttributedString (
83
89
Properties . Resources . CustomExpressionEllipsis ,
84
90
new CoreText . CTStringAttributes {
85
- Font = new CoreText . CTFont ( PropertyEditorControl . DefaultFontName , PropertyEditorControl . DefaultFontSize + 1 ) ,
91
+ Font = new CoreText . CTFont ( PropertyEditorControl . DefaultFontName , PropertyEditorControl . DefaultMenuFontSize ) ,
86
92
} )
87
93
} ;
88
94
@@ -99,7 +105,7 @@ private void PopUpContextMenu ()
99
105
AttributedTitle = new Foundation . NSAttributedString (
100
106
Properties . Resources . ResourceEllipsis ,
101
107
new CoreText . CTStringAttributes {
102
- Font = new CoreText . CTFont ( PropertyEditorControl . DefaultFontName , PropertyEditorControl . DefaultFontSize + 1 ) ,
108
+ Font = new CoreText . CTFont ( PropertyEditorControl . DefaultFontName , PropertyEditorControl . DefaultMenuFontSize ) ,
103
109
} )
104
110
} ;
105
111
@@ -110,11 +116,11 @@ private void PopUpContextMenu ()
110
116
this . popUpContextMenu . AddItem ( NSMenuItem . SeparatorItem ) ;
111
117
112
118
// TODO If we add more menu items consider making the Label/Command a dictionary that we can iterate over to populate everything.
113
- this . popUpContextMenu . AddItem ( new CommandMenuItem ( Properties . Resources . Reset , viewModel . ClearValueCommand ) {
119
+ this . popUpContextMenu . AddItem ( new CommandMenuItem ( Properties . Resources . Reset , this . viewModel . ClearValueCommand ) {
114
120
AttributedTitle = new Foundation . NSAttributedString (
115
121
Properties . Resources . Reset ,
116
122
new CoreText . CTStringAttributes {
117
- Font = new CoreText . CTFont ( PropertyEditorControl . DefaultFontName , PropertyEditorControl . DefaultFontSize + 1 ) ,
123
+ Font = new CoreText . CTFont ( PropertyEditorControl . DefaultFontName , PropertyEditorControl . DefaultMenuFontSize ) ,
118
124
} )
119
125
} ) ;
120
126
}
@@ -131,34 +137,34 @@ private void ToggleFocusImage (bool focused = false)
131
137
if ( this . viewModel != null ) {
132
138
133
139
switch ( this . viewModel . ValueSource ) {
134
- case ValueSource . Binding :
135
- Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-bound-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-bound-mac-10" ) ;
136
- break ;
137
-
138
- case ValueSource . Default :
139
- Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-default-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-default-mac-10" ) ;
140
- break ;
141
-
142
- case ValueSource . Local :
143
- Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-local-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-local-mac-10" ) ;
144
- break ;
145
-
146
- case ValueSource . Inherited :
147
- Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-inherited-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-inherited-mac-10" ) ;
148
- break ;
149
-
150
- case ValueSource . Resource :
151
- Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-inherited-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-inherited-mac-10" ) ;
152
- break ;
153
-
154
- case ValueSource . Unset :
155
- Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-default-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-default-mac-10" ) ;
156
- break ;
157
-
158
- default :
159
- // To Handle ValueSource.DefaultStyle, ValueSource.Style etc.
160
- Image = null ;
161
- break ;
140
+ case ValueSource . Binding :
141
+ Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-bound-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-bound-mac-10" ) ;
142
+ break ;
143
+
144
+ case ValueSource . Default :
145
+ Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-default-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-default-mac-10" ) ;
146
+ break ;
147
+
148
+ case ValueSource . Local :
149
+ Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-local-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-local-mac-10" ) ;
150
+ break ;
151
+
152
+ case ValueSource . Inherited :
153
+ Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-inherited-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-inherited-mac-10" ) ;
154
+ break ;
155
+
156
+ case ValueSource . Resource :
157
+ Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-inherited-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-inherited-mac-10" ) ;
158
+ break ;
159
+
160
+ case ValueSource . Unset :
161
+ Image = focused ? this . hostResources . GetNamedImage ( "pe-property-button-default-mac-active-10" ) : this . hostResources . GetNamedImage ( "pe-property-button-default-mac-10" ) ;
162
+ break ;
163
+
164
+ default :
165
+ // To Handle ValueSource.DefaultStyle, ValueSource.Style etc.
166
+ Image = null ;
167
+ break ;
162
168
}
163
169
}
164
170
}
@@ -228,13 +234,25 @@ private void OnResourceRequested (object sender, EventArgs e)
228
234
Appearance = EffectiveAppearance
229
235
} ;
230
236
231
- var resourceSelectorPopOver = new AutoClosePopOver ( this . hostResources ) {
237
+ var resourceSelectorPopOver = new AutoClosePopOver ( this . hostResources ) {
232
238
ContentViewController = new NSViewController ( null , null ) { View = requestResourceView } ,
233
239
} ;
234
240
235
241
requestResourceView . PopOver = resourceSelectorPopOver ;
236
242
237
243
resourceSelectorPopOver . Show ( requestResourceView . Frame , ( NSView ) this , NSRectEdge . MinYEdge ) ;
238
244
}
245
+
246
+ private void OnCreateVariantRequested ( object sender , CreateVariantEventArgs e )
247
+ {
248
+ var createVariantWindow = new CreateVariantWindow ( this . hostResources , this . viewModel ) {
249
+ Appearance = EffectiveAppearance ,
250
+ } ;
251
+
252
+ var result = ( NSModalResponse ) ( int ) NSApplication . SharedApplication . RunModalForWindow ( createVariantWindow ) ;
253
+ if ( result == NSModalResponse . OK ) {
254
+ e . Variation = Task . FromResult ( createVariantWindow . ViewModel . Variation ) ;
255
+ }
256
+ }
239
257
}
240
258
}
0 commit comments