Font size change plug-in

[FontSize] menu on Tera Term top menu bar

Feature

A user can add the [FontSize] menu on the top menu bar by using the TTXChangeFontSize plug-in.
When the [FontSize] menu entry is selected, Font size of Tera Term window is automatically change by the specified size.

Usage

Basically, the [FontSize] menu does not display after the plug-in is installed.
Next, a user must register the menu entry in the teraterm.ini file.

Add a [Change Font Size] section in the teraterm.ini file, and describe the "FontSizeMenuN = SIZE" entry. N is an 1-origin number.
SIZE specifies the height, in logical units, of the font's character cell or character. Positive value is treated as character cell height, negative value as character height.
The maximum value for N is 20.

The following menu IDs have been assigned.
You can use these menu IDs to invoke this function from the macro's callmenu command or the KEYBOARD.CNF settings.

TTXChangeFontSize Menu command ID
[FontSize] Menu(1) - Menu(20) 58101 - 58120
[FontSize] Increase 58151
[FontSize] Decrease 58152

Example

TERATERM.INI
[Change Font Size]
FontSize1 = -15
FontSize2 = -19
KEYBOARD.CNF
[User keys]
; Control + 1: Increase font size
User1=1026,3,58151
; Control + 2: Decrease font size
User2=1027,3,58152

ToDo