Karl Ramberg uploaded a new version of System to project Etoys:
http://source.squeak.org/etoys/System-kfr.55.mcz ==================== Summary ==================== Name: System-kfr.55 Author: kfr Time: 11 March 2012, 8:00:21 pm UUID: b9010c2e-2c86-4395-aa32-0d339385105c Ancestors: System-kfr.54 Add connector label font to Standard systems font menu =============== Diff against System-kfr.54 =============== Item was changed: ----- Method: Preferences class>>rebuildFontConfigurationMenu: (in category 'fonts') ----- rebuildFontConfigurationMenu: aMenu "Rebuild the font-configuration menu." aMenu addTitle: 'Standard System Fonts' translated. aMenu addStayUpIcons. aMenu add: 'default text font...' translated action: #chooseSystemFont. aMenu balloonTextForLastItem: 'Choose the default font to be used for code and in workspaces, transcripts, etc.' translated. aMenu lastItem font: Preferences standardDefaultTextFont. aMenu add: 'list font...' translated action: #chooseListFont. aMenu lastItem font: Preferences standardListFont. aMenu balloonTextForLastItem: 'Choose the font to be used in list panes' translated. aMenu add: 'flaps font...' translated action: #chooseFlapsFont. aMenu lastItem font: Preferences standardFlapFont. aMenu balloonTextForLastItem: 'Choose the font to be used on textual flap tabs' translated. aMenu add: 'etoy tile font...' translated action: #chooseEToysFont. aMenu lastItem font: Preferences standardEToysFont. aMenu balloonTextForLastItem: 'Choose the font to be used on etoy tiles' translated. aMenu add: 'etoy button font...' translated action: #chooseEToysButtonFont. aMenu lastItem font: Preferences standardEToysButtonFont. aMenu balloonTextForLastItem: 'Choose the font to be used on etoy buttons' translated. aMenu add: 'etoy code font...' translated action: #chooseEToysCodeFont. aMenu lastItem font: Preferences standardEToysCodeFont. aMenu balloonTextForLastItem: 'Choose the font to be used for textual code in etoys' translated. aMenu add: 'etoy title font...' translated action: #chooseEToysTitleFont. aMenu lastItem font: Preferences standardEToysTitleFont. aMenu balloonTextForLastItem: 'Choose the font to be used titles in etoys' translated. " aMenu add: 'halo label font...' translated action: #chooseHaloLabelFont. aMenu lastItem font: Preferences standardHaloLabelFont. aMenu balloonTextForLastItem: 'Choose the font to be used on labels in halo' translated. aMenu add: 'object name font...' translated action: #chooseObjectNameFont. aMenu lastItem font: Preferences standardObjectNameFont. aMenu balloonTextForLastItem: 'Choose the font to be used for object names' translated." aMenu add: 'menu font...' translated action: #chooseMenuFont. aMenu lastItem font: Preferences standardMenuFont. aMenu balloonTextForLastItem: 'Choose the font to be used in menus' translated. aMenu add: 'window-title font...' translated action: #chooseWindowTitleFont. aMenu lastItem font: Preferences windowTitleFont emphasis: 1. aMenu balloonTextForLastItem: 'Choose the font to be used in window titles.' translated. aMenu add: 'balloon-help font...' translated action: #chooseBalloonHelpFont. aMenu lastItem font: Preferences standardBalloonHelpFont. aMenu balloonTextForLastItem: 'choose the font to be used when presenting balloon help.' translated. aMenu add: 'button font...' translated action: #chooseButtonFont. aMenu lastItem font: Preferences standardButtonFont. aMenu balloonTextForLastItem: 'Choose the font to be used for (some) buttons.' translated. aMenu add: 'code font...' translated action: #chooseCodeFont. aMenu lastItem font: Preferences standardCodeFont. aMenu balloonTextForLastItem: 'Choose the font to be used in code panes.' translated. + aMenu add: 'connector label font...' translated action: #chooseConnectorsLabelFont. + aMenu lastItem font: Preferences connectorsLabelFont. + aMenu balloonTextForLastItem: 'Choose the font to be used in connector labels.' translated. + aMenu addLine. aMenu add: 'restore default font choices' translated action: #restoreDefaultFonts. aMenu balloonTextForLastItem: 'Use the standard system font defaults' translated. aMenu add: 'show current font choices' translated action: #printStandardSystemFonts. aMenu balloonTextForLastItem: 'Open a window showing the current font settings' translated. aMenu addLine. aMenu add: 'refresh this menu' translated target: aMenu action: #updateMenu. aMenu balloonTextForLastItem: 'If any font settings have changed since you pinned this menu up, this will allow the menu to rebuilt to reflect current font choices.' translated. ^ aMenu! _______________________________________________ etoys-dev mailing list [hidden email] http://lists.squeakland.org/mailman/listinfo/etoys-dev |
Free forum by Nabble | Edit this page |