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

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

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

Name: ToolBuilder-Kernel-mt.83
Author: mt
Time: 27 April 2015, 4:00:47.058 pm
UUID: 1447bb40-0c02-5248-8feb-6891d2a30693
Ancestors: ToolBuilder-Kernel-mt.82

Added configuration options for line wrapping to text spec.

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

Item was added:
+ ----- Method: PluggableInputFieldSpec>>hardLineWrap (in category 'accessing') -----
+ hardLineWrap
+
+ ^ false!

Item was added:
+ ----- Method: PluggableInputFieldSpec>>softLineWrap (in category 'accessing') -----
+ softLineWrap
+
+ ^ false!

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

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

Item was added:
+ ----- Method: PluggableTextSpec>>softLineWrap (in category 'accessing') -----
+ softLineWrap
+
+ ^ softLineWrap!

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