[squeak-dev] The Trunk: ToolBuilder-Kernel-mt.70.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Mar 29 12:39:14 UTC 2015


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

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

Name: ToolBuilder-Kernel-mt.70
Author: mt
Time: 29 March 2015, 2:39:08.547 pm
UUID: 294b0f5a-5be8-a84b-9ba8-dde998bebf97
Ancestors: ToolBuilder-Kernel-dtl.69

Added support for a help text to input field spec to give users a cue which kind of input is expected.

=============== Diff against ToolBuilder-Kernel-dtl.69 ===============

Item was changed:
  PluggableTextSpec subclass: #PluggableInputFieldSpec
+ 	instanceVariableNames: 'helpText'
- 	instanceVariableNames: ''
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'ToolBuilder-Kernel'!
  
  !PluggableInputFieldSpec commentStamp: 'ar 2/12/2005 23:13' prior: 0!
  PluggableInputField is intended as a HINT for the builder that this widget will be used as a single line input field. Unless explicitly supported it will be automatically substituted by PluggableText.!

Item was added:
+ ----- Method: PluggableInputFieldSpec>>helpText (in category 'accessing') -----
+ helpText
+ 
+ 	^ helpText!

Item was added:
+ ----- Method: PluggableInputFieldSpec>>helpText: (in category 'accessing') -----
+ helpText: aSelectorOrString
+ 
+ 	helpText := aSelectorOrString.!



More information about the Squeak-dev mailing list