The Trunk: Collections-mt.706.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Collections-mt.706.mcz

commits-2
Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.706.mcz

==================== Summary ====================

Name: Collections-mt.706
Author: mt
Time: 11 August 2016, 4:42:16.852564 pm
UUID: 345741f6-24ee-ab49-891f-ae8fa3954ea2
Ancestors: Collections-mt.705

Consider UI theme for colorizing text actions.

=============== Diff against Collections-mt.705 ===============

Item was added:
+ ----- Method: TextAction class>>applyUserInterfaceTheme (in category 'preferences') -----
+ applyUserInterfaceTheme
+
+ Purple := nil.!

Item was added:
+ ----- Method: TextAction class>>canApplyThemeToInstances (in category 'preferences') -----
+ canApplyThemeToInstances
+ ^false!

Item was added:
+ ----- Method: TextAction class>>themeProperties (in category 'preferences') -----
+ themeProperties
+
+ ^ super themeProperties, {
+ { #color. 'Colors'. 'Color for clickable text links.' }
+ } !

Item was added:
+ ----- Method: TextAction>>applyUserInterfaceTheme (in category 'updating') -----
+ applyUserInterfaceTheme
+
+ "Ignore. Only class-side cache."!

Item was changed:
  ----- Method: TextAction>>emphasizeScanner: (in category 'as yet unclassified') -----
  emphasizeScanner: scanner
  "Set the emphasis for text display"
+ Purple ifNil: [Purple := self userInterfaceTheme color ifNil: [Color r: 0.4 g: 0.0 b: 1]].
+ scanner textColor: Purple.!
- scanner textColor: Purple!