The Trunk: ToolBuilder-Kernel-eem.36.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-eem.36.mcz

commits-2
Eliot Miranda uploaded a new version of ToolBuilder-Kernel to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Kernel-eem.36.mcz

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

Name: ToolBuilder-Kernel-eem.36
Author: eem
Time: 1 July 2010, 11:51:06.882 am
UUID: 0eabb89d-7ae2-45a8-808d-8bc867f71b5a
Ancestors: ToolBuilder-Kernel-ar.35

ToolBuilder support for browser multi-windows.
2 of 4 (Morphic, ToolBuilder-Kernel, ToolBuilder-Morphic, Tools).

=============== Diff against ToolBuilder-Kernel-ar.35 ===============

Item was added:
+ ----- Method: PluggableWindowSpec>>multiWindowStyle (in category 'accessing') -----
+ multiWindowStyle
+ "Answer the value of multiWindowStyle, a Symbol or nil"
+ ^multiWindowStyle!

Item was changed:
  ----- Method: PluggableWindowSpec>>isDialog (in category 'accessing') -----
  isDialog
 
+ ^isDialog ifNil: [false]
- ^isDialog ifNil: [^false].
-
  !

Item was added:
+ ----- Method: PluggableWindowSpec>>multiWindowStyle: (in category 'accessing') -----
+ multiWindowStyle: aSymbol
+ "Set the value of multiWindowStyle, one of #labelButton or #tabbed"
+
+ multiWindowStyle := aSymbol!

Item was changed:
  PluggableCompositeSpec subclass: #PluggableWindowSpec
+ instanceVariableNames: 'label extent closeAction isDialog multiWindowStyle'
- instanceVariableNames: 'label extent closeAction isDialog'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'ToolBuilder-Kernel'!
 
  !PluggableWindowSpec commentStamp: '<historical>' prior: 0!
  A common window. Expects to see change/update notifications when the label should change.
 
  Instance variables:
  label <String|Symbol> The selector under which to retrieve the label or the label directly
  extent <Point> The (initial) extent of the window.
  closeAction <Symbol> The action to perform when the window is closed.!