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

commits at source.squeak.org commits at source.squeak.org
Wed Dec 8 12:48:25 UTC 2021


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

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

Name: ToolBuilder-Kernel-mt.149
Author: mt
Time: 8 December 2021, 1:48:20.985213 pm
UUID: cc017d90-580b-1042-92e9-b2892aac53ff
Ancestors: ToolBuilder-Kernel-mt.148

Complements Morphic-mt.1818

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

Item was changed:
  PluggableWidgetSpec subclass: #PluggableTextSpec
+ 	instanceVariableNames: 'getText setText selection menu askBeforeDiscardingEdits editText indicateUnacceptedChanges stylerClass font readOnly softLineWrap hardLineWrap textColor plainTextOnly'
- 	instanceVariableNames: 'getText setText selection menu askBeforeDiscardingEdits editText indicateUnacceptedChanges stylerClass font readOnly softLineWrap hardLineWrap textColor'
  	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>>plainTextOnly (in category 'accessing') -----
+ plainTextOnly
+ 
+ 	^ plainTextOnly ifNil: [false]!

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



More information about the Squeak-dev mailing list