[squeak-dev] The Trunk: ToolBuilder-Morphic-mt.171.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Jul 31 08:32:08 UTC 2016


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

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

Name: ToolBuilder-Morphic-mt.171
Author: mt
Time: 31 July 2016, 10:32:00.85249 am
UUID: de835798-12b4-df4e-9232-dcf31e11ee6f
Ancestors: ToolBuilder-Morphic-mt.170

*** Widget Refactorings and UI Themes (Part 2 of 11) ***

Simplify window colors and prepare them and other properties of system windows to be themed.

=============== Diff against ToolBuilder-Morphic-mt.170 ===============

Item was changed:
+ Model subclass: #ListChooser
- Object subclass: #ListChooser
  	instanceVariableNames: 'window fullList selectedItems searchText searchMorph title listMorph index realIndex buttonBar builder addAllowed result'
  	classVariableNames: ''
  	poolDictionaries: ''
  	category: 'ToolBuilder-Morphic'!
  
  !ListChooser commentStamp: 'MAD 3/14/2010 16:20' prior: 0!
  I am a simple dialog to allow the user to pick from a list of strings or symbols.
  I support keyboard and mouse navigation, and interactive filtering of the displayed items.
  
  You can specify whether you want the index, or the value of the selected item. If you're interested in the value, you can also allow users to Add a new value not in the list.
  
  cmd-s or <enter> or double-click answers the currently selected item's value/index;
  cmd-l or <escape> or closing the window answers nil/zero.
  
  Now using ToolBuilder, so needs Morphic-MAD.381.
  
  Released under the MIT Licence.!



More information about the Squeak-dev mailing list