The Trunk: ToolBuilder-Kernel-mt.70.mcz

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

The Trunk: ToolBuilder-Kernel-mt.70.mcz

commits-2
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.!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: ToolBuilder-Kernel-mt.70.mcz

Tobias Pape

On 29.03.2015, at 12:39, [hidden email] wrote:

> 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.

What about #help that already is in ToolBuilderSpec?

Best
        -Tobias

>
> =============== 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:




Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: ToolBuilder-Kernel-mt.70.mcz

marcel.taeumel (old)
My guess would be that this maps to #balloonText for Morphic. Not sure. But you are right. We can just use #help from the specs to set the help text in the text fields.

Best,
Marcel