@@ -234,10 +234,59 @@ PharoDarkTheme >> taskbarItemSelectedPressedFillStyleFor: aButton [
234
234
^ SolidFillStyle color: (Color white alpha: 0.35 )
235
235
]
236
236
237
+ { #category : ' label-styles - windows' }
238
+ PharoDarkTheme >> windowCloseFormSet [
239
+ " Answer the form set to use for the close button of a window."
240
+
241
+ ^ self iconFormSetNamed: #windowCloseInverted
242
+ ]
243
+
244
+ { #category : ' label-styles - windows' }
245
+ PharoDarkTheme >> windowCloseOverFormSet [
246
+ " Answer the form set to use for mouse over window close buttons"
247
+
248
+ ^ self iconFormSetNamed: #windowCloseInverted
249
+ ]
250
+
237
251
{ #category : ' label-styles - windows' }
238
252
PharoDarkTheme >> windowLabelForText: aTextOrString [
239
253
240
254
^ (super windowLabelForText: aTextOrString)
241
255
color: self textColor;
242
256
yourself
243
257
]
258
+
259
+ { #category : ' label-styles - windows' }
260
+ PharoDarkTheme >> windowMaximizeFormSet [
261
+ " Answer the form set to use for the maximize button of a window."
262
+
263
+ ^ self iconFormSetNamed: #windowMaximizeInverted
264
+ ]
265
+
266
+ { #category : ' label-styles - windows' }
267
+ PharoDarkTheme >> windowMaximizeOverFormSet [
268
+ " Answer the form set to use for mouse over window maximize buttons"
269
+
270
+ ^ self iconFormSetNamed: #windowMaximizeInverted
271
+ ]
272
+
273
+ { #category : ' label-styles - windows' }
274
+ PharoDarkTheme >> windowMenuFormSet [
275
+ " Answer the form set to use for the menu button of a window."
276
+
277
+ ^ self iconFormSetNamed: #windowMenuInverted
278
+ ]
279
+
280
+ { #category : ' label-styles - windows' }
281
+ PharoDarkTheme >> windowMinimizeFormSet [
282
+ " Answer the form set to use for the minimize button of a window."
283
+
284
+ ^ self iconFormSetNamed: #windowMinimizeInverted
285
+ ]
286
+
287
+ { #category : ' label-styles - windows' }
288
+ PharoDarkTheme >> windowMinimizeOverFormSet [
289
+ " Answer the form set to use for mouse over window minimize buttons"
290
+
291
+ ^ self iconFormSetNamed: #windowMinimizeInverted
292
+ ]
0 commit comments