[squeak-dev] The Trunk: EToys-mt.142.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Aug 24 08:56:24 UTC 2016


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

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

Name: EToys-mt.142
Author: mt
Time: 24 August 2016, 10:55:37.986003 am
UUID: 05513d21-7b60-f54e-b777-a7bcb48c305e
Ancestors: EToys-pre.141

Remove use of ColorTheme.

=============== Diff against EToys-pre.141 ===============

Item was changed:
  ----- Method: EToyGenericDialogMorph>>defaultBorderColor (in category 'initialization') -----
  defaultBorderColor
  	"answer the default border color/fill style for the receiver"
+ 	^ (Color r: 0.9 g: 0.801 b: 0.2)!
- 	^ ColorTheme current dialogBorderColor!

Item was changed:
  ----- Method: EToyGenericDialogMorph>>defaultBorderWidth (in category 'initialization') -----
  defaultBorderWidth
  	"answer the default border width for the receiver"
+ 	^ 2!
- 	^ ColorTheme current dialogBorderWidth!

Item was changed:
  ----- Method: EToyGenericDialogMorph>>inAColumnForText: (in category 'as yet unclassified') -----
  inAColumnForText: someMorphs 
  	^ (self inAColumn: someMorphs) hResizing: #shrinkWrap;
+ 		 color: (Color r: 0.85 g: 0.9 b: 1);
+ 		 borderColor: (Color r: 0.6 g: 0.7 b: 1);
+ 		 borderWidth: 1;
- 		 color: ColorTheme current dialogTextBoxColor;
- 		 borderColor: ColorTheme current dialogTextBoxBorderColor;
- 		 borderWidth: ColorTheme current dialogButtonBorderWidth;
  		 useRoundedCorners!

Item was changed:
  ----- Method: EToyProjectRenamerMorph>>cancelButton (in category 'as yet unclassified') -----
  cancelButton
  	^ self
  		buttonNamed: 'Cancel'
  		action: #doCancel
+ 		color: Color lightRed
- 		color: ColorTheme current cancelColor
  		help: 'Cancel this Publish operation.'!

Item was changed:
  ----- Method: EToyProjectRenamerMorph>>defaultColor (in category 'initialization') -----
  defaultColor
  	"answer the default color/fill style for the receiver"
+ 	^ (Color r: 1 g: 0.85 b: 0.975)!
- 	^ ColorTheme current dialogColor!

Item was changed:
  ----- Method: EToyProjectRenamerMorph>>okButton (in category 'as yet unclassified') -----
  okButton
  	^ self
  		buttonNamed: 'OK'
  		action: #doOK
+ 		color: Color lightGreen
- 		color: ColorTheme current okColor
  		help: 'Change my name and continue publishing.'!

Item was changed:
  ----- Method: EtoyLoginMorph>>cancelButton (in category 'building') -----
  cancelButton
  	^ self
  		buttonNamed: 'Cancel'
  		action: #doCancel
+ 		color: Color lightRed
- 		color: ColorTheme current cancelColor
  		help: 'Cancel this login operation.'!

Item was changed:
  ----- Method: EtoyLoginMorph>>okButton (in category 'building') -----
  okButton
  	^ self
  		buttonNamed: 'OK'
  		action: #doOK
+ 		color: Color lightGreen
- 		color:ColorTheme current okColor
  		help: 'Login into Squeak'!



More information about the Squeak-dev mailing list