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

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

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

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

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

Name: ToolBuilder-Kernel-mt.81
Author: mt
Time: 19 April 2015, 1:56:53.755 pm
UUID: 9a5155f1-1a8d-e04f-8368-e21d8c74bd6f
Ancestors: ToolBuilder-Kernel-mt.80

Text fields may be read only.

=============== Diff against ToolBuilder-Kernel-mt.80 ===============

Item was changed:
  PluggableWidgetSpec subclass: #PluggableTextSpec
+ instanceVariableNames: 'getText setText selection menu askBeforeDiscardingEdits editText indicateUnacceptedChanges stylerClass font readOnly'
- instanceVariableNames: 'getText setText selection menu askBeforeDiscardingEdits editText indicateUnacceptedChanges stylerClass font'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'ToolBuilder-Kernel'!
 
  !PluggableTextSpec commentStamp: 'ar 2/11/2005 21:58' prior: 0!
  A text editor.
 
  Instance variables:
  getText <Symbol> The selector to retrieve the text.
  setText <Symbol> The selector to set the text.
  selection <Symbol> The selector to retrieve the text selection.
  menu <Symbol> The selector to offer (to retrieve?) the context menu.
  color <Symbol> The selector to retrieve the background color.
 
  !

Item was added:
+ ----- Method: PluggableTextSpec>>readOnly (in category 'accessing') -----
+ readOnly
+
+ ^ readOnly ifNil: [false]!

Item was added:
+ ----- Method: PluggableTextSpec>>readOnly: (in category 'accessing') -----
+ readOnly: aBoolean
+
+ readOnly := aBoolean.!