[squeak-dev] The Trunk: SUnitGUI-mt.63.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Jul 31 08:36:48 UTC 2016


Marcel Taeumel uploaded a new version of SUnitGUI to project The Trunk:
http://source.squeak.org/trunk/SUnitGUI-mt.63.mcz

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

Name: SUnitGUI-mt.63
Author: mt
Time: 31 July 2016, 10:36:41.86449 am
UUID: 7ed7c1d5-ab99-b248-ad1a-fa14d90fc687
Ancestors: SUnitGUI-mt.62

*** Widget Refactorings and UI Themes (Part 2 of 11) ***

Simplify window colors and prepare them and other properties of system windows to be themed.

=============== Diff against SUnitGUI-mt.62 ===============

Item was changed:
+ Model subclass: #TestRunner
- Object subclass: #TestRunner
  	instanceVariableNames: 'categories categoriesSelected classes classIndex classesSelected failedList failedSelected errorList errorSelected lastUpdate result previousRun categoryPattern classPattern'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'SUnitGUI'!
  
  !TestRunner commentStamp: '<historical>' prior: 0!
  <lint: #ignore rule: #classNotReferenced rational: 'this view is only accessed from menus'>
  
  !

Item was removed:
- ----- Method: TestRunner class>>windowColorSpecification (in category 'window color') -----
- windowColorSpecification
- 
- 	^ WindowColorSpec 
- 		classSymbol: self name 
- 		wording: 'Test Runner' 
- 		brightColor:  Color orange
- 		pastelColor: (Color r: 0.65 g: 0.753 b: 0.976)
- 		helpMessage: 'The Camp Smalltalk TestRunner tool for SUnit'!

Item was removed:
- ----- Method: TestRunner>>defaultBackgroundColor (in category 'private') -----
- defaultBackgroundColor
- 	"<lint: #expect rule: #overridesSuper rational: 'we want a different color than the parent'>"
- 
- 	^ Preferences testRunnerWindowColor!

Item was added:
+ ----- Method: TestRunner>>defaultWindowColor (in category 'user interface') -----
+ defaultWindowColor
+ 	^ (Color r: 0.9 g: 0.576 b: 0.09)!



More information about the Squeak-dev mailing list