The Trunk: ToolBuilder-Kernel-mt.78.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.78.mcz

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