Open-Source-Software-Entwicklung und Downloads

Browse Subversion Repository

Contents of /trunk/doc/en/html/setup/teraterm-win.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3227 - (show annotations) (download) (as text)
Tue Mar 24 15:10:33 2009 UTC (15 years, 2 months ago) by maya
File MIME type: text/html
File size: 14916 byte(s)
CVS から SVN へ移行: 改行コードを LF から CR+LF へ変換
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3 <html>
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6 <title>Window (Tera Term setup file)</title>
7 <meta http-equiv="Content-Style-Type" content="text/css">
8 <link rel="stylesheet" href="../style.css" type="text/css">
9 </head>
10 <body>
11
12 <h1><a name="autocopy">Disabling auto text copying</a></h1>
13
14 <p>
15 If you select text by mouse, it is copied to the clipboard at the same time. To disable the auto text copying, edit the AutoTextCopy line in the [Tera Term] section of the setup file like the following:
16 </p>
17
18 <pre>
19 AutoTextCopy=off
20 </pre>
21
22 <pre>
23 Default:
24 AutoTextCopy=on
25 </pre>
26
27
28 <h1><a name="delimiter">Delimiters of a word selected by double clicking</a></h1>
29
30 <p>
31 You can select a word by double clicking it with the left mouse button. You can specify delimiter characters for the word selection by editing the DelimList line in the [Tera Term] section of the setup file like the following:
32 </p>
33
34 <pre>
35 DelimList=&lt;delimiter characters&gt;
36 </pre>
37
38 <p>
39 For example:
40 </p>
41
42 <pre>
43 DelimList=&lt;&gt;()[]
44 </pre>
45
46 <p>
47 specifies 6 delimiter characters "&lt;", "&gt;", "(", ")", "[" and "]".
48 Note that the space and "$" characters should be specified as "$20" and "$24":
49 </p>
50
51 <pre>
52 DelimList=$20 ; space character
53 </pre>
54
55 <pre>
56 Default:
57 DelimList=$20!"#$24%&amp;'()*+,-./:;&lt;=&gt;?@[\]^`{|}~
58 </pre>
59
60 <p>
61 In the DelimList line, only singe-byte code characters can be specified. Double-byte code characters (Japanese kanji) are regarded as delimiters. You can make them be non-delimiters by editing the DelimDBCS line like the following:
62 </p>
63
64 <pre>
65 DelimDBCS=off
66 </pre>
67
68 <pre>
69 Default:
70 DelimDBCS=on
71 </pre>
72
73 <p>
74 If you prefer the word selection behavior of earlier Tera Term versions, specify like the following:
75 </p>
76
77 <pre>
78 DelimList=$20
79 DelimDBCS=off
80 </pre>
81
82
83 <h1><a name="popup">Disabling the pop-up menu</a></h1>
84
85 <p>
86 When the menu bar is hidden, clicking the left mouse button while pressing the Ctrl key causes the pop-up menu to appear. To disable the pop-up menu, edit the EnablePopupMenu line in the [Tera Term] section of the setup file like the following:
87 </p>
88
89 <pre>
90 EnablePopupMenu=off
91 </pre>
92
93 <pre>
94 Default:
95 EnablePopupMenu=on
96 </pre>
97
98
99 <h1><a name="menubar">Hiding the "Show menu bar" command</a></h1>
100
101 <p>
102 When the menu bar is hidden, the "Show menu bar" command appears in the system menu. To hide the "Show menu bar" command, edit the EnableShowMenu line in the [Tera Term] section of the setup file like the following:
103 </p>
104
105 <pre>
106 EnableShowMenu=off
107 </pre>
108
109 <pre>
110 Default:
111 EnableShowMenu=on
112 </pre>
113
114
115 <h1><a name="lang">Disabling the language mode selection</a></h1>
116
117 <p>
118 To disable the language mode selection in the [Setup] General dialog box, edit the LanguageSelection line in the [Tera Term] section of the setup file like the following:
119 </p>
120
121 <pre>
122 LanguageSelection=off
123 </pre>
124
125 <pre>
126 Default:
127 LanguageSelection=on
128 </pre>
129
130
131 <h1><a name="scrollbuf">Maximum scroll buffer size</a></h1>
132
133 <p>
134 You can change the maximum scroll buffer size, which can be specified in the [Setup] Window dialog box, by editing the MaxBuffSize line in the [Tera Term] section of the setup file like the following:
135 </p>
136
137 <pre>
138 MaxBuffSize=&lt;number of lines&gt;
139 (should be less than or equal to 500000)
140 </pre>
141
142 <p>
143 Note: Tera Term consumes &lt;scroll buffer size&gt; * &lt;terminal width&gt; * 5 bytes of memory for the scroll buffer.
144 </p>
145
146 <pre>
147 Default:
148 MaxBuffSize=10000
149 </pre>
150
151
152 <h1><a name="blink">Nonblinking cursor</a></h1>
153
154 <p>
155 You can make the cursor nonblinking by editing the NonblinkingCursor line in the [Tera Term] section of the setup file like the following:
156 </p>
157
158 <pre>
159 NonblinkingCursor=on
160 </pre>
161
162 <pre>
163 Default:
164 NonblinkingCursor=off
165 </pre>
166
167
168 <h1><a name="scrollline">Maximum number of lines to move in a jump scrolling</a></h1>
169
170 <p>
171 To change the maximum number of lines to move in a jump scrolling, edit the ScrollThreshold line in the [Tera Term] section of the setup file like the following:
172 </p>
173
174 <pre>
175 ScrollThreshold=&lt;number of lines&gt;
176 </pre>
177
178 <pre>
179 Default:
180 ScrollThreshold=12
181 </pre>
182
183
184 <h1><a name="textselect">Disabling text selection when the window is activated by mouse</a></h1>
185
186 <p>
187 When the window is inactive, you can activate the window by clicking the text area of window. In the default setup, the text selection is started by this mouse clicking at the same time. To disable the text selection when the window is activated by mouse, edit the SelectOnActive line in the [Tera Term] section of the setup file like the following:
188 </p>
189
190 <pre>
191 SelectOnActivate=off
192 </pre>
193
194 <pre>
195 Default:
196 SelectOnActivate=on
197 </pre>
198
199
200 <h1><a name="title">Title format</a></h1>
201
202 <p>
203 To change the title format, edit the TitleFormat line in the [Tera Term] section of the setup file like the following:
204 </p>
205
206 <p>
207 You can change the key code for the left mouse button by editing the TEKGINMouseCode line in the [Tera Term] section of the setup file like the following:
208 </p>
209
210 <pre>
211 TitleFormat=&lt;format ID&gt;
212 </pre>
213
214 <p>
215 &lt;format ID&gt; is a integer value. It is treated as bit string.
216 </p>
217
218 <table>
219 <tr>
220 <td>1st bit (1)</td>
221 <td>Displays tcp hostname or serial port number</td>
222 </tr>
223 <tr>
224 <td>2nd bit (2)</td>
225 <td>Displays session No.</td>
226 </tr>
227 <tr>
228 <td>3rd bit (4)</td>
229 <td>Displays VT/TEK</td>
230 </tr>
231 <tr>
232 <td>4th bit (8)</td>
233 <td>Displays &lt;host/port&gt; first</td>
234 </tr>
235 <tr>
236 <td>5th bit (16)</td>
237 <td>Displays TCP port number</td>
238 </tr>
239 <tr>
240 <td>6th bit (32)</td>
241 <td>Displays the baud rate of serial port</td>
242 </tr>
243 </table>
244
245 <p>
246 Examples of &lt;format ID&gt; are shown as follows.
247 </p>
248
249 <pre>
250 Format ID Title format
251 0 &lt;title&gt;
252 1 &lt;title&gt; - &lt;host/port&gt;
253 2 &lt;title&gt; (session no.)
254 3 &lt;title&gt; - &lt;host/port&gt; (session no.)
255 4 &lt;title&gt; VT/TEK
256 5 &lt;title&gt; - &lt;host/port&gt; VT/TEK
257 6 &lt;title&gt; (session no.) VT/TEK
258 7 &lt;title&gt; - &lt;host/port&gt; (session no.) VT/TEK
259 13 &lt;host/port&gt; - &lt;title&gt; VT/TEK
260 29 &lt;host:tcpport/port&gt; - &lt;title&gt; VT/TEK
261 45 &lt;host/port:baud&gt; - &lt;title&gt; VT/TEK
262 61 &lt;host:tcpport/port:baud&gt; - &lt;title&gt; VT/TEK
263 </pre>
264
265 <pre>
266 Default:
267 TitleFormat=5
268 </pre>
269
270
271 <h1><a name="color">Actual colors of "white" and "black" colored text</a></h1>
272
273 <p>
274 The escape sequences "&lt;ESC&gt;[37m" and "&lt;ESC&gt;[30m" make the text color white and black, respectively. Similarly, the escape sequences "&lt;ESC&gt;[47m" and "&lt;ESC&gt;[40m" make the background color white and black, respectively.
275 </p>
276
277 <p>
278 Some applications assume that the screen background is black (like real VT100 terminal), and expect that white colored text is visible. However, the default background color of Tera Term is white, and therefore white colored text is invisible.
279 </p>
280
281 <p>
282 If you edit the UseTextColor line in the [Tera Term] section of the setup file like the following:
283 </p>
284
285 <pre>
286 UseTextColor=on
287 </pre>
288
289 <p>
290 the actual color of "white" colored text (background) becomes a color for "Text" specified in the [Setup] Window dialog box. Similarly, the actual colors for "black" text (background) becomes a color for "Background".
291 </p>
292
293 <pre>
294 Default:
295 UseTextColor=off
296 </pre>
297
298
299 <h1><a name="space">Space between characters (lines)</a></h1>
300
301 <p>
302 To change space between characters (lines), edit the VTFontSpace line in the [Tera Term] section of the setup file like the following:
303 </p>
304
305 <pre>
306 VTFontSpace=&lt;dx1&gt;,&lt;dx2&gt;,&lt;dy1&gt;,&lt;dy2&gt;
307 </pre>
308
309 <pre>
310 Where:
311 &lt;dx1&gt; Left side space for each character in pixels.
312 &lt;dx2&gt; Right side space for each character in pixels.
313 &lt;dy1&gt; Space above each line in pixels.
314 &lt;dy2&gt; Space below each line in pixels.
315 </pre>
316
317 <pre>
318 Example:
319 VTFontSpace=0,1,0,0 1 pixel of right side space for each character.
320 VTFontSpace=0,0,1,0 1 pixel of space above each line.
321 </pre>
322
323 <pre>
324 Default:
325 VTFontSpace=0,0,0,0
326 </pre>
327
328
329 <h1><a name="window">Hiding the [Window] menu</a></h1>
330
331 <p>
332 To hide the [Window] menu, edit the WindowMenu line in the [Tera Term] section of the setup file like the following:
333 </p>
334
335 <pre>
336 WindowMenu=off
337 </pre>
338
339 <pre>
340 Default:
341 WindowMenu=on
342 </pre>
343
344
345 <h1><a name="eterm">Eterm lookfeel window</a></h1>
346
347 <p>
348 To specify the detailed settings for Eterm lookfeel window, edit the [Tera Term] section of the setup file like the following:
349 </p>
350
351 <table>
352 <tr>
353 <th>BGSPIPath</th>
354 <td>On / Off</td>
355 <td>This option can specify Susie plugin path to load the image. Susie is Japanese free software.</td>
356 </tr>
357 <tr>
358 <th>BGFastSizeMove</th>
359 <td>folder name</td>
360 <td>This option enables Tera Term window moving and resizing to more faster. This feature is valid in Windows dragging mode.</td>
361 </tr>
362 <tr>
363 <th>BGFlickerlessMove</th>
364 <td>On / Off</td>
365 <td>This option can reduce the flicker of window moving.</td>
366 </tr>
367 <tr>
368 <th>BGUseAlphaBlendAPI</th>
369 <td>On / Off</td>
370 <td>For debug. Tera Term does not use AlphaBlend API when this option is off.</td>
371 </tr>
372 <tr>
373 <th>BGNoFrame</th>
374 <td>On / Off</td>
375 <td>Tera Term window is without frame when this option is on and HideTitle option is on.
376 If so, you can resize window with Alt + Shift + LeftDrag.</td>
377 </tr>
378 <tr>
379 <th>BGThemeFile</th>
380 <td>file name</td>
381 <td>You can specify the theme file.<br>
382 Tera Term will randomly select one of files when the theme file is specify with wildcard.</td>
383 </tr>
384 </table>
385
386 <pre>
387 Default:
388 BGUseAlphaBlendAPI = On
389 BGSPIPath = plugin
390 BGFastSizeMove = On
391 BGFlickerlessMove = On
392 BGNoFrame = Off
393 BGThemeFile = theme\*.ini
394 </pre>
395
396 <h2>Config of theme file</h2>
397
398 <table>
399 <tr>
400 <th>BGReverseTextTone</th>
401 <td>0 - 255</td>
402 <td>The transparency value of the reverse text.</td>
403 </tr>
404 <tr>
405 <th>BGPictureFile</th>
406 <td>file name</td>
407 <td>You can specify the image file name merging with the wall paper.<br>
408 Tera Term will randomly select one of files when the wild card is specified.<br>
409 Please specify the relative path from the thema file when you want to use the relative path.<br>
410 The kind of file that Tera Term can load is depend the plugin stored in BGSPIPath.<br>
411 Tera Term can load the bitmap file when there is not plugin.<br>
412 </td>
413 </tr>
414 <tr>
415 <th>BGPicturePattern</th>
416 <td>Stretch<br>
417 Tile<br>
418 Center<br>
419 FitWidth<br>
420 FitHeight<br>
421 AutoFit</td>
422 <td>You can specify the painting method of the image file.<br>
423 Both FitWidth and FitHeight can expand or recude the image while the aspect ratio of the image preserves.<br>
424 AutoFit can exchange FitWidth for FitHeight not to generate the space between the window and the image.
425 </td>
426 </tr>
427 <tr>
428 <th>BGPictureBaseColor</th>
429 <td>R, G, B</td>
430 <td>This color can paint between the image file and the window.</td>
431 </tr>
432 <tr>
433 <th>BGPictureTone</th>
434 <td>0 - 255</td>
435 <td>The transparency value of the image file.</td>
436 </tr>
437 <tr>
438 <th>BGFadeTone</th>
439 <td>0 - 255</td>
440 <td>This option can enable the whole background to fade.</td>
441 </tr>
442 <tr>
443 <th>BGFadeColor</th>
444 <td>R, G, B</td>
445 <td>This option can configure the fade color.</td>
446 </tr>
447 <tr>
448 <th>VTFore, Red ...</th>
449 <td>R, G, B</td>
450 <td>This option can configure the text color.</td>
451 </tr>
452 </table>
453
454
455 <h1><a name="maximize">How to scroll the screen when the window size is maximized</a></h1>
456 <p>
457 You can specify how to scroll the screen when the window size is maximized.<br>
458 If the screen is scrolled with the maximized window size, the screen image may be disrupted in some case. Therefore, the screen of maximized window size will be scrolled by using a different method than a usual way by default. However, there may be a minor side effect such as flickering or being slowed down.<br>
459 If a line of MaximizedBugTweak in [Tera Term] section of a setup file is modified as follows, a usual method will be used even the window size is maximized to avoid such side effects. However, as described above, the screen image may be disrupted.
460 </p>
461
462 <pre>
463 MaximizedBugTweak=off
464 </pre>
465
466 <pre>
467 Default:
468 MaximizedBugTweak=on
469 </pre>
470
471
472 <h1><a name="killfocus">Display the cursor even if the window comes out of focus</a></h1>
473 <p>
474 Tera Term will display the cursor even if the window comes out of focus.<br>
475 If you want to disable this option, modify a line of KillFocusCursor in [Tera Term] section of setup file as follows.
476 </p>
477
478 <pre>
479 KillFocusCursor=off
480 </pre>
481
482 <pre>
483 Default:
484 KillFocusCursor=on
485 </pre>
486
487
488 <h1><a name="savevtwinpos">Save the window position</a></h1>
489 <p>
490 Tera Term does not save the window position when "Save setup" was called.<br>
491 If you enable this position, current window position is saved to a specified setup file.
492 </p>
493
494 <p>
495 Also if this option is enabled, current window position and terminal size are saved to the current setup file when VT window was closed.
496 </p>
497
498 <pre>
499 SaveVTWinPos=on
500 </pre>
501
502 <pre>
503 Default:
504 SaveVTWinPos=off
505 </pre>
506
507
508 <h1><a name="WindowIcon">Change the window icon</a></h1>
509 <p>
510 Tera Term executable program includes "VT window" icon, "TEK window" icon, and some other icons.
511 If you change the value of VTIcon or TEKIcon, the displaying icon of VT window or TEK window is changed.
512 </p>
513
514 <p>
515 For example, to use old icon for VT window, specify like the following:
516 </p>
517
518 <pre>
519 VTIcon=VT_CLASSIC
520 </pre>
521
522 <p>
523 Following icon names are available:
524 </p>
525
526 <table>
527 <thead>
528 <tr><th>Icon name</th> <th>Icon</th></tr>
529 </thead>
530
531 <tbody>
532 <tr><td>TTERM</td> <td><img src="../image/tterm.png"></td></tr>
533 <tr><td>VT</td> <td><img src="../image/vt.png"></td></tr>
534 <tr><td>TEK</td> <td><img src="../image/tek.png"></td></tr>
535 <tr><td>TTERM_CLASSIC</td> <td><img src="../image/tt_classic.png"></td></tr>
536 <tr><td>VT_CLASSIC</td> <td><img src="../image/vt_classic.png"></td></tr>
537 <tr><td>CYGTERM</td> <td><img src="../image/cygterm.png"></td></tr>
538 <tr><td>Default</td> <td>Default("VT" at VT window, "TEK" at TEK window)</td></tr>
539 </tbody>
540 </table>
541
542 <pre>
543 Default:
544 VTIcon=Default
545 TEKIcon=Default
546 </pre>
547
548
549 </body>
550 </html>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26