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

commits at source.squeak.org commits at source.squeak.org
Thu Apr 16 22:06:53 UTC 2015


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

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

Name: ToolBuilder-Kernel-mt.78
Author: mt
Time: 17 April 2015, 12:06:47.551 am
UUID: de3632b9-ba2c-8847-84f7-5448a832f815
Ancestors: ToolBuilder-Kernel-mt.77

Added property to text spec to indicate changes visually or not.

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

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

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



More information about the Squeak-dev mailing list