[squeak-dev] The Trunk: Kernel-ar.261.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[squeak-dev] The Trunk: Kernel-ar.261.mcz

commits-2
Andreas Raab uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ar.261.mcz

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

Name: Kernel-ar.261
Author: ar
Time: 5 October 2009, 11:33:44 am
UUID: fa1375f2-f6e4-dd4b-a7b2-6d12fc2cb4cf
Ancestors: Kernel-ar.260

Vector ParagraphEditor's [shifted]yellowButtonMenu through StringHolder's menu item definition.

=============== Diff against Kernel-ar.260 ===============

Item was changed:
  ----- Method: ParagraphEditor class>>yellowButtonExpertMenu (in category 'class initialization') -----
  yellowButtonExpertMenu
 
+ ^ SelectionMenu fromArray: StringHolder yellowButtonMenuItems.
- ^ MenuMorph fromArray: {
- {'set font... (k)' translated. #offerFontMenu}.
- {'set style... (K)' translated. #changeStyle}.
- {'set alignment... (u)' translated. #chooseAlignment}.
- #-.
- {'make project link (P)' translated. #makeProjectLink}.
- #-.
- {'find...(f)' translated. #find}.
- {'find again (g)' translated. #findAgain}.
- {'set search string (h)' translated. #setSearchString}.
- #-.
- {'do again (j)' translated. #again}.
- {'undo (z)' translated. #undo}.
- #-.
- {'copy (c)' translated. #copySelection}.
- {'cut (x)' translated. #cut}.
- {'paste (v)' translated. #paste}.
- {'paste...' translated. #pasteRecent}.
- #-.
- {'do it (d)' translated. #doIt}.    
- {'print it (p)' translated. #printIt}.    
- {'inspect it (i)' translated. #inspectIt}.    
- {'explore it (I)' translated. #exploreIt}.    
- {'debug it' translated. #debugIt}.    
- {'tally it' translated. #tallyIt}.
- #-.
- {'accept (s)' translated. #accept}.
- {'cancel (l)' translated. #cancel}.
- #-.
- {'show bytecodes' translated. #showBytecodes}.
- #-.
- {'copy html' translated. #copyHtml}.
- #-.
- {'more...' translated. #shiftedTextPaneMenuRequest}.
- }.
  !

Item was changed:
  ----- Method: ParagraphEditor class>>shiftedYellowButtonMenu (in category 'class initialization') -----
  shiftedYellowButtonMenu
  "Answer the menu to be presented when the yellow button is pressed while the shift key is down"
 
+ ^ SelectionMenu fromArray: StringHolder shiftedYellowButtonMenuItems
- ^ MenuMorph fromArray: {
- {'explain' translated. #explain}.
- {'pretty print' translated. #prettyPrint}.
- {'pretty print with color' translated. #prettyPrintWithColor}.
- {'file it in (G)' translated. #fileItIn}.
- {'tiles from it' translated. #selectionAsTiles}.
- {'spawn (o)' translated. #spawn}.
- #-.
- {'browse it (b)' translated. #browseIt}.
- {'senders of it (n)' translated. #sendersOfIt}.
- {'implementors of it (m)' translated. #implementorsOfIt}.
- {'references to it (N)' translated. #referencesToIt}.
- #-.
- {'selectors containing it (W)' translated. #methodNamesContainingIt}.
- {'method strings with it (E)' translated. #methodStringsContainingit}.
- {'method source with it' translated. #methodSourceContainingIt}.
- {'class names containing it' translated. #classNamesContainingIt}.
- {'class comments with it' translated. #classCommentsContainingIt}.
- {'change sets with it' translated. #browseChangeSetsWithSelector}.
- #-.
- {'save contents to file...' translated. #saveContentsInFile}.
- {'send contents to printer' translated. #sendContentsToPrinter}.
- {'printer setup' translated. #printerSetup}.
- #-.
- {'special menu...' translated. #presentSpecialMenu}.
- {'more...' translated. #yellowButtonActivity}.
- }
  !