Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.650.mcz ==================== Summary ==================== Name: Tools-mt.650 Author: mt Time: 13 November 2015, 10:15:26.075 am UUID: d6d83392-6813-4adc-ab71-85e6246bc622 Ancestors: Tools-cmm.649 Adapts text edit menus for offer new text undo functionality. =============== Diff against Tools-cmm.649 =============== Item was changed: ----- Method: FileList>>mainFileContentsMenu: (in category 'file list menu') ----- mainFileContentsMenu: aMenu "Construct aMenu to have items appropriate for the file browser's code pane, for the unshifted state" <fileContentsMenuShifted: false> ^ aMenu addTranslatedList: #( + ('find... (f)' find) - ('find...(f)' find) ('find again (g)' findAgain) + ('find and replace... ' findReplace) + ('do/replace again (j)' again) - ('set search string (h)' setSearchString) - - ('do again (j)' again) ('undo (z)' undo) + ('redo (Z)' redo) - ('copy (c)' copySelection) ('cut (x)' cut) ('paste (v)' paste) ('paste...' pasteRecent) - ('do it (d)' doIt) ('print it (p)' printIt) ('inspect it (i)' inspectIt) ('fileIn selection (G)' fileItIn) - ('accept (s)' accept) ('cancel (l)' cancel) - ('more...' shiftedYellowButtonActivity)); yourself ! Item was changed: ----- Method: InspectorBrowser>>msgPaneMenu:shifted: (in category 'as yet unclassified') ----- msgPaneMenu: aMenu shifted: shifted ^ aMenu labels: + 'find... (f) - 'find...(f) find again (g) + find and replace... + do/replace again (j) - set search string (h) - do again (j) undo (z) + redo (Z) copy (c) cut (x) paste (v) do it (d) print it (p) inspect it (i) accept (s) cancel (l)' + lines: #(0 4 6 9 12) + selections: #(find findAgain findReplace again undo redo copySelection cut paste doIt printIt inspectIt accept cancel)! - lines: #(0 3 5 8 11) - selections: #(find findAgain setSearchString again undo copySelection cut paste doIt printIt inspectIt accept cancel)! Item was changed: ----- Method: StringHolder class>>yellowButtonMenuItems (in category '*Tools-yellow button menu') ----- yellowButtonMenuItems "Returns the standard yellow button menu items" ^{ #-. {'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}. + {'find and replace ...' translated. #findReplace}. + {'do/replace again (j)' translated. #again}. - {'set search string (h)' translated. #setSearchString}. #-. - {'do again (j)' translated. #again}. {'undo (z)' translated. #undo}. + {'redo (Z)' translated. #redo}. #-. {'copy (c)' translated. #copySelection}. {'cut (x)' translated. #cut}. {'paste (v)' translated. #paste}. {'paste...' translated. #pasteRecent}. #-. {'do it (d)' translated. #doIt}. {'debug it (D)' translated. #debugIt}. {'print it (p)' translated. #printIt}. {'inspect it (i)' translated. #inspectIt}. {'explore it (I)' translated. #exploreIt}. {'button for it' translated. #buttonForIt}. {'tally it' translated. #tallyIt}. {'spy on it' translated. #spyOnIt}. #-. {'accept (s)' translated. #accept}. {'cancel (l)' translated. #cancel}. #-. {'show bytecodes' translated. #showBytecodes}. #-. {'copy html' translated. #copyHtml}. #-. {'more...' translated. #shiftedTextPaneMenuRequest}. }! |
Free forum by Nabble | Edit this page |