[squeak-dev] The Inbox: ToolBuilder-Kernel-tfel.53.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Mar 16 12:59:46 UTC 2012


A new version of ToolBuilder-Kernel was added to project The Inbox:
http://source.squeak.org/inbox/ToolBuilder-Kernel-tfel.53.mcz

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

Name: ToolBuilder-Kernel-tfel.53
Author: tfel
Time: 16 March 2012, 1:59:41.04 pm
UUID: 3d5ea078-17ab-4f05-a24a-25d9197f01e4
Ancestors: ToolBuilder-Kernel-cmm.52

add borderColor and borderWidth to PluggableWidgetSpec, after we already added color

=============== Diff against ToolBuilder-Kernel-cmm.52 ===============

Item was changed:
  ToolBuilderSpec subclass: #PluggableWidgetSpec
+ 	instanceVariableNames: 'model frame color borderColor borderWidth'
- 	instanceVariableNames: 'model frame color'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'ToolBuilder-Kernel'!
  
  !PluggableWidgetSpec commentStamp: 'ar 2/9/2005 18:40' prior: 0!
  The abstract superclass for all widgets.
  
  Instance variables:
  	model	<Object>	The object the various requests should be directed to.
  	frame	<Rectangle> The associated layout frame for this object (if any).
  !

Item was added:
+ ----- Method: PluggableWidgetSpec>>borderColor (in category 'accessing') -----
+ borderColor
+ 	"Answer the value of borderColor"
+ 
+ 	^ borderColor!

Item was added:
+ ----- Method: PluggableWidgetSpec>>borderColor: (in category 'accessing') -----
+ borderColor: anObject
+ 	"Set the value of borderColor"
+ 
+ 	borderColor := anObject!

Item was added:
+ ----- Method: PluggableWidgetSpec>>borderWidth (in category 'accessing') -----
+ borderWidth
+ 	"Answer the value of borderWidth"
+ 
+ 	^ borderWidth!

Item was added:
+ ----- Method: PluggableWidgetSpec>>borderWidth: (in category 'accessing') -----
+ borderWidth: anObject
+ 	"Set the value of borderWidth"
+ 
+ 	borderWidth := anObject!



More information about the Squeak-dev mailing list