Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/teraterm/ttpset/ttset.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4810 - (show annotations) (download) (as text)
Sun Jan 29 13:04:12 2012 UTC (12 years, 2 months ago) by yutakapon
File MIME type: text/x-csrc
File size: 110401 byte(s)
KERMIT:

  - CAPAS(Long Packet, File Attribute)の機能追加。ただし、穴あけが完了していないため、
    条件コンパイル文(#ifdef KERMIT_CAPAS)で無効化してある。
  - teraterm.ini に KmtLongPacket, KmtFileAttr エントリを追加。ただし、現状 on にしても
    有効化できない。
  - 受信バッファが MAXL バイトを超えたら、BOF回避のため、受信処理を終了させるようにした。

1 /* Tera Term
2 Copyright(C) 1994-1998 T. Teranishi
3 All rights reserved. */
4 /* IPv6 modification is Copyright(C) 2000 Jun-ya kato <kato@win6.jp> */
5
6 /* TTSET.DLL, setup file routines*/
7 #ifndef NO_INET6
8 #include <winsock2.h>
9 #include <ws2tcpip.h>
10 #endif /* NO_INET6 */
11 #include "teraterm.h"
12 #include "tttypes.h"
13 #include <stdio.h>
14 #include <string.h>
15 #include <direct.h>
16 #include <ctype.h>
17 #include "ttlib.h"
18 #include "tt_res.h"
19
20 #include "compat_w95.h"
21
22 #define Section "Tera Term"
23
24 static PCHAR far TermList[] =
25 { "VT100", "VT100J", "VT101", "VT102", "VT102J", "VT220J", "VT282",
26 "VT320", "VT382", "VT420", "VT520", "VT525", NULL };
27
28 static PCHAR far RussList[] =
29 { "Windows", "KOI8-R", "CP-866", "ISO-8859-5", NULL };
30 static PCHAR far RussList2[] = { "Windows", "KOI8-R", NULL };
31
32 WORD str2id(PCHAR far * List, PCHAR str, WORD DefId)
33 {
34 WORD i;
35 i = 0;
36 while ((List[i] != NULL) && (_stricmp(List[i], str) != 0))
37 i++;
38 if (List[i] == NULL)
39 i = DefId;
40 else
41 i++;
42
43 return i;
44 }
45
46 void id2str(PCHAR far * List, WORD Id, WORD DefId, PCHAR str, int destlen)
47 {
48 int i;
49
50 if (Id == 0)
51 i = DefId - 1;
52 else {
53 i = 0;
54 while ((List[i] != NULL) && (i < Id - 1))
55 i++;
56 if (List[i] == NULL)
57 i = DefId - 1;
58 }
59 strncpy_s(str, destlen, List[i], _TRUNCATE);
60 }
61
62 int IconName2IconId(const char *name) {
63 int id;
64
65 if (_stricmp(name, "tterm") == 0) {
66 id = IDI_TTERM;
67 }
68 else if (_stricmp(name, "vt") == 0) {
69 id = IDI_VT;
70 }
71 else if (_stricmp(name, "tek") == 0) {
72 id = IDI_TEK;
73 }
74 else if (_stricmp(name, "tterm_classic") == 0) {
75 id = IDI_TTERM_CLASSIC;
76 }
77 else if (_stricmp(name, "vt_classic") == 0) {
78 id = IDI_VT_CLASSIC;
79 }
80 else if (_stricmp(name, "cygterm") == 0) {
81 id = IDI_CYGTERM;
82 }
83 else {
84 id = IdIconDefault;
85 }
86 return id;
87 }
88
89 void IconId2IconName(char *name, int len, int id) {
90 char *icon;
91 switch (id) {
92 case IDI_TTERM:
93 icon = "tterm";
94 break;
95 case IDI_VT:
96 icon = "vt";
97 break;
98 case IDI_TEK:
99 icon = "tek";
100 break;
101 case IDI_TTERM_CLASSIC:
102 icon = "tterm_classic";
103 break;
104 case IDI_VT_CLASSIC:
105 icon = "vt_classic";
106 break;
107 case IDI_CYGTERM:
108 icon = "cygterm";
109 break;
110 default:
111 icon = "Default";
112 }
113 strncpy_s(name, len, icon, _TRUNCATE);
114 }
115
116 WORD GetOnOff(PCHAR Sect, PCHAR Key, PCHAR FName, BOOL Default)
117 {
118 char Temp[4];
119 GetPrivateProfileString(Sect, Key, "", Temp, sizeof(Temp), FName);
120 if (Default) {
121 if (_stricmp(Temp, "off") == 0)
122 return 0;
123 else
124 return 1;
125 }
126 else {
127 if (_stricmp(Temp, "on") == 0)
128 return 1;
129 else
130 return 0;
131 }
132 }
133
134 void WriteOnOff(PCHAR Sect, PCHAR Key, PCHAR FName, WORD Flag)
135 {
136 char Temp[4];
137
138 if (Flag != 0)
139 strncpy_s(Temp, sizeof(Temp), "on", _TRUNCATE);
140 else
141 strncpy_s(Temp, sizeof(Temp), "off", _TRUNCATE);
142 WritePrivateProfileString(Sect, Key, Temp, FName);
143 }
144
145 void WriteInt(PCHAR Sect, PCHAR Key, PCHAR FName, int i)
146 {
147 char Temp[15];
148 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%d", i);
149 WritePrivateProfileString(Sect, Key, Temp, FName);
150 }
151
152 void WriteUint(PCHAR Sect, PCHAR Key, PCHAR FName, UINT i)
153 {
154 char Temp[15];
155 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%u", i);
156 WritePrivateProfileString(Sect, Key, Temp, FName);
157 }
158
159 void WriteInt2(PCHAR Sect, PCHAR Key, PCHAR FName, int i1, int i2)
160 {
161 char Temp[32];
162 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%d,%d", i1, i2);
163 WritePrivateProfileString(Sect, Key, Temp, FName);
164 }
165
166 void WriteInt4(PCHAR Sect, PCHAR Key, PCHAR FName,
167 int i1, int i2, int i3, int i4)
168 {
169 char Temp[64];
170 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%d,%d,%d,%d",
171 i1, i2, i3, i4);
172 WritePrivateProfileString(Sect, Key, Temp, FName);
173 }
174
175 void WriteInt6(PCHAR Sect, PCHAR Key, PCHAR FName,
176 int i1, int i2, int i3, int i4, int i5, int i6)
177 {
178 char Temp[96];
179 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%d,%d,%d,%d,%d,%d",
180 i1, i2,i3, i4, i5, i6);
181 WritePrivateProfileString(Sect, Key, Temp, FName);
182 }
183
184 void WriteFont(PCHAR Sect, PCHAR Key, PCHAR FName,
185 PCHAR Name, int x, int y, int charset)
186 {
187 char Temp[80];
188 if (Name[0] != 0)
189 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%s,%d,%d,%d",
190 Name, x, y, charset);
191 else
192 Temp[0] = 0;
193 WritePrivateProfileString(Sect, Key, Temp, FName);
194 }
195
196 void FAR PASCAL ReadIniFile(PCHAR FName, PTTSet ts)
197 {
198 int i;
199 HDC TmpDC;
200 char Temp[MAX_PATH], Temp2[MAX_PATH];
201 OSVERSIONINFO osvi;
202
203 ts->Minimize = 0;
204 ts->HideWindow = 0;
205 ts->LogFlag = 0; // Log flags
206 ts->FTFlag = 0; // File transfer flags
207 ts->MenuFlag = 0; // Menu flags
208 ts->TermFlag = 0; // Terminal flag
209 ts->ColorFlag = 0; // ANSI/Attribute color flags
210 ts->FontFlag = 0; // Font flag
211 ts->PortFlag = 0; // Port flags
212 ts->WindowFlag = 0; // Window flags
213 ts->CtrlFlag = 0; // Control sequence flags
214 ts->TelPort = 23;
215
216 ts->DisableTCPEchoCR = FALSE;
217
218 osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
219 GetVersionEx(&osvi);
220
221 /* Version number */
222 /* GetPrivateProfileString(Section,"Version","",
223 Temp,sizeof(Temp),FName); */
224
225 /* Language */
226 GetPrivateProfileString(Section, "Language", "",
227 Temp, sizeof(Temp), FName);
228 if (_stricmp(Temp, "Japanese") == 0)
229 ts->Language = IdJapanese;
230 else if (_stricmp(Temp, "Russian") == 0)
231 ts->Language = IdRussian;
232 else if (_stricmp(Temp, "English") == 0)
233 ts->Language = IdEnglish;
234 else if (_stricmp(Temp,"Korean") == 0) // HKS
235 ts->Language = IdKorean;
236 else if (_stricmp(Temp,"UTF-8") == 0)
237 ts->Language = IdUtf8;
238 else {
239 switch (PRIMARYLANGID(GetSystemDefaultLangID())) {
240 case LANG_JAPANESE:
241 ts->Language = IdJapanese;
242 break;
243 case LANG_RUSSIAN:
244 ts->Language = IdRussian;
245 break;
246 case LANG_KOREAN: // HKS
247 ts->Language = IdKorean;
248 break;
249 default:
250 ts->Language = IdEnglish;
251 }
252 }
253
254 /* Port type */
255 GetPrivateProfileString(Section, "Port", "",
256 Temp, sizeof(Temp), FName);
257 if (_stricmp(Temp, "tcpip") == 0)
258 ts->PortType = IdTCPIP;
259 else if (_stricmp(Temp, "serial") == 0)
260 ts->PortType = IdSerial;
261 else {
262 ts->PortType = IdTCPIP;
263 }
264
265 /* VT win position */
266 GetPrivateProfileString(Section, "VTPos", "-2147483648,-2147483648", Temp, sizeof(Temp), FName); /* default: random position */
267 GetNthNum(Temp, 1, (int far *) (&ts->VTPos.x));
268 GetNthNum(Temp, 2, (int far *) (&ts->VTPos.y));
269
270 /* TEK win position */
271 GetPrivateProfileString(Section, "TEKPos", "-2147483648,-2147483648", Temp, sizeof(Temp), FName); /* default: random position */
272 GetNthNum(Temp, 1, (int far *) &(ts->TEKPos.x));
273 GetNthNum(Temp, 2, (int far *) &(ts->TEKPos.y));
274
275 /* Save VT Window position */
276 ts->SaveVTWinPos = GetOnOff(Section, "SaveVTWinPos", FName, FALSE);
277
278 /* VT terminal size */
279 GetPrivateProfileString(Section, "TerminalSize", "80,24",
280 Temp, sizeof(Temp), FName);
281 GetNthNum(Temp, 1, &ts->TerminalWidth);
282 GetNthNum(Temp, 2, &ts->TerminalHeight);
283 if (ts->TerminalWidth < 0)
284 ts->TerminalWidth = 1;
285 if (ts->TerminalHeight < 0)
286 ts->TerminalHeight = 1;
287
288 /* Terminal size = Window size */
289 ts->TermIsWin = GetOnOff(Section, "TermIsWin", FName, FALSE);
290
291 /* Auto window resize flag */
292 ts->AutoWinResize = GetOnOff(Section, "AutoWinResize", FName, FALSE);
293
294 /* CR Receive */
295 GetPrivateProfileString(Section, "CRReceive", "",
296 Temp, sizeof(Temp), FName);
297 if (_stricmp(Temp, "CRLF") == 0) {
298 ts->CRReceive = IdCRLF;
299 }
300 else if (_stricmp(Temp, "LF") == 0) {
301 ts->CRReceive = IdLF;
302 }
303 else {
304 ts->CRReceive = IdCR;
305 }
306 /* CR Send */
307 GetPrivateProfileString(Section, "CRSend", "",
308 Temp, sizeof(Temp), FName);
309 if (_stricmp(Temp, "CRLF") == 0)
310 ts->CRSend = IdCRLF;
311 else
312 ts->CRSend = IdCR;
313 ts->CRSend_ini = ts->CRSend;
314
315 /* Local echo */
316 ts->LocalEcho = GetOnOff(Section, "LocalEcho", FName, FALSE);
317 ts->LocalEcho_ini = ts->LocalEcho;
318
319 /* Answerback */
320 GetPrivateProfileString(Section, "Answerback", "", Temp,
321 sizeof(Temp), FName);
322 ts->AnswerbackLen =
323 Hex2Str(Temp, ts->Answerback, sizeof(ts->Answerback));
324
325 /* Kanji Code (receive) */
326 GetPrivateProfileString(Section, "KanjiReceive", "",
327 Temp, sizeof(Temp), FName);
328 if (_stricmp(Temp, "EUC") == 0)
329 ts->KanjiCode = IdEUC;
330 else if (_stricmp(Temp, "JIS") == 0)
331 ts->KanjiCode = IdJIS;
332 else if (_stricmp(Temp, "UTF-8") == 0)
333 ts->KanjiCode = IdUTF8;
334 else if (_stricmp(Temp, "UTF-8m") == 0)
335 ts->KanjiCode = IdUTF8m;
336 else if (_stricmp(Temp, "KS5601") == 0)
337 ts->KanjiCode = IdSJIS;
338 else
339 ts->KanjiCode = IdSJIS;
340 // KanjiCode/KanjiCodeSend �������� Language �����������l���u��������
341 {
342 WORD KanjiCode = ts->KanjiCode;
343 ts->KanjiCode = KanjiCodeTranslate(ts->Language,KanjiCode);
344 }
345
346 /* Katakana (receive) */
347 GetPrivateProfileString(Section, "KatakanaReceive", "",
348 Temp, sizeof(Temp), FName);
349 if (_stricmp(Temp, "7") == 0)
350 ts->JIS7Katakana = 1;
351 else
352 ts->JIS7Katakana = 0;
353
354 /* Kanji Code (transmit) */
355 GetPrivateProfileString(Section, "KanjiSend", "",
356 Temp, sizeof(Temp), FName);
357 if (_stricmp(Temp, "EUC") == 0)
358 ts->KanjiCodeSend = IdEUC;
359 else if (_stricmp(Temp, "JIS") == 0)
360 ts->KanjiCodeSend = IdJIS;
361 else if (_stricmp(Temp, "UTF-8") == 0)
362 ts->KanjiCodeSend = IdUTF8;
363 else if (_stricmp(Temp, "KS5601") == 0)
364 ts->KanjiCode = IdSJIS;
365 else
366 ts->KanjiCodeSend = IdSJIS;
367 // KanjiCode/KanjiCodeSend �������� Language �����������l���u��������
368 {
369 WORD KanjiCodeSend = ts->KanjiCodeSend;
370 ts->KanjiCodeSend = KanjiCodeTranslate(ts->Language,KanjiCodeSend);
371 }
372
373 /* Katakana (receive) */
374 GetPrivateProfileString(Section, "KatakanaSend", "",
375 Temp, sizeof(Temp), FName);
376 if (_stricmp(Temp, "7") == 0)
377 ts->JIS7KatakanaSend = 1;
378 else
379 ts->JIS7KatakanaSend = 0;
380
381 /* KanjiIn */
382 GetPrivateProfileString(Section, "KanjiIn", "",
383 Temp, sizeof(Temp), FName);
384 if (_stricmp(Temp, "@") == 0)
385 ts->KanjiIn = IdKanjiInA;
386 else
387 ts->KanjiIn = IdKanjiInB;
388
389 /* KanjiOut */
390 GetPrivateProfileString(Section, "KanjiOut", "",
391 Temp, sizeof(Temp), FName);
392 if (_stricmp(Temp, "B") == 0)
393 ts->KanjiOut = IdKanjiOutB;
394 else if (_stricmp(Temp, "H") == 0)
395 ts->KanjiOut = IdKanjiOutH;
396 else
397 ts->KanjiOut = IdKanjiOutJ;
398
399 /* Auto Win Switch VT<->TEK */
400 ts->AutoWinSwitch = GetOnOff(Section, "AutoWinSwitch", FName, FALSE);
401
402 /* Terminal ID */
403 GetPrivateProfileString(Section, "TerminalID", "",
404 Temp, sizeof(Temp), FName);
405 ts->TerminalID = str2id(TermList, Temp, IdVT100);
406
407 /* Russian character set (host) */
408 GetPrivateProfileString(Section, "RussHost", "",
409 Temp, sizeof(Temp), FName);
410 ts->RussHost = str2id(RussList, Temp, IdKOI8);
411
412 /* Russian character set (client) */
413 GetPrivateProfileString(Section, "RussClient", "",
414 Temp, sizeof(Temp), FName);
415 ts->RussClient = str2id(RussList, Temp, IdWindows);
416
417 /* Title String */
418 GetPrivateProfileString(Section, "Title", "Tera Term",
419 ts->Title, sizeof(ts->Title), FName);
420
421 /* Cursor shape */
422 GetPrivateProfileString(Section, "CursorShape", "",
423 Temp, sizeof(Temp), FName);
424 if (_stricmp(Temp, "vertical") == 0)
425 ts->CursorShape = IdVCur;
426 else if (_stricmp(Temp, "horizontal") == 0)
427 ts->CursorShape = IdHCur;
428 else
429 ts->CursorShape = IdBlkCur;
430
431 /* Hide title */
432 ts->HideTitle = GetOnOff(Section, "HideTitle", FName, FALSE);
433
434 /* Popup menu */
435 ts->PopupMenu = GetOnOff(Section, "PopupMenu", FName, FALSE);
436
437 /* PC-Style bold color mapping */
438 if (GetOnOff(Section, "PcBoldColor", FName, FALSE))
439 ts->ColorFlag |= CF_PCBOLD16;
440
441 /* aixterm style 16 colors mode */
442 if (GetOnOff(Section, "Aixterm16Color", FName, FALSE))
443 ts->ColorFlag |= CF_AIXTERM16;
444
445 /* xterm style 256 colors mode */
446 if (GetOnOff(Section, "Xterm256Color", FName, TRUE))
447 ts->ColorFlag |= CF_XTERM256;
448
449 /* Enable scroll buffer */
450 ts->EnableScrollBuff =
451 GetOnOff(Section, "EnableScrollBuff", FName, TRUE);
452
453 /* Scroll buffer size */
454 ts->ScrollBuffSize =
455 GetPrivateProfileInt(Section, "ScrollBuffSize", 100, FName);
456
457 /* VT Color */
458 GetPrivateProfileString(Section, "VTColor", "0,0,0,255,255,255",
459 Temp, sizeof(Temp), FName);
460 for (i = 0; i <= 5; i++)
461 GetNthNum(Temp, i + 1, (int far *) &(ts->TmpColor[0][i]));
462 for (i = 0; i <= 1; i++)
463 ts->VTColor[i] = RGB((BYTE) ts->TmpColor[0][i * 3],
464 (BYTE) ts->TmpColor[0][i * 3 + 1],
465 (BYTE) ts->TmpColor[0][i * 3 + 2]);
466
467 /* VT Bold Color */
468 GetPrivateProfileString(Section, "VTBoldColor", "0,0,255,255,255,255",
469 Temp, sizeof(Temp), FName);
470 for (i = 0; i <= 5; i++)
471 GetNthNum(Temp, i + 1, (int far *) &(ts->TmpColor[0][i]));
472 for (i = 0; i <= 1; i++)
473 ts->VTBoldColor[i] = RGB((BYTE) ts->TmpColor[0][i * 3],
474 (BYTE) ts->TmpColor[0][i * 3 + 1],
475 (BYTE) ts->TmpColor[0][i * 3 + 2]);
476 if (GetOnOff(Section, "EnableBoldAttrColor", FName, TRUE))
477 ts->ColorFlag |= CF_BOLDCOLOR;
478
479 /* VT Blink Color */
480 GetPrivateProfileString(Section, "VTBlinkColor", "255,0,0,255,255,255",
481 Temp, sizeof(Temp), FName);
482 for (i = 0; i <= 5; i++)
483 GetNthNum(Temp, i + 1, (int far *) &(ts->TmpColor[0][i]));
484 for (i = 0; i <= 1; i++)
485 ts->VTBlinkColor[i] = RGB((BYTE) ts->TmpColor[0][i * 3],
486 (BYTE) ts->TmpColor[0][i * 3 + 1],
487 (BYTE) ts->TmpColor[0][i * 3 + 2]);
488 if (GetOnOff(Section, "EnableBlinkAttrColor", FName, TRUE))
489 ts->ColorFlag |= CF_BLINKCOLOR;
490
491 /* VT Reverse Color */
492 GetPrivateProfileString(Section, "VTReverseColor", "255,255,255,0,0,0",
493 Temp, sizeof(Temp), FName);
494 for (i = 0; i <= 5; i++)
495 GetNthNum(Temp, i + 1, (int far *) &(ts->TmpColor[0][i]));
496 for (i = 0; i <= 1; i++)
497 ts->VTReverseColor[i] = RGB((BYTE) ts->TmpColor[0][i * 3],
498 (BYTE) ts->TmpColor[0][i * 3 + 1],
499 (BYTE) ts->TmpColor[0][i * 3 + 2]);
500 if (GetOnOff(Section, "EnableReverseAttrColor", FName, FALSE))
501 ts->ColorFlag |= CF_REVERSECOLOR;
502
503 ts->EnableClickableUrl =
504 GetOnOff(Section, "EnableClickableUrl", FName, FALSE);
505
506 /* URL Color */
507 GetPrivateProfileString(Section, "URLColor", "0,255,0,255,255,255",
508 Temp, sizeof(Temp), FName);
509 for (i = 0; i <= 5; i++)
510 GetNthNum(Temp, i + 1, (int far *) &(ts->TmpColor[0][i]));
511 for (i = 0; i <= 1; i++)
512 ts->URLColor[i] = RGB((BYTE) ts->TmpColor[0][i * 3],
513 (BYTE) ts->TmpColor[0][i * 3 + 1],
514 (BYTE) ts->TmpColor[0][i * 3 + 2]);
515 if (GetOnOff(Section, "EnableURLColor", FName, TRUE))
516 ts->ColorFlag |= CF_URLCOLOR;
517
518 if (GetOnOff(Section, "URLUnderline", FName, TRUE))
519 ts->FontFlag |= FF_URLUNDERLINE;
520
521 /* TEK Color */
522 GetPrivateProfileString(Section, "TEKColor", "0,0,0,255,255,255",
523 Temp, sizeof(Temp), FName);
524 for (i = 0; i <= 5; i++)
525 GetNthNum(Temp, i + 1, (int far *) &(ts->TmpColor[0][i]));
526 for (i = 0; i <= 1; i++)
527 ts->TEKColor[i] = RGB((BYTE) ts->TmpColor[0][i * 3],
528 (BYTE) ts->TmpColor[0][i * 3 + 1],
529 (BYTE) ts->TmpColor[0][i * 3 + 2]);
530
531 #ifndef NO_ANSI_COLOR_EXTENSION
532 /* ANSI color definition (in the case FullColor=on) -- special option
533 o UseTextColor should be off, or the background and foreground color of
534 VTColor are assigned to color-number 0 and 7 respectively, even if
535 they are specified in ANSIColor.
536 o ANSIColor is a set of 4 values that are color-number(0--15),
537 red-value(0--255), green-value(0--255) and blue-value(0--255). */
538 GetPrivateProfileString(Section, "ANSIColor",
539 " 0, 0, 0, 0,"
540 " 1,255, 0, 0,"
541 " 2, 0,255, 0,"
542 " 3,255,255, 0,"
543 " 4, 0, 0,255,"
544 " 5,255, 0,255,"
545 " 6, 0,255,255,"
546 " 7,255,255,255,"
547 " 8,128,128,128,"
548 " 9,128, 0, 0,"
549 "10, 0,128, 0,"
550 "11,128,128, 0,"
551 "12, 0, 0,128,"
552 "13,128, 0,128,"
553 "14, 0,128,128,"
554 "15,192,192,192", Temp, sizeof(Temp), FName);
555 {
556 char *t;
557 int n = 1;
558 for (t = Temp; *t; t++)
559 if (*t == ',')
560 n++;
561 n /= 4;
562 for (i = 0; i < n; i++) {
563 int colorid, r, g, b;
564 GetNthNum(Temp, i * 4 + 1, (int far *) &colorid);
565 GetNthNum(Temp, i * 4 + 2, (int far *) &r);
566 GetNthNum(Temp, i * 4 + 3, (int far *) &g);
567 GetNthNum(Temp, i * 4 + 4, (int far *) &b);
568 ts->ANSIColor[colorid & 15] =
569 RGB((BYTE) r, (BYTE) g, (BYTE) b);
570 }
571 }
572 #endif /* NO_ANSI_COLOR_EXTENSION */
573
574 TmpDC = GetDC(0); /* Get screen device context */
575 for (i = 0; i <= 1; i++)
576 ts->VTColor[i] = GetNearestColor(TmpDC, ts->VTColor[i]);
577 for (i = 0; i <= 1; i++)
578 ts->VTBoldColor[i] = GetNearestColor(TmpDC, ts->VTBoldColor[i]);
579 for (i = 0; i <= 1; i++)
580 ts->VTBlinkColor[i] = GetNearestColor(TmpDC, ts->VTBlinkColor[i]);
581 for (i = 0; i <= 1; i++)
582 ts->TEKColor[i] = GetNearestColor(TmpDC, ts->TEKColor[i]);
583 /* begin - ishizaki */
584 for (i = 0; i <= 1; i++)
585 ts->URLColor[i] = GetNearestColor(TmpDC, ts->URLColor[i]);
586 /* end - ishizaki */
587 #ifndef NO_ANSI_COLOR_EXTENSION
588 for (i = 0; i < 16; i++)
589 ts->ANSIColor[i] = GetNearestColor(TmpDC, ts->ANSIColor[i]);
590 #endif /* NO_ANSI_COLOR_EXTENSION */
591 ReleaseDC(0, TmpDC);
592 if (GetOnOff(Section, "EnableANSIColor", FName, TRUE))
593 ts->ColorFlag |= CF_ANSICOLOR;
594
595 /* TEK color emulation */
596 ts->TEKColorEmu = GetOnOff(Section, "TEKColorEmulation", FName, FALSE);
597
598 /* VT Font */
599 GetPrivateProfileString(Section, "VTFont", "Terminal,0,-13,1",
600 Temp, sizeof(Temp), FName);
601 GetNthString(Temp, 1, sizeof(ts->VTFont), ts->VTFont);
602 GetNthNum(Temp, 2, (int far *) &(ts->VTFontSize.x));
603 GetNthNum(Temp, 3, (int far *) &(ts->VTFontSize.y));
604 GetNthNum(Temp, 4, &(ts->VTFontCharSet));
605
606 /* Bold font flag */
607 if (GetOnOff(Section, "EnableBold", FName, TRUE))
608 ts->FontFlag |= FF_BOLD;
609
610 /* Russian character set (font) */
611 GetPrivateProfileString(Section, "RussFont", "",
612 Temp, sizeof(Temp), FName);
613 ts->RussFont = str2id(RussList, Temp, IdWindows);
614
615 /* TEK Font */
616 GetPrivateProfileString(Section, "TEKFont", "Courier,0,-13,0",
617 Temp, sizeof(Temp), FName);
618 GetNthString(Temp, 1, sizeof(ts->TEKFont), ts->TEKFont);
619 GetNthNum(Temp, 2, (int far *) &(ts->TEKFontSize.x));
620 GetNthNum(Temp, 3, (int far *) &(ts->TEKFontSize.y));
621 GetNthNum(Temp, 4, &(ts->TEKFontCharSet));
622
623 /* BS key */
624 GetPrivateProfileString(Section, "BSKey", "",
625 Temp, sizeof(Temp), FName);
626 if (_stricmp(Temp, "DEL") == 0)
627 ts->BSKey = IdDEL;
628 else
629 ts->BSKey = IdBS;
630 /* Delete key */
631 ts->DelKey = GetOnOff(Section, "DeleteKey", FName, FALSE);
632
633 /* Meta Key */
634 GetPrivateProfileString(Section, "MetaKey", "off", Temp, sizeof(Temp), FName);
635 if (_stricmp(Temp, "on") == 0)
636 ts->MetaKey = IdMetaOn;
637 else if (_stricmp(Temp, "left") == 0)
638 ts->MetaKey = IdMetaLeft;
639 else if (_stricmp(Temp, "right") == 0)
640 ts->MetaKey = IdMetaRight;
641 else
642 ts->MetaKey = IdMetaOff;
643
644 // Windows95 �n�����E�� Alt ��������������
645 if ((osvi.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) && ts->MetaKey != IdMetaOff) {
646 ts->MetaKey = IdMetaOn;
647 }
648
649 /* Application Keypad */
650 ts->DisableAppKeypad =
651 GetOnOff(Section, "DisableAppKeypad", FName, FALSE);
652
653 /* Application Cursor */
654 ts->DisableAppCursor =
655 GetOnOff(Section, "DisableAppCursor", FName, FALSE);
656
657 /* Russian keyboard type */
658 GetPrivateProfileString(Section, "RussKeyb", "",
659 Temp, sizeof(Temp), FName);
660 ts->RussKeyb = str2id(RussList2, Temp, IdWindows);
661
662 /* Serial port ID */
663 ts->ComPort = GetPrivateProfileInt(Section, "ComPort", 1, FName);
664
665 /* Baud rate */
666 ts->Baud = GetPrivateProfileInt(Section, "BaudRate", 9600, FName);
667
668 /* Parity */
669 GetPrivateProfileString(Section, "Parity", "",
670 Temp, sizeof(Temp), FName);
671 if (_stricmp(Temp, "even") == 0)
672 ts->Parity = IdParityEven;
673 else if (_stricmp(Temp, "odd") == 0)
674 ts->Parity = IdParityOdd;
675 else
676 ts->Parity = IdParityNone;
677
678 /* Data bit */
679 GetPrivateProfileString(Section, "DataBit", "",
680 Temp, sizeof(Temp), FName);
681 if (_stricmp(Temp, "7") == 0)
682 ts->DataBit = IdDataBit7;
683 else
684 ts->DataBit = IdDataBit8;
685
686 /* Stop bit */
687 GetPrivateProfileString(Section, "StopBit", "",
688 Temp, sizeof(Temp), FName);
689 if (_stricmp(Temp, "2") == 0)
690 ts->StopBit = IdStopBit2;
691 else
692 ts->StopBit = IdStopBit1;
693
694 /* Flow control */
695 GetPrivateProfileString(Section, "FlowCtrl", "",
696 Temp, sizeof(Temp), FName);
697 if (_stricmp(Temp, "x") == 0)
698 ts->Flow = IdFlowX;
699 else if (_stricmp(Temp, "hard") == 0)
700 ts->Flow = IdFlowHard;
701 else
702 ts->Flow = IdFlowNone;
703
704 /* Delay per character */
705 ts->DelayPerChar =
706 GetPrivateProfileInt(Section, "DelayPerChar", 0, FName);
707
708 /* Delay per line */
709 ts->DelayPerLine =
710 GetPrivateProfileInt(Section, "DelayPerLine", 0, FName);
711
712 /* Telnet flag */
713 ts->Telnet = GetOnOff(Section, "Telnet", FName, TRUE);
714
715 /* Telnet terminal type */
716 GetPrivateProfileString(Section, "TermType", "xterm", ts->TermType,
717 sizeof(ts->TermType), FName);
718
719 /* TCP port num */
720 ts->TCPPort =
721 GetPrivateProfileInt(Section, "TCPPort", ts->TelPort, FName);
722
723 /* Auto window close flag */
724 ts->AutoWinClose = GetOnOff(Section, "AutoWinClose", FName, TRUE);
725
726 /* History list */
727 ts->HistoryList = GetOnOff(Section, "HistoryList", FName, FALSE);
728
729 /* File transfer binary flag */
730 ts->TransBin = GetOnOff(Section, "TransBin", FName, FALSE);
731
732 /* Log binary flag */
733 ts->LogBinary = GetOnOff(Section, "LogBinary", FName, FALSE);
734
735 /* Log append */
736 ts->Append = GetOnOff(Section, "LogAppend", FName, FALSE);
737
738 /* Log plain text (2005.5.7 yutaka) */
739 ts->LogTypePlainText =
740 GetOnOff(Section, "LogTypePlainText", FName, FALSE);
741
742 /* Log with timestamp (2006.7.23 maya) */
743 ts->LogTimestamp = GetOnOff(Section, "LogTimestamp", FName, FALSE);
744
745 /* Log without transfer dialog */
746 ts->LogHideDialog = GetOnOff(Section, "LogHideDialog", FName, FALSE);
747
748 /* Default Log file name (2006.8.28 maya) */
749 GetPrivateProfileString(Section, "LogDefaultName", "teraterm.log",
750 ts->LogDefaultName, sizeof(ts->LogDefaultName),
751 FName);
752
753 /* Default Log file path (2007.5.30 maya) */
754 GetPrivateProfileString(Section, "LogDefaultPath", "",
755 ts->LogDefaultPath, sizeof(ts->LogDefaultPath),
756 FName);
757
758 /* Auto start logging (2007.5.31 maya) */
759 ts->LogAutoStart = GetOnOff(Section, "LogAutoStart", FName, FALSE);
760
761 /* XMODEM option */
762 GetPrivateProfileString(Section, "XmodemOpt", "",
763 Temp, sizeof(Temp), FName);
764 if (_stricmp(Temp, "crc") == 0)
765 ts->XmodemOpt = XoptCRC;
766 else if (_stricmp(Temp, "1k") == 0)
767 ts->XmodemOpt = Xopt1K;
768 else
769 ts->XmodemOpt = XoptCheck;
770
771 /* XMODEM binary file */
772 ts->XmodemBin = GetOnOff(Section, "XmodemBin", FName, TRUE);
773
774 /* XMODEM ���M�R�}���h (2007.12.21 yutaka) */
775 GetPrivateProfileString(Section, "XModemRcvCommand", "",
776 ts->XModemRcvCommand,
777 sizeof(ts->XModemRcvCommand), FName);
778
779 /* Default directory for file transfer */
780 GetPrivateProfileString(Section, "FileDir", "",
781 ts->FileDir, sizeof(ts->FileDir), FName);
782 if (strlen(ts->FileDir) == 0)
783 strncpy_s(ts->FileDir, sizeof(ts->FileDir), ts->HomeDir, _TRUNCATE);
784 else {
785 _getcwd(Temp, sizeof(Temp));
786 if (_chdir(ts->FileDir) != 0)
787 strncpy_s(ts->FileDir, sizeof(ts->FileDir), ts->HomeDir, _TRUNCATE);
788 _chdir(Temp);
789 }
790
791 /* filter on file send (2007.6.5 maya) */
792 GetPrivateProfileString(Section, "FileSendFilter", "",
793 ts->FileSendFilter, sizeof(ts->FileSendFilter),
794 FName);
795
796 /*--------------------------------------------------*/
797 /* 8 bit control code flag -- special option */
798 if (GetOnOff(Section, "Accept8BitCtrl", FName, TRUE))
799 ts->TermFlag |= TF_ACCEPT8BITCTRL;
800
801 /* Wrong sequence flag -- special option */
802 if (GetOnOff(Section, "AllowWrongSequence", FName, FALSE))
803 ts->TermFlag |= TF_ALLOWWRONGSEQUENCE;
804
805 if (((ts->TermFlag & TF_ALLOWWRONGSEQUENCE) == 0) &&
806 (ts->KanjiOut == IdKanjiOutH))
807 ts->KanjiOut = IdKanjiOutJ;
808
809 // Auto file renaming --- special option
810 if (GetOnOff(Section, "AutoFileRename", FName, FALSE))
811 ts->FTFlag |= FT_RENAME;
812
813 // Auto invoking (character set->G0->GL) --- special option
814 if (GetOnOff(Section, "AutoInvoke", FName, FALSE))
815 ts->TermFlag |= TF_AUTOINVOKE;
816
817 // Auto text copy --- special option
818 ts->AutoTextCopy = GetOnOff(Section, "AutoTextCopy", FName, TRUE);
819
820 /* Back wrap -- special option */
821 if (GetOnOff(Section, "BackWrap", FName, FALSE))
822 ts->TermFlag |= TF_BACKWRAP;
823
824 /* Beep type -- special option */
825 GetPrivateProfileString(Section, "Beep", "", Temp, sizeof(Temp), FName);
826 if (_stricmp(Temp, "off") == 0)
827 ts->Beep = IdBeepOff;
828 else if (_stricmp(Temp, "visual") == 0)
829 ts->Beep = IdBeepVisual;
830 else
831 ts->Beep = IdBeepOn;
832
833 /* Beep on connection & disconnection -- special option */
834 if (GetOnOff(Section, "BeepOnConnect", FName, FALSE))
835 ts->PortFlag |= PF_BEEPONCONNECT;
836
837 /* Auto B-Plus activation -- special option */
838 if (GetOnOff(Section, "BPAuto", FName, FALSE))
839 ts->FTFlag |= FT_BPAUTO;
840 if ((ts->FTFlag & FT_BPAUTO) != 0) { /* Answerback */
841 strncpy_s(ts->Answerback, sizeof(ts->Answerback), "\020++\0200",
842 _TRUNCATE);
843 ts->AnswerbackLen = 5;
844 }
845
846 /* B-Plus ESCCTL flag -- special option */
847 if (GetOnOff(Section, "BPEscCtl", FName, FALSE))
848 ts->FTFlag |= FT_BPESCCTL;
849
850 /* B-Plus log -- special option */
851 if (GetOnOff(Section, "BPLog", FName, FALSE))
852 ts->LogFlag |= LOG_BP;
853
854 /* Clear serial port buffer when port opening -- special option */
855 ts->ClearComBuffOnOpen =
856 GetOnOff(Section, "ClearComBuffOnOpen", FName, TRUE);
857
858 /* Confirm disconnection -- special option */
859 if (GetOnOff(Section, "ConfirmDisconnect", FName, TRUE))
860 ts->PortFlag |= PF_CONFIRMDISCONN;
861
862 /* Ctrl code in Kanji -- special option */
863 if (GetOnOff(Section, "CtrlInKanji", FName, TRUE))
864 ts->TermFlag |= TF_CTRLINKANJI;
865
866 /* Debug flag -- special option */
867 ts->Debug = GetOnOff(Section, "Debug", FName, FALSE);
868
869 /* Delimiter list -- special option */
870 GetPrivateProfileString(Section, "DelimList",
871 "$20!\"#$24%&\'()*+,-./:;<=>?@[\\]^`{|}~",
872 Temp, sizeof(Temp), FName);
873 Hex2Str(Temp, ts->DelimList, sizeof(ts->DelimList));
874
875 /* regard DBCS characters as delimiters -- special option */
876 ts->DelimDBCS = GetOnOff(Section, "DelimDBCS", FName, TRUE);
877
878 // Enable popup menu -- special option
879 if (!GetOnOff(Section, "EnablePopupMenu", FName, TRUE))
880 ts->MenuFlag |= MF_NOPOPUP;
881
882 // Enable "Show menu" -- special option
883 if (!GetOnOff(Section, "EnableShowMenu", FName, TRUE))
884 ts->MenuFlag |= MF_NOSHOWMENU;
885
886 // Enable the status line -- special option
887 if (GetOnOff(Section, "EnableStatusLine", FName, TRUE))
888 ts->TermFlag |= TF_ENABLESLINE;
889
890 // fixed JIS --- special
891 if (GetOnOff(Section, "FixedJIS", FName, FALSE))
892 ts->TermFlag |= TF_FIXEDJIS;
893
894 /* IME Flag -- special option */
895 ts->UseIME = GetOnOff(Section, "IME", FName, TRUE);
896
897 /* IME-inline Flag -- special option */
898 ts->IMEInline = GetOnOff(Section, "IMEInline", FName, TRUE);
899
900 /* Kermit log -- special option */
901 if (GetOnOff(Section, "KmtLog", FName, FALSE))
902 ts->LogFlag |= LOG_KMT;
903 if (GetOnOff(Section, "KmtLongPacket", FName, FALSE))
904 ts->KermitOpt |= KmtOptLongPacket;
905 if (GetOnOff(Section, "KmtFileAttr", FName, FALSE))
906 ts->KermitOpt |= KmtOptFileAttr;
907
908 // Enable language selection -- special option
909 if (!GetOnOff(Section, "LanguageSelection", FName, TRUE))
910 ts->MenuFlag |= MF_NOLANGUAGE;
911
912 /* Maximum scroll buffer size -- special option */
913 ts->ScrollBuffMax =
914 GetPrivateProfileInt(Section, "MaxBuffSize", 10000, FName);
915 if (ts->ScrollBuffMax < 24)
916 ts->ScrollBuffMax = 10000;
917
918 /* Max com port number -- special option */
919 ts->MaxComPort = GetPrivateProfileInt(Section, "MaxComPort", 4, FName);
920 if (ts->MaxComPort < 4)
921 ts->MaxComPort = 4;
922 // COM16����99���g�� (2005.11.30 yutaka)
923 // 99����200���g�� (2007.7.23 maya)
924 if (ts->MaxComPort > MAXCOMPORT)
925 ts->MaxComPort = MAXCOMPORT;
926 if ((ts->ComPort < 1) || (ts->ComPort > ts->MaxComPort))
927 ts->ComPort = 1;
928
929 /* Non-blinking cursor -- special option */
930 ts->NonblinkingCursor =
931 GetOnOff(Section, "NonblinkingCursor", FName, FALSE);
932
933 // �t�H�[�J�X���������|���S���J�[�\�� (2008.1.24 yutaka)
934 ts->KillFocusCursor =
935 GetOnOff(Section, "KillFocusCursor", FName, TRUE);
936
937 /* Delay for pass-thru printing activation */
938 /* -- special option */
939 ts->PassThruDelay =
940 GetPrivateProfileInt(Section, "PassThruDelay", 3, FName);
941
942 /* Printer port for pass-thru printing */
943 /* -- special option */
944 GetPrivateProfileString(Section, "PassThruPort", "",
945 ts->PrnDev, sizeof(ts->PrnDev), FName);
946
947 /* �v�����^�p�����R�[�h�������t������ */
948 if (GetOnOff(Section, "PrinterCtrlSequence", FName, TRUE))
949 ts->TermFlag |= TF_PRINTERCTRL;
950
951 /* Printer Font --- special option */
952 GetPrivateProfileString(Section, "PrnFont", "",
953 Temp, sizeof(Temp), FName);
954 if (strlen(Temp) == 0) {
955 ts->PrnFont[0] = 0;
956 ts->PrnFontSize.x = 0;
957 ts->PrnFontSize.y = 0;
958 ts->PrnFontCharSet = 0;
959 }
960 else {
961 GetNthString(Temp, 1, sizeof(ts->PrnFont), ts->PrnFont);
962 GetNthNum(Temp, 2, (int far *) &(ts->PrnFontSize.x));
963 GetNthNum(Temp, 3, (int far *) &(ts->PrnFontSize.y));
964 GetNthNum(Temp, 4, &(ts->PrnFontCharSet));
965 }
966
967 // Page margins (left, right, top, bottom) for printing
968 // -- special option
969 GetPrivateProfileString(Section, "PrnMargin", "50,50,50,50",
970 Temp, sizeof(Temp), FName);
971 for (i = 0; i <= 3; i++)
972 GetNthNum(Temp, 1 + i, &ts->PrnMargin[i]);
973
974 /* Quick-VAN log -- special option */
975 if (GetOnOff(Section, "QVLog", FName, FALSE))
976 ts->LogFlag |= LOG_QV;
977
978 /* Quick-VAN window size -- special */
979 ts->QVWinSize = GetPrivateProfileInt(Section, "QVWinSize", 8, FName);
980
981 /* Russian character set (print) -- special option */
982 GetPrivateProfileString(Section, "RussPrint", "",
983 Temp, sizeof(Temp), FName);
984 ts->RussPrint = str2id(RussList, Temp, IdWindows);
985
986 /* Scroll threshold -- special option */
987 ts->ScrollThreshold =
988 GetPrivateProfileInt(Section, "ScrollThreshold", 12, FName);
989
990 ts->MouseWheelScrollLine =
991 GetPrivateProfileInt(Section, "MouseWheelScrollLine", 3, FName);
992
993 // Select on activate -- special option
994 ts->SelOnActive = GetOnOff(Section, "SelectOnActivate", FName, TRUE);
995
996 /* Send 8bit control sequence -- special option */
997 ts->Send8BitCtrl = GetOnOff(Section, "Send8BitCtrl", FName, FALSE);
998
999 /* Startup macro -- special option */
1000 GetPrivateProfileString(Section, "StartupMacro", "",
1001 ts->MacroFN, sizeof(ts->MacroFN), FName);
1002
1003 /* TEK GIN Mouse keycode -- special option */
1004 ts->GINMouseCode =
1005 GetPrivateProfileInt(Section, "TEKGINMouseCode", 32, FName);
1006
1007 /* Telnet Auto Detect -- special option */
1008 ts->TelAutoDetect = GetOnOff(Section, "TelAutoDetect", FName, TRUE);
1009
1010 /* Telnet binary flag -- special option */
1011 ts->TelBin = GetOnOff(Section, "TelBin", FName, FALSE);
1012
1013 /* Telnet Echo flag -- special option */
1014 ts->TelEcho = GetOnOff(Section, "TelEcho", FName, FALSE);
1015
1016 /* Telnet log -- special option */
1017 if (GetOnOff(Section, "TelLog", FName, FALSE))
1018 ts->LogFlag |= LOG_TEL;
1019
1020 /* TCP port num for telnet -- special option */
1021 ts->TelPort = GetPrivateProfileInt(Section, "TelPort", 23, FName);
1022
1023 /* Telnet keep-alive packet(NOP command) interval -- special option */
1024 ts->TelKeepAliveInterval =
1025 GetPrivateProfileInt(Section, "TelKeepAliveInterval", 300, FName);
1026
1027 /* Max number of broadcast commad history */
1028 ts->MaxBroadcatHistory =
1029 GetPrivateProfileInt(Section, "MaxBroadcatHistory", 99, FName);
1030
1031 /* Local echo for non-telnet */
1032 ts->TCPLocalEcho = GetOnOff(Section, "TCPLocalEcho", FName, FALSE);
1033
1034 /* "new-line (transmit)" option for non-telnet -- special option */
1035 GetPrivateProfileString(Section, "TCPCRSend", "",
1036 Temp, sizeof(Temp), FName);
1037 if (_stricmp(Temp, "CR") == 0)
1038 ts->TCPCRSend = IdCR;
1039 else if (_stricmp(Temp, "CRLF") == 0)
1040 ts->TCPCRSend = IdCRLF;
1041 else
1042 ts->TCPCRSend = 0; // disabled
1043
1044 /* Use text (background) color for "white (black)" --- special option */
1045 if (GetOnOff(Section, "UseTextColor", FName, FALSE))
1046 ts->ColorFlag |= CF_USETEXTCOLOR;
1047
1048 /* Title format -- special option */
1049 ts->TitleFormat =
1050 GetPrivateProfileInt(Section, "TitleFormat", 5, FName);
1051
1052 /* VT Compatible Tab -- special option */
1053 ts->VTCompatTab = GetOnOff(Section, "VTCompatTab", FName, FALSE);
1054
1055 /* VT Font space --- special option */
1056 GetPrivateProfileString(Section, "VTFontSpace", "0,0,0,0",
1057 Temp, sizeof(Temp), FName);
1058 GetNthNum(Temp, 1, &ts->FontDX);
1059 GetNthNum(Temp, 2, &ts->FontDW);
1060 GetNthNum(Temp, 3, &ts->FontDY);
1061 GetNthNum(Temp, 4, &ts->FontDH);
1062 if (ts->FontDX < 0)
1063 ts->FontDX = 0;
1064 if (ts->FontDW < 0)
1065 ts->FontDW = 0;
1066 ts->FontDW = ts->FontDW + ts->FontDX;
1067 if (ts->FontDY < 0)
1068 ts->FontDY = 0;
1069 if (ts->FontDH < 0)
1070 ts->FontDH = 0;
1071 ts->FontDH = ts->FontDH + ts->FontDY;
1072
1073 // VT-print scaling factors (pixels per inch) --- special option
1074 GetPrivateProfileString(Section, "VTPPI", "0,0",
1075 Temp, sizeof(Temp), FName);
1076 GetNthNum(Temp, 1, (int far *) &ts->VTPPI.x);
1077 GetNthNum(Temp, 2, (int far *) &ts->VTPPI.y);
1078
1079 // TEK-print scaling factors (pixels per inch) --- special option
1080 GetPrivateProfileString(Section, "TEKPPI", "0,0",
1081 Temp, sizeof(Temp), FName);
1082 GetNthNum(Temp, 1, (int far *) &ts->TEKPPI.x);
1083 GetNthNum(Temp, 2, (int far *) &ts->TEKPPI.y);
1084
1085 // Show "Window" menu -- special option
1086 if (GetOnOff(Section, "WindowMenu", FName, TRUE))
1087 ts->MenuFlag |= MF_SHOWWINMENU;
1088
1089 /* XMODEM log -- special option */
1090 if (GetOnOff(Section, "XmodemLog", FName, FALSE))
1091 ts->LogFlag |= LOG_X;
1092
1093 /* YMODEM log -- special option */
1094 if (GetOnOff(Section, "YmodemLog", FName, FALSE))
1095 ts->LogFlag |= LOG_Y;
1096
1097 /* YMODEM ���M�R�}���h (2010.3.23 yutaka) */
1098 GetPrivateProfileString(Section, "YModemRcvCommand", "rb",
1099 ts->YModemRcvCommand, sizeof(ts->YModemRcvCommand), FName);
1100
1101 /* Auto ZMODEM activation -- special option */
1102 if (GetOnOff(Section, "ZmodemAuto", FName, FALSE))
1103 ts->FTFlag |= FT_ZAUTO;
1104
1105 /* ZMODEM data subpacket length for sending -- special */
1106 ts->ZmodemDataLen =
1107 GetPrivateProfileInt(Section, "ZmodemDataLen", 1024, FName);
1108 /* ZMODEM window size for sending -- special */
1109 ts->ZmodemWinSize =
1110 GetPrivateProfileInt(Section, "ZmodemWinSize", 32767, FName);
1111
1112 /* ZMODEM ESCCTL flag -- special option */
1113 if (GetOnOff(Section, "ZmodemEscCtl", FName, FALSE))
1114 ts->FTFlag |= FT_ZESCCTL;
1115
1116 /* ZMODEM log -- special option */
1117 if (GetOnOff(Section, "ZmodemLog", FName, FALSE))
1118 ts->LogFlag |= LOG_Z;
1119
1120 /* ZMODEM ���M�R�}���h (2007.12.21 yutaka) */
1121 GetPrivateProfileString(Section, "ZModemRcvCommand", "rz",
1122 ts->ZModemRcvCommand, sizeof(ts->ZModemRcvCommand), FName);
1123
1124 #ifndef NO_COPYLINE_FIX
1125
1126 /* Enable continued-line copy -- special option */
1127 ts->EnableContinuedLineCopy =
1128 GetOnOff(Section, "EnableContinuedLineCopy", FName, FALSE);
1129 #endif /* NO_COPYLINE_FIX */
1130
1131 ts->DisablePasteMouseRButton =
1132 GetOnOff(Section, "DisablePasteMouseRButton", FName, FALSE);
1133
1134 // added DisablePasteMouseMButton (2008.3.2 maya)
1135 ts->DisablePasteMouseMButton =
1136 GetOnOff(Section, "DisablePasteMouseMButton", FName, TRUE);
1137
1138 // added ConfirmPasteMouseRButton (2007.3.17 maya)
1139 ts->ConfirmPasteMouseRButton =
1140 GetOnOff(Section, "ConfirmPasteMouseRButton", FName, FALSE);
1141
1142 // added ConfirmChangePaste (2008.2.3 yutaka)
1143 ts->ConfirmChangePaste =
1144 GetOnOff(Section, "ConfirmChangePaste", FName, TRUE);
1145 GetPrivateProfileString(Section, "ConfirmChangePasteStringFile", "",
1146 Temp, sizeof(Temp), FName);
1147 strncpy_s(ts->ConfirmChangePasteStringFile, sizeof(ts->ConfirmChangePasteStringFile), Temp,
1148 _TRUNCATE);
1149
1150 // added ScrollWindowClearScreen (2008.5.3 yutaka)
1151 ts->ScrollWindowClearScreen =
1152 GetOnOff(Section, "ScrollWindowClearScreen", FName, TRUE);
1153
1154 // added SelectOnlyByLButton (2007.11.20 maya)
1155 ts->SelectOnlyByLButton =
1156 GetOnOff(Section, "SelectOnlyByLButton", FName, TRUE);
1157
1158 // added DisableAcceleratorSendBreak (2007.3.17 maya)
1159 ts->DisableAcceleratorSendBreak =
1160 GetOnOff(Section, "DisableAcceleratorSendBreak", FName, FALSE);
1161
1162 // WinSock connecting timeout value (2007.1.11 yutaka)
1163 ts->ConnectingTimeout =
1164 GetPrivateProfileInt(Section, "ConnectingTimeout", 0, FName);
1165
1166 // mouse cursor
1167 GetPrivateProfileString(Section, "MouseCursor", "IBEAM",
1168 Temp, sizeof(Temp), FName);
1169 strncpy_s(ts->MouseCursorName, sizeof(ts->MouseCursorName), Temp,
1170 _TRUNCATE);
1171
1172 // Translucent window
1173 ts->AlphaBlend =
1174 GetPrivateProfileInt(Section, "AlphaBlend ", 255, FName);
1175 ts->AlphaBlend = max(0, ts->AlphaBlend);
1176 ts->AlphaBlend = min(255, ts->AlphaBlend);
1177
1178 // Cygwin install path
1179 GetPrivateProfileString(Section, "CygwinDirectory ", "c:\\cygwin",
1180 Temp, sizeof(Temp), FName);
1181 strncpy_s(ts->CygwinDirectory, sizeof(ts->CygwinDirectory), Temp,
1182 _TRUNCATE);
1183
1184 // Viewlog Editor path
1185 if (GetWindowsDirectory(Temp, sizeof(Temp)) + 13 < sizeof(Temp)) { // "\\notepad.exe"(12) + NUL(1)
1186 strncat_s(Temp, sizeof(Temp), "\\notepad.exe", _TRUNCATE);
1187 }
1188 else {
1189 Temp[0] = '\0';
1190 }
1191 GetPrivateProfileString(Section, "ViewlogEditor ", Temp,
1192 ts->ViewlogEditor, sizeof(ts->ViewlogEditor), FName);
1193
1194 // Locale for UTF-8
1195 GetPrivateProfileString(Section, "Locale ", DEFAULT_LOCALE,
1196 Temp, sizeof(Temp), FName);
1197 strncpy_s(ts->Locale, sizeof(ts->Locale), Temp, _TRUNCATE);
1198
1199 // CodePage
1200 ts->CodePage =
1201 GetPrivateProfileInt(Section, "CodePage ", DEFAULT_CODEPAGE,
1202 FName);
1203
1204 // UI language message file
1205 GetPrivateProfileString(Section, "UILanguageFile", "lang\\Default.lng",
1206 Temp, sizeof(Temp), FName);
1207 {
1208 char CurDir[MAX_PATH];
1209
1210 // �t���p�X�������O������������������������������
1211 strncpy_s(ts->UILanguageFile_ini, sizeof(ts->UILanguageFile_ini), Temp, _TRUNCATE);
1212
1213 GetCurrentDirectory(sizeof(CurDir), CurDir);
1214 SetCurrentDirectory(ts->HomeDir);
1215 _fullpath(ts->UILanguageFile, Temp, sizeof(ts->UILanguageFile));
1216 SetCurrentDirectory(CurDir);
1217 }
1218
1219 // Broadcast Command History (2007.3.3 maya)
1220 ts->BroadcastCommandHistory =
1221 GetOnOff(Section, "BroadcastCommandHistory", FName, FALSE);
1222
1223 // 337: 2007/03/20 Accept Broadcast
1224 ts->AcceptBroadcast =
1225 GetOnOff(Section, "AcceptBroadcast", FName, TRUE);
1226
1227 // Confirm send a file when drag and drop (2007.12.28 maya)
1228 ts->ConfirmFileDragAndDrop =
1229 GetOnOff(Section, "ConfirmFileDragAndDrop", FName, TRUE);
1230
1231 // Translate mouse wheel to cursor key when application cursor mode
1232 ts->TranslateWheelToCursor =
1233 GetOnOff(Section, "TranslateWheelToCursor", FName, TRUE);
1234
1235 // Display "New Connection" dialog on startup (2008.1.18 maya)
1236 ts->HostDialogOnStartup =
1237 GetOnOff(Section, "HostDialogOnStartup", FName, TRUE);
1238
1239 // Mouse event tracking
1240 ts->MouseEventTracking =
1241 GetOnOff(Section, "MouseEventTracking", FName, TRUE);
1242
1243 // Maximized bug tweak
1244 ts->MaximizedBugTweak =
1245 GetOnOff(Section, "MaximizedBugTweak", FName, TRUE);
1246
1247 // Convert Unicode symbol characters to DEC Special characters
1248 ts->UnicodeDecSpMapping =
1249 GetPrivateProfileInt(Section, "UnicodeToDecSpMapping", 3, FName);
1250
1251 // VT Window Icon
1252 GetPrivateProfileString(Section, "VTIcon", "Default",
1253 Temp, sizeof(Temp), FName);
1254 ts->VTIcon = IconName2IconId(Temp);
1255
1256 // Tek Window Icon
1257 GetPrivateProfileString(Section, "TEKIcon", "Default",
1258 Temp, sizeof(Temp), FName);
1259 ts->TEKIcon = IconName2IconId(Temp);
1260
1261 // Unknown Unicode Character
1262 ts->UnknownUnicodeCharaAsWide =
1263 GetOnOff(Section, "UnknownUnicodeCharacterAsWide", FName, FALSE);
1264
1265 #ifdef USE_NORMAL_BGCOLOR
1266 // UseNormalBGColor
1267 ts->UseNormalBGColor =
1268 GetOnOff(Section, "UseNormalBGColor", FName, FALSE);
1269 // 2006/03/11 by 337
1270 if (ts->UseNormalBGColor) {
1271 ts->VTBoldColor[1] =
1272 ts->VTBlinkColor[1] = ts->URLColor[1] = ts->VTColor[1];
1273 }
1274 #endif
1275
1276 // AutoScrollOnlyInBottomLine
1277 ts->AutoScrollOnlyInBottomLine =
1278 GetOnOff(Section, "AutoScrollOnlyInBottomLine", FName, FALSE);
1279
1280 // Accept remote-controlled window title changing
1281 GetPrivateProfileString(Section, "AcceptTitleChangeRequest", "overwrite",
1282 Temp, sizeof(Temp), FName);
1283 if (_stricmp(Temp, "overwrite") == 0 || _stricmp(Temp, "on") == 0)
1284 ts->AcceptTitleChangeRequest = IdTitleChangeRequestOverwrite;
1285 else if (_stricmp(Temp, "ahead") == 0)
1286 ts->AcceptTitleChangeRequest = IdTitleChangeRequestAhead;
1287 else if (_stricmp(Temp, "last") == 0)
1288 ts->AcceptTitleChangeRequest = IdTitleChangeRequestLast;
1289 else
1290 ts->AcceptTitleChangeRequest = IdTitleChangeRequestOff;
1291
1292 // Size of paste confirm dialog
1293 GetPrivateProfileString(Section, "PasteDialogSize", "330,220",
1294 Temp, sizeof(Temp), FName);
1295 GetNthNum(Temp, 1, &ts->PasteDialogSize.cx);
1296 GetNthNum(Temp, 2, &ts->PasteDialogSize.cy);
1297 if (ts->PasteDialogSize.cx < 0)
1298 ts->PasteDialogSize.cx = 330;
1299 if (ts->PasteDialogSize.cy < 0)
1300 ts->PasteDialogSize.cy = 220;
1301
1302 // Disable mouse event tracking when Control-Key is pressed.
1303 ts->DisableMouseTrackingByCtrl =
1304 GetOnOff(Section, "DisableMouseTrackingByCtrl", FName, TRUE);
1305
1306 // Disable TranslateWheelToCursor setting when Control-Key is pressed.
1307 ts->DisableWheelToCursorByCtrl =
1308 GetOnOff(Section, "DisableWheelToCursorByCtrl", FName, TRUE);
1309
1310 // Strict Key Mapping.
1311 ts->StrictKeyMapping =
1312 GetOnOff(Section, "StrictKeyMapping", FName, FALSE);
1313
1314 // added Wait4allMacroCommand (2009.3.23 yutaka)
1315 ts->Wait4allMacroCommand =
1316 GetOnOff(Section, "Wait4allMacroCommand", FName, FALSE);
1317
1318 // added DisableMenuSendBreak (2009.4.6 maya)
1319 ts->DisableMenuSendBreak =
1320 GetOnOff(Section, "DisableMenuSendBreak", FName, FALSE);
1321
1322 // added ClearScreenOnCloseConnection (2009.4.6 maya)
1323 ts->ClearScreenOnCloseConnection =
1324 GetOnOff(Section, "ClearScreenOnCloseConnection", FName, FALSE);
1325
1326 // added DisableAcceleratorDuplicateSession (2009.4.6 maya)
1327 ts->DisableAcceleratorDuplicateSession =
1328 GetOnOff(Section, "DisableAcceleratorDuplicateSession", FName, FALSE);
1329
1330 // added DisableMenuDuplicateSession (2010.8.3 maya)
1331 ts->DisableMenuDuplicateSession =
1332 GetOnOff(Section, "DisableMenuDuplicateSession", FName, FALSE);
1333
1334 // added DisableMenuNewConnection (2010.8.4 maya)
1335 ts->DisableMenuNewConnection =
1336 GetOnOff(Section, "DisableMenuNewConnection", FName, FALSE);
1337
1338 // added PasteDelayPerLine (2009.4.12 maya)
1339 ts->PasteDelayPerLine =
1340 GetPrivateProfileInt(Section, "PasteDelayPerLine", 10, FName);
1341 {
1342 int tmp = min(max(0, ts->PasteDelayPerLine), 5000);
1343 ts->PasteDelayPerLine = tmp;
1344 }
1345
1346 // Font scaling -- test
1347 ts->FontScaling = GetOnOff(Section, "FontScaling", FName, FALSE);
1348
1349 // Meta sets MSB
1350 GetPrivateProfileString(Section, "Meta8Bit", "off", Temp, sizeof(Temp), FName);
1351 if (_stricmp(Temp, "raw") == 0 || _stricmp(Temp, "on") == 0)
1352 ts->Meta8Bit = IdMeta8BitRaw;
1353 else if (_stricmp(Temp, "text") == 0)
1354 ts->Meta8Bit = IdMeta8BitText;
1355 else
1356 ts->Meta8Bit = IdMeta8BitOff;
1357
1358 // Window control sequence
1359 if (GetOnOff(Section, "WindowCtrlSequence", FName, TRUE))
1360 ts->WindowFlag |= WF_WINDOWCHANGE;
1361
1362 // Cursor control sequence
1363 if (GetOnOff(Section, "CursorCtrlSequence", FName, FALSE))
1364 ts->WindowFlag |= WF_CURSORCHANGE;
1365
1366 // Window report sequence
1367 if (GetOnOff(Section, "WindowReportSequence", FName, TRUE))
1368 ts->WindowFlag |= WF_WINDOWREPORT;
1369
1370 // Title report sequence
1371 GetPrivateProfileString(Section, "TitleReportSequence", "Empty", Temp, sizeof(Temp), FName);
1372 if (_stricmp(Temp, "accept") == 0)
1373 ts->WindowFlag |= IdTitleReportAccept;
1374 else if (_stricmp(Temp, "ignore") == 0 || _stricmp(Temp, "off") == 0)
1375 ts->WindowFlag &= ~WF_TITLEREPORT;
1376 else // empty
1377 ts->WindowFlag |= IdTitleReportEmpty;
1378
1379 // Line at a time mode
1380 ts->EnableLineMode = GetOnOff(Section, "EnableLineMode", FName, TRUE);
1381
1382 // Clear window on resize
1383 if (GetOnOff(Section, "ClearOnResize", FName, TRUE))
1384 ts->TermFlag |= TF_CLEARONRESIZE;
1385
1386 // Alternate Screen Buffer
1387 if (GetOnOff(Section, "AlternateScreenBuffer", FName, TRUE))
1388 ts->TermFlag |= TF_ALTSCR;
1389
1390 // IME status related cursor style
1391 if (GetOnOff(Section, "IMERelatedCursor", FName, FALSE))
1392 ts->WindowFlag |= WF_IMECURSORCHANGE;
1393
1394 // Terminal Unique ID
1395 GetPrivateProfileString(Section, "TerminalUID", "FFFFFFFF", Temp, sizeof(Temp), FName);
1396 if (strlen(Temp) == 8) {
1397 for (i=0; i<8 && isxdigit((unsigned char)Temp[i]); i++) {
1398 if (islower(Temp[i])) {
1399 ts->TerminalUID[i] = toupper(Temp[i]);
1400 }
1401 else {
1402 ts->TerminalUID[i] = Temp[i];
1403 }
1404 }
1405 if (i == 8) {
1406 ts->TerminalUID[i] = 0;
1407 }
1408 else {
1409 strncpy_s(ts->TerminalUID, sizeof(ts->TerminalUID), "FFFFFFFF", _TRUNCATE);
1410 }
1411 }
1412 else {
1413 strncpy_s(ts->TerminalUID, sizeof(ts->TerminalUID), "FFFFFFFF", _TRUNCATE);
1414 }
1415
1416 // Lock Terminal UID
1417 if (GetOnOff(Section, "LockTUID", FName, TRUE))
1418 ts->TermFlag |= TF_LOCKTUID;
1419
1420 // Confirm PasteCR
1421 ts->ConfirmChangePasteCR = GetOnOff(Section, "ConfirmChangePasteCR", FName, TRUE);
1422
1423 // Jump List
1424 ts->JumpList = GetOnOff(Section, "JumpList", FName, TRUE);
1425
1426 // TabStopModifySequence
1427 GetPrivateProfileString(Section, "TabStopModifySequence", "on", Temp, sizeof(Temp), FName);
1428 if (_stricmp(Temp, "on") == 0 || _stricmp(Temp, "all") == 0)
1429 ts->TabStopFlag = TABF_ALL;
1430 else if (_stricmp(Temp, "off") == 0 || _stricmp(Temp, "none") == 0)
1431 ts->TabStopFlag = TABF_NONE;
1432 else {
1433 ts->TabStopFlag = TABF_NONE;
1434 for (i=1; GetNthString(Temp, i, sizeof(Temp2), Temp2); i++) {
1435 if (_stricmp(Temp2, "HTS") == 0)
1436 ts->TabStopFlag |= TABF_HTS;
1437 else if (_stricmp(Temp2, "HTS7") == 0)
1438 ts->TabStopFlag |= TABF_HTS7;
1439 else if (_stricmp(Temp2, "HTS8") == 0)
1440 ts->TabStopFlag |= TABF_HTS8;
1441 else if (_stricmp(Temp2, "TBC") == 0)
1442 ts->TabStopFlag |= TABF_TBC;
1443 else if (_stricmp(Temp2, "TBC0") == 0)
1444 ts->TabStopFlag |= TABF_TBC0;
1445 else if (_stricmp(Temp2, "TBC3") == 0)
1446 ts->TabStopFlag |= TABF_TBC3;
1447 }
1448 }
1449
1450 // Clipboard Access from Remote
1451 GetPrivateProfileString(Section, "ClipboardAccessFromRemote", "off", Temp, sizeof(Temp), FName);
1452 if (_stricmp(Temp, "on") == 0 || _stricmp(Temp, "readwrite") == 0)
1453 ts->CtrlFlag |= CSF_CBRW;
1454 else if (_stricmp(Temp, "read") == 0)
1455 ts->CtrlFlag |= CSF_CBREAD;
1456 else if (_stricmp(Temp, "write") == 0)
1457 ts->CtrlFlag |= CSF_CBWRITE;
1458
1459 // Use invalid DECRPSS (for testing)
1460 if (GetOnOff(Section, "UseInvalidDECRQSSResponse", FName, FALSE))
1461 ts->TermFlag |= TF_INVALIDDECRPSS;
1462
1463 // ClickableUrlBrowser
1464 GetPrivateProfileString(Section, "ClickableUrlBrowser", "",
1465 ts->ClickableUrlBrowser, sizeof(ts->ClickableUrlBrowser), FName);
1466 GetPrivateProfileString(Section, "ClickableUrlBrowserArg", "",
1467 ts->ClickableUrlBrowserArg, sizeof(ts->ClickableUrlBrowserArg), FName);
1468
1469 // Exclusive Lock when open the log file
1470 ts->LogLockExclusive = GetOnOff(Section, "LogLockExclusive", FName, TRUE);
1471 }
1472
1473 void FAR PASCAL WriteIniFile(PCHAR FName, PTTSet ts)
1474 {
1475 int i;
1476 char Temp[MAX_PATH];
1477 char buf[20];
1478
1479 /* version */
1480 WritePrivateProfileString(Section, "Version", "2.3", FName);
1481
1482 /* Language */
1483 switch (ts->Language) {
1484 case IdJapanese:
1485 strncpy_s(Temp, sizeof(Temp), "Japanese", _TRUNCATE);
1486 break;
1487 case IdKorean:
1488 strncpy_s(Temp, sizeof(Temp), "Korean", _TRUNCATE);
1489 break;
1490 case IdRussian:
1491 strncpy_s(Temp, sizeof(Temp), "Russian", _TRUNCATE);
1492 break;
1493 case IdUtf8:
1494 strncpy_s(Temp, sizeof(Temp), "UTF-8", _TRUNCATE);
1495 break;
1496 default:
1497 strncpy_s(Temp, sizeof(Temp), "English", _TRUNCATE);
1498 }
1499
1500 WritePrivateProfileString(Section, "Language", Temp, FName);
1501
1502 /* Port type */
1503 if (ts->PortType == IdSerial)
1504 strncpy_s(Temp, sizeof(Temp), "serial", _TRUNCATE);
1505 else /* IdFile -> IdTCPIP */
1506 strncpy_s(Temp, sizeof(Temp), "tcpip", _TRUNCATE);
1507
1508 WritePrivateProfileString(Section, "Port", Temp, FName);
1509
1510 /* Save win position */
1511 if (ts->SaveVTWinPos) {
1512 /* VT win position */
1513 WriteInt2(Section, "VTPos", FName, ts->VTPos.x, ts->VTPos.y);
1514 }
1515
1516 /* VT terminal size */
1517 WriteInt2(Section, "TerminalSize", FName,
1518 ts->TerminalWidth, ts->TerminalHeight);
1519
1520 /* Terminal size = Window size */
1521 WriteOnOff(Section, "TermIsWin", FName, ts->TermIsWin);
1522
1523 /* Auto window resize flag */
1524 WriteOnOff(Section, "AutoWinResize", FName, ts->AutoWinResize);
1525
1526 /* CR Receive */
1527 if (ts->CRReceive == IdCRLF) {
1528 strncpy_s(Temp, sizeof(Temp), "CRLF", _TRUNCATE);
1529 }
1530 else if (ts->CRReceive == IdLF) {
1531 strncpy_s(Temp, sizeof(Temp), "LF", _TRUNCATE);
1532 }
1533 else {
1534 strncpy_s(Temp, sizeof(Temp), "CR", _TRUNCATE);
1535 }
1536 WritePrivateProfileString(Section, "CRReceive", Temp, FName);
1537
1538 /* CR Send */
1539 if (ts->CRSend == IdCRLF)
1540 strncpy_s(Temp, sizeof(Temp), "CRLF", _TRUNCATE);
1541 else
1542 strncpy_s(Temp, sizeof(Temp), "CR", _TRUNCATE);
1543 WritePrivateProfileString(Section, "CRSend", Temp, FName);
1544
1545 /* Local echo */
1546 WriteOnOff(Section, "LocalEcho", FName, ts->LocalEcho);
1547
1548 /* Answerback */
1549 if ((ts->FTFlag & FT_BPAUTO) == 0) {
1550 Str2Hex(ts->Answerback, Temp, ts->AnswerbackLen,
1551 sizeof(Temp) - 1, TRUE);
1552 WritePrivateProfileString(Section, "Answerback", Temp, FName);
1553 }
1554
1555 /* Kanji Code (receive) */
1556 switch (ts->KanjiCode) {
1557 case IdEUC:
1558 strncpy_s(Temp, sizeof(Temp), "EUC", _TRUNCATE);
1559 break;
1560 case IdJIS:
1561 strncpy_s(Temp, sizeof(Temp), "JIS", _TRUNCATE);
1562 break;
1563 case IdUTF8:
1564 strncpy_s(Temp, sizeof(Temp), "UTF-8", _TRUNCATE);
1565 break;
1566 case IdUTF8m:
1567 strncpy_s(Temp, sizeof(Temp), "UTF-8m", _TRUNCATE);
1568 break;
1569 default:
1570 switch (ts->Language) {
1571 case IdJapanese:
1572 strncpy_s(Temp, sizeof(Temp), "SJIS", _TRUNCATE);
1573 break;
1574 case IdKorean:
1575 strncpy_s(Temp, sizeof(Temp), "KS5601", _TRUNCATE);
1576 break;
1577 default:
1578 strncpy_s(Temp, sizeof(Temp), "SJIS", _TRUNCATE);
1579 }
1580 }
1581 WritePrivateProfileString(Section, "KanjiReceive", Temp, FName);
1582
1583 /* Katakana (receive) */
1584 if (ts->JIS7Katakana == 1)
1585 strncpy_s(Temp, sizeof(Temp), "7", _TRUNCATE);
1586 else
1587 strncpy_s(Temp, sizeof(Temp), "8", _TRUNCATE);
1588
1589 WritePrivateProfileString(Section, "KatakanaReceive", Temp, FName);
1590
1591 /* Kanji Code (transmit) */
1592 switch (ts->KanjiCodeSend) {
1593 case IdEUC:
1594 strncpy_s(Temp, sizeof(Temp), "EUC", _TRUNCATE);
1595 break;
1596 case IdJIS:
1597 strncpy_s(Temp, sizeof(Temp), "JIS", _TRUNCATE);
1598 break;
1599 case IdUTF8:
1600 strncpy_s(Temp, sizeof(Temp), "UTF-8", _TRUNCATE);
1601 break;
1602 default:
1603 switch (ts->Language) {
1604 case IdJapanese:
1605 strncpy_s(Temp, sizeof(Temp), "SJIS", _TRUNCATE);
1606 break;
1607 case IdKorean:
1608 strncpy_s(Temp, sizeof(Temp), "KS5601", _TRUNCATE);
1609 break;
1610 default:
1611 strncpy_s(Temp, sizeof(Temp), "SJIS", _TRUNCATE);
1612 }
1613 }
1614 WritePrivateProfileString(Section, "KanjiSend", Temp, FName);
1615
1616 /* Katakana (transmit) */
1617 if (ts->JIS7KatakanaSend == 1)
1618 strncpy_s(Temp, sizeof(Temp), "7", _TRUNCATE);
1619 else
1620 strncpy_s(Temp, sizeof(Temp), "8", _TRUNCATE);
1621
1622 WritePrivateProfileString(Section, "KatakanaSend", Temp, FName);
1623
1624 /* KanjiIn */
1625 if (ts->KanjiIn == IdKanjiInA)
1626 strncpy_s(Temp, sizeof(Temp), "@", _TRUNCATE);
1627 else
1628 strncpy_s(Temp, sizeof(Temp), "B", _TRUNCATE);
1629
1630 WritePrivateProfileString(Section, "KanjiIn", Temp, FName);
1631
1632 /* KanjiOut */
1633 switch (ts->KanjiOut) {
1634 case IdKanjiOutB:
1635 strncpy_s(Temp, sizeof(Temp), "B", _TRUNCATE);
1636 break;
1637 case IdKanjiOutH:
1638 strncpy_s(Temp, sizeof(Temp), "H", _TRUNCATE);
1639 break;
1640 default:
1641 strncpy_s(Temp, sizeof(Temp), "J", _TRUNCATE);
1642 }
1643 WritePrivateProfileString(Section, "KanjiOut", Temp, FName);
1644
1645 // new configuration
1646 WriteInt(Section, "ConnectingTimeout", FName, ts->ConnectingTimeout);
1647
1648 WriteOnOff(Section, "DisablePasteMouseRButton", FName,
1649 ts->DisablePasteMouseRButton);
1650
1651 // added DisablePasteMouseMButton (2008.3.2 maya)
1652 WriteOnOff(Section, "DisablePasteMouseMButton", FName,
1653 ts->DisablePasteMouseMButton);
1654
1655 // added ConfirmPasteMouseRButton (2007.3.17 maya)
1656 WriteOnOff(Section, "ConfirmPasteMouseRButton", FName,
1657 ts->ConfirmPasteMouseRButton);
1658
1659 // added ConfirmChangePaste
1660 WriteOnOff(Section, "ConfirmChangePaste", FName,
1661 ts->ConfirmChangePaste);
1662 WritePrivateProfileString(Section, "ConfirmChangePasteStringFile",
1663 ts->ConfirmChangePasteStringFile, FName);
1664
1665 // added ScrollWindowClearScreen
1666 WriteOnOff(Section, "ScrollWindowClearScreen", FName,
1667 ts->ScrollWindowClearScreen);
1668
1669 // added SelectOnlyByLButton (2007.11.20 maya)
1670 WriteOnOff(Section, "SelectOnlyByLButton", FName,
1671 ts->SelectOnlyByLButton);
1672 // added DisableAcceleratorSendBreak (2007.3.17 maya)
1673 WriteOnOff(Section, "DisableAcceleratorSendBreak", FName,
1674 ts->DisableAcceleratorSendBreak);
1675 WriteOnOff(Section, "EnableContinuedLineCopy", FName,
1676 ts->EnableContinuedLineCopy);
1677 WritePrivateProfileString(Section, "MouseCursor", ts->MouseCursorName,
1678 FName);
1679 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%d", ts->AlphaBlend);
1680 WritePrivateProfileString(Section, "AlphaBlend", Temp, FName);
1681 WritePrivateProfileString(Section, "CygwinDirectory",
1682 ts->CygwinDirectory, FName);
1683 WritePrivateProfileString(Section, "ViewlogEditor", ts->ViewlogEditor,
1684 FName);
1685 WritePrivateProfileString(Section, "Locale", ts->Locale, FName);
1686 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%d", ts->CodePage);
1687 WritePrivateProfileString(Section, "CodePage", Temp, FName);
1688
1689 // ANSI color(2004.9.5 yutaka)
1690 Temp[0] = '\0';
1691 for (i = 0; i < 15; i++) {
1692 _snprintf_s(buf, sizeof(buf), _TRUNCATE, "%d,%d,%d,%d, ",
1693 i,
1694 GetRValue(ts->ANSIColor[i]),
1695 GetGValue(ts->ANSIColor[i]),
1696 GetBValue(ts->ANSIColor[i])
1697 );
1698 strncat_s(Temp, sizeof(Temp), buf, _TRUNCATE);
1699 }
1700 i = 15;
1701 _snprintf_s(buf, sizeof(buf), _TRUNCATE, "%d,%d,%d,%d",
1702 i,
1703 GetRValue(ts->ANSIColor[i]),
1704 GetGValue(ts->ANSIColor[i]),
1705 GetBValue(ts->ANSIColor[i])
1706 );
1707 strncat_s(Temp, sizeof(Temp), buf, _TRUNCATE);
1708 WritePrivateProfileString(Section, "ANSIColor", Temp, FName);
1709
1710 /* AutoWinChange VT<->TEK */
1711 WriteOnOff(Section, "AutoWinSwitch", FName, ts->AutoWinSwitch);
1712
1713 /* Terminal ID */
1714 id2str(TermList, ts->TerminalID, IdVT100, Temp, sizeof(Temp));
1715 WritePrivateProfileString(Section, "TerminalID", Temp, FName);
1716
1717 /* Russian character set (host) */
1718 id2str(RussList, ts->RussHost, IdKOI8, Temp, sizeof(Temp));
1719 WritePrivateProfileString(Section, "RussHost", Temp, FName);
1720
1721 /* Russian character set (client) */
1722 id2str(RussList, ts->RussClient, IdWindows, Temp, sizeof(Temp));
1723 WritePrivateProfileString(Section, "RussClient", Temp, FName);
1724
1725 /* Title text */
1726 WritePrivateProfileString(Section, "Title", ts->Title, FName);
1727
1728 /* Cursor shape */
1729 switch (ts->CursorShape) {
1730 case IdVCur:
1731 strncpy_s(Temp, sizeof(Temp), "vertical", _TRUNCATE);
1732 break;
1733 case IdHCur:
1734 strncpy_s(Temp, sizeof(Temp), "horizontal", _TRUNCATE);
1735 break;
1736 default:
1737 strncpy_s(Temp, sizeof(Temp), "block", _TRUNCATE);
1738 }
1739 WritePrivateProfileString(Section, "CursorShape", Temp, FName);
1740
1741 /* Hide title */
1742 WriteOnOff(Section, "HideTitle", FName, ts->HideTitle);
1743
1744 /* Popup menu */
1745 WriteOnOff(Section, "PopupMenu", FName, ts->PopupMenu);
1746
1747 /* PC-Style bold color mapping */
1748 WriteOnOff(Section, "PcBoldColor", FName,
1749 (WORD) (ts->ColorFlag & CF_PCBOLD16));
1750
1751 /* aixterm 16 colors mode */
1752 WriteOnOff(Section, "Aixterm16Color", FName,
1753 (WORD) (ts->ColorFlag & CF_AIXTERM16));
1754
1755 /* xterm 256 colors mode */
1756 WriteOnOff(Section, "Xterm256Color", FName,
1757 (WORD) (ts->ColorFlag & CF_XTERM256));
1758
1759 /* Enable scroll buffer */
1760 WriteOnOff(Section, "EnableScrollBuff", FName, ts->EnableScrollBuff);
1761
1762 /* Scroll buffer size */
1763 WriteInt(Section, "ScrollBuffSize", FName, ts->ScrollBuffSize);
1764
1765 /* VT Color */
1766 for (i = 0; i <= 1; i++) {
1767 if (ts->ColorFlag & CF_REVERSEVIDEO) {
1768 if (ts->ColorFlag & CF_REVERSECOLOR) {
1769 ts->TmpColor[0][i * 3] = GetRValue(ts->VTReverseColor[i]);
1770 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTReverseColor[i]);
1771 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTReverseColor[i]);
1772 }
1773 else {
1774 ts->TmpColor[0][i * 3] = GetRValue(ts->VTColor[!i]);
1775 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTColor[!i]);
1776 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTColor[!i]);
1777 }
1778 }
1779 else {
1780 ts->TmpColor[0][i * 3] = GetRValue(ts->VTColor[i]);
1781 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTColor[i]);
1782 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTColor[i]);
1783 }
1784 }
1785 WriteInt6(Section, "VTColor", FName,
1786 ts->TmpColor[0][0], ts->TmpColor[0][1], ts->TmpColor[0][2],
1787 ts->TmpColor[0][3], ts->TmpColor[0][4], ts->TmpColor[0][5]);
1788
1789 /* VT Bold Color */
1790 for (i = 0; i <= 1; i++) {
1791 if (ts->ColorFlag & CF_REVERSEVIDEO) {
1792 ts->TmpColor[0][i * 3] = GetRValue(ts->VTBoldColor[!i]);
1793 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTBoldColor[!i]);
1794 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTBoldColor[!i]);
1795 }
1796 else {
1797 ts->TmpColor[0][i * 3] = GetRValue(ts->VTBoldColor[i]);
1798 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTBoldColor[i]);
1799 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTBoldColor[i]);
1800 }
1801 }
1802 WriteInt6(Section, "VTBoldColor", FName,
1803 ts->TmpColor[0][0], ts->TmpColor[0][1], ts->TmpColor[0][2],
1804 ts->TmpColor[0][3], ts->TmpColor[0][4], ts->TmpColor[0][5]);
1805
1806 /* VT Blink Color */
1807 for (i = 0; i <= 1; i++) {
1808 if (ts->ColorFlag & CF_REVERSEVIDEO) {
1809 ts->TmpColor[0][i * 3] = GetRValue(ts->VTBlinkColor[!i]);
1810 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTBlinkColor[!i]);
1811 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTBlinkColor[!i]);
1812 }
1813 else {
1814 ts->TmpColor[0][i * 3] = GetRValue(ts->VTBlinkColor[i]);
1815 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTBlinkColor[i]);
1816 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTBlinkColor[i]);
1817 }
1818 }
1819 WriteInt6(Section, "VTBlinkColor", FName,
1820 ts->TmpColor[0][0], ts->TmpColor[0][1], ts->TmpColor[0][2],
1821 ts->TmpColor[0][3], ts->TmpColor[0][4], ts->TmpColor[0][5]);
1822
1823 /* VT Reverse Color */
1824 for (i = 0; i <= 1; i++) {
1825 if (ts->ColorFlag & CF_REVERSEVIDEO && ts->ColorFlag & CF_REVERSECOLOR) {
1826 ts->TmpColor[0][i * 3] = GetRValue(ts->VTColor[i]);
1827 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTColor[i]);
1828 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTColor[i]);
1829 }
1830 else {
1831 ts->TmpColor[0][i * 3] = GetRValue(ts->VTReverseColor[i]);
1832 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->VTReverseColor[i]);
1833 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->VTReverseColor[i]);
1834 }
1835 }
1836 WriteInt6(Section, "VTReverseColor", FName,
1837 ts->TmpColor[0][0], ts->TmpColor[0][1], ts->TmpColor[0][2],
1838 ts->TmpColor[0][3], ts->TmpColor[0][4], ts->TmpColor[0][5]);
1839
1840 WriteOnOff(Section, "EnableClickableUrl", FName,
1841 ts->EnableClickableUrl);
1842
1843 /* URL color */
1844 for (i = 0; i <= 1; i++) {
1845 if (ts->ColorFlag & CF_REVERSEVIDEO) {
1846 ts->TmpColor[0][i * 3] = GetRValue(ts->URLColor[!i]);
1847 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->URLColor[!i]);
1848 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->URLColor[!i]);
1849 }
1850 else {
1851 ts->TmpColor[0][i * 3] = GetRValue(ts->URLColor[i]);
1852 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->URLColor[i]);
1853 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->URLColor[i]);
1854 }
1855 }
1856 WriteInt6(Section, "URLColor", FName,
1857 ts->TmpColor[0][0], ts->TmpColor[0][1], ts->TmpColor[0][2],
1858 ts->TmpColor[0][3], ts->TmpColor[0][4], ts->TmpColor[0][5]);
1859
1860 WriteOnOff(Section, "EnableBoldAttrColor", FName,
1861 (WORD) (ts->ColorFlag & CF_BOLDCOLOR));
1862
1863 WriteOnOff(Section, "EnableBlinkAttrColor", FName,
1864 (WORD) (ts->ColorFlag & CF_BLINKCOLOR));
1865
1866 WriteOnOff(Section, "EnableReverseAttrColor", FName,
1867 (WORD) (ts->ColorFlag & CF_REVERSECOLOR));
1868
1869 WriteOnOff(Section, "EnableURLColor", FName,
1870 (WORD) (ts->ColorFlag & CF_URLCOLOR));
1871
1872 WriteOnOff(Section, "URLUnderline", FName,
1873 (WORD) (ts->FontFlag & FF_URLUNDERLINE));
1874
1875 WriteOnOff(Section, "EnableANSIColor", FName,
1876 (WORD) (ts->ColorFlag & CF_ANSICOLOR));
1877
1878 /* TEK Color */
1879 for (i = 0; i <= 1; i++) {
1880 ts->TmpColor[0][i * 3] = GetRValue(ts->TEKColor[i]);
1881 ts->TmpColor[0][i * 3 + 1] = GetGValue(ts->TEKColor[i]);
1882 ts->TmpColor[0][i * 3 + 2] = GetBValue(ts->TEKColor[i]);
1883 }
1884 WriteInt6(Section, "TEKColor", FName,
1885 ts->TmpColor[0][0], ts->TmpColor[0][1], ts->TmpColor[0][2],
1886 ts->TmpColor[0][3], ts->TmpColor[0][4], ts->TmpColor[0][5]);
1887
1888 /* TEK color emulation */
1889 WriteOnOff(Section, "TEKColorEmulation", FName, ts->TEKColorEmu);
1890
1891 /* VT Font */
1892 WriteFont(Section, "VTFont", FName,
1893 ts->VTFont, ts->VTFontSize.x, ts->VTFontSize.y,
1894 ts->VTFontCharSet);
1895
1896 /* Enable bold font flag */
1897 WriteOnOff(Section, "EnableBold", FName,
1898 (WORD) (ts->FontFlag & FF_BOLD));
1899
1900 /* Russian character set (font) */
1901 id2str(RussList, ts->RussFont, IdWindows, Temp, sizeof(Temp));
1902 WritePrivateProfileString(Section, "RussFont", Temp, FName);
1903
1904 /* TEK Font */
1905 WriteFont(Section, "TEKFont", FName,
1906 ts->TEKFont, ts->TEKFontSize.x, ts->TEKFontSize.y,
1907 ts->TEKFontCharSet);
1908
1909 /* BS key */
1910 if (ts->BSKey == IdDEL)
1911 strncpy_s(Temp, sizeof(Temp), "DEL", _TRUNCATE);
1912 else
1913 strncpy_s(Temp, sizeof(Temp), "BS", _TRUNCATE);
1914 WritePrivateProfileString(Section, "BSKey", Temp, FName);
1915
1916 /* Delete key */
1917 WriteOnOff(Section, "DeleteKey", FName, ts->DelKey);
1918
1919 /* Meta key */
1920 switch (ts->MetaKey) {
1921 case 1:
1922 strncpy_s(Temp, sizeof(Temp), "on", _TRUNCATE);
1923 break;
1924 case 2:
1925 strncpy_s(Temp, sizeof(Temp), "left", _TRUNCATE);
1926 break;
1927 case 3:
1928 strncpy_s(Temp, sizeof(Temp), "right", _TRUNCATE);
1929 break;
1930 default:
1931 strncpy_s(Temp, sizeof(Temp), "off", _TRUNCATE);
1932 }
1933 WritePrivateProfileString(Section, "Metakey", Temp, FName);
1934
1935 /* Application Keypad */
1936 WriteOnOff(Section, "DisableAppKeypad", FName, ts->DisableAppKeypad);
1937
1938 /* Application Cursor */
1939 WriteOnOff(Section, "DisableAppCursor", FName, ts->DisableAppCursor);
1940
1941 /* Russian keyboard type */
1942 id2str(RussList2, ts->RussKeyb, IdWindows, Temp, sizeof(Temp));
1943 WritePrivateProfileString(Section, "RussKeyb", Temp, FName);
1944
1945 /* Serial port ID */
1946 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%d", ts->ComPort);
1947 WritePrivateProfileString(Section, "ComPort", Temp, FName);
1948
1949 /* Baud rate */
1950 _snprintf_s(Temp, sizeof(Temp), _TRUNCATE, "%d", ts->Baud);
1951 WritePrivateProfileString(Section, "BaudRate", Temp, FName);
1952
1953 /* Parity */
1954 switch (ts->Parity) {
1955 case IdParityEven:
1956 strncpy_s(Temp, sizeof(Temp), "even", _TRUNCATE);
1957 break;
1958 case IdParityOdd:
1959 strncpy_s(Temp, sizeof(Temp), "odd", _TRUNCATE);
1960 break;
1961 default:
1962 strncpy_s(Temp, sizeof(Temp), "none", _TRUNCATE);
1963 }
1964 WritePrivateProfileString(Section, "Parity", Temp, FName);
1965
1966 /* Data bit */
1967 if (ts->DataBit == IdDataBit7)
1968 strncpy_s(Temp, sizeof(Temp), "7", _TRUNCATE);
1969 else
1970 strncpy_s(Temp, sizeof(Temp), "8", _TRUNCATE);
1971
1972 WritePrivateProfileString(Section, "DataBit", Temp, FName);
1973
1974 /* Stop bit */
1975 if (ts->StopBit == IdStopBit2)
1976 strncpy_s(Temp, sizeof(Temp), "2", _TRUNCATE);
1977 else
1978 strncpy_s(Temp, sizeof(Temp), "1", _TRUNCATE);
1979
1980 WritePrivateProfileString(Section, "StopBit", Temp, FName);
1981
1982 /* Flow control */
1983 switch (ts->Flow) {
1984 case IdFlowX:
1985 strncpy_s(Temp, sizeof(Temp), "x", _TRUNCATE);
1986 break;
1987 case IdFlowHard:
1988 strncpy_s(Temp, sizeof(Temp), "hard", _TRUNCATE);
1989 break;
1990 default:
1991 strncpy_s(Temp, sizeof(Temp), "none", _TRUNCATE);
1992 }
1993 WritePrivateProfileString(Section, "FlowCtrl", Temp, FName);
1994
1995 /* Delay per character */
1996 WriteInt(Section, "DelayPerChar", FName, ts->DelayPerChar);
1997
1998 /* Delay per line */
1999 WriteInt(Section, "DelayPerLine", FName, ts->DelayPerLine);
2000
2001 /* Telnet flag */
2002 WriteOnOff(Section, "Telnet", FName, ts->Telnet);
2003
2004 /* Telnet terminal type */
2005 WritePrivateProfileString(Section, "TermType", ts->TermType, FName);
2006
2007 /* TCP port num for non-telnet */
2008 WriteUint(Section, "TCPPort", FName, ts->TCPPort);
2009
2010 /* Auto close flag */
2011 WriteOnOff(Section, "AutoWinClose", FName, ts->AutoWinClose);
2012
2013 /* History list */
2014 WriteOnOff(Section, "Historylist", FName, ts->HistoryList);
2015
2016 /* File transfer binary flag */
2017 WriteOnOff(Section, "TransBin", FName, ts->TransBin);
2018
2019 /* Log binary flag */
2020 WriteOnOff(Section, "LogBinary", FName, ts->LogBinary);
2021
2022 /* Log append */
2023 WriteOnOff(Section, "LogAppend", FName, ts->Append);
2024
2025 /* Log plain text flag */
2026 WriteOnOff(Section, "LogTypePlainText", FName, ts->LogTypePlainText);
2027
2028 /* Log with timestamp (2006.7.23 maya) */
2029 WriteOnOff(Section, "LogTimestamp", FName, ts->LogTimestamp);
2030
2031 /* Log without transfer dialog */
2032 WriteOnOff(Section, "LogHideDialog", FName, ts->LogHideDialog);
2033
2034 /* Default Log file name (2006.8.28 maya) */
2035 WritePrivateProfileString(Section, "LogDefaultName",
2036 ts->LogDefaultName, FName);
2037
2038 /* Default Log file path (2007.5.30 maya) */
2039 WritePrivateProfileString(Section, "LogDefaultPath",
2040 ts->LogDefaultPath, FName);
2041
2042 /* Auto start logging (2007.5.31 maya) */
2043 WriteOnOff(Section, "LogAutoStart", FName, ts->LogAutoStart);
2044
2045 /* XMODEM option */
2046 switch (ts->XmodemOpt) {
2047 case XoptCRC:
2048 strncpy_s(Temp, sizeof(Temp), "crc", _TRUNCATE);
2049 break;
2050 case Xopt1K:
2051 strncpy_s(Temp, sizeof(Temp), "1k", _TRUNCATE);
2052 break;
2053 default:
2054 strncpy_s(Temp, sizeof(Temp), "checksum", _TRUNCATE);
2055 }
2056 WritePrivateProfileString(Section, "XmodemOpt", Temp, FName);
2057
2058 /* XMODEM binary flag */
2059 WriteOnOff(Section, "XmodemBin", FName, ts->XmodemBin);
2060
2061 /* XMODEM ���M�R�}���h (2007.12.21 yutaka) */
2062 WritePrivateProfileString(Section, "XmodemRcvCommand",
2063 ts->XModemRcvCommand, FName);
2064
2065 /* Default directory for file transfer */
2066 WritePrivateProfileString(Section, "FileDir", ts->FileDir, FName);
2067
2068 /* filter on file send (2007.6.5 maya) */
2069 WritePrivateProfileString(Section, "FileSendFilter",
2070 ts->FileSendFilter, FName);
2071
2072 /*------------------------------------------------------------------*/
2073 /* 8 bit control code flag -- special option */
2074 WriteOnOff(Section, "Accept8BitCtrl", FName,
2075 (WORD) (ts->TermFlag & TF_ACCEPT8BITCTRL));
2076
2077 /* Wrong sequence flag -- special option */
2078 WriteOnOff(Section, "AllowWrongSequence", FName,
2079 (WORD) (ts->TermFlag & TF_ALLOWWRONGSEQUENCE));
2080
2081 /* Auto file renaming --- special option */
2082 WriteOnOff(Section, "AutoFileRename", FName,
2083 (WORD) (ts->FTFlag & FT_RENAME));
2084
2085 /* Auto text copy --- special option */
2086 WriteOnOff(Section, "AutoTextCopy", FName, ts->AutoTextCopy);
2087
2088 /* Back wrap -- special option */
2089 WriteOnOff(Section, "BackWrap", FName,
2090 (WORD) (ts->TermFlag & TF_BACKWRAP));
2091
2092 /* Beep type -- special option */
2093 WriteOnOff(Section, "Beep", FName, ts->Beep);
2094 switch (ts->Beep) {
2095 case IdBeepOff:
2096 WritePrivateProfileString(Section, "Beep", "off", FName);
2097 break;
2098 case IdBeepOn:
2099 WritePrivateProfileString(Section, "Beep", "on", FName);
2100 break;
2101 case IdBeepVisual:
2102 WritePrivateProfileString(Section, "Beep", "visual", FName);
2103 break;
2104 }
2105
2106 /* Beep on connection & disconnection -- special option */
2107 WriteOnOff(Section, "BeepOnConnect", FName,
2108 (WORD) (ts->PortFlag & PF_BEEPONCONNECT));
2109
2110 /* Auto B-Plus activation -- special option */
2111 WriteOnOff(Section, "BPAuto", FName, (WORD) (ts->FTFlag & FT_BPAUTO));
2112
2113 /* B-Plus ESCCTL flag -- special option */
2114 WriteOnOff(Section, "BPEscCtl", FName,
2115 (WORD) (ts->FTFlag & FT_BPESCCTL));
2116
2117 /* B-Plus log -- special option */
2118 WriteOnOff(Section, "BPLog", FName, (WORD) (ts->LogFlag & LOG_BP));
2119
2120 /* Clear serial port buffer when port opening -- special option */
2121 WriteOnOff(Section, "ClearComBuffOnOpen", FName, ts->ClearComBuffOnOpen);
2122
2123 /* Confirm disconnection -- special option */
2124 WriteOnOff(Section, "ConfirmDisconnect", FName,
2125 (WORD) (ts->PortFlag & PF_CONFIRMDISCONN));
2126
2127 /* Ctrl code in Kanji -- special option */
2128 WriteOnOff(Section, "CtrlInKanji", FName,
2129 (WORD) (ts->TermFlag & TF_CTRLINKANJI));
2130
2131 /* Debug flag -- special option */
2132 WriteOnOff(Section, "Debug", FName, ts->Debug);
2133
2134 /* Delimiter list -- special option */
2135 Str2Hex(ts->DelimList, Temp, strlen(ts->DelimList),
2136 sizeof(Temp) - 1, TRUE);
2137 WritePrivateProfileString(Section, "DelimList", Temp, FName);
2138
2139 /* regard DBCS characters as delimiters -- special option */
2140 WriteOnOff(Section, "DelimDBCS", FName, ts->DelimDBCS);
2141
2142 // Enable popup menu -- special option
2143 if ((ts->MenuFlag & MF_NOPOPUP) == 0)
2144 WriteOnOff(Section, "EnablePopupMenu", FName, 1);
2145 else
2146 WriteOnOff(Section, "EnablePopupMenu", FName, 0);
2147
2148 // Enable "Show menu" -- special option
2149 if ((ts->MenuFlag & MF_NOSHOWMENU) == 0)
2150 WriteOnOff(Section, "EnableShowMenu", FName, 1);
2151 else
2152 WriteOnOff(Section, "EnableShowMenu", FName, 0);
2153
2154 /* Enable the status line -- special option */
2155 WriteOnOff(Section, "EnableStatusLine", FName,
2156 (WORD) (ts->TermFlag & TF_ENABLESLINE));
2157
2158 /* IME Flag -- special option */
2159 WriteOnOff(Section, "IME", FName, ts->UseIME);
2160
2161 /* IME-inline Flag -- special option */
2162 WriteOnOff(Section, "IMEInline", FName, ts->IMEInline);
2163
2164 /* Kermit log -- special option */
2165 WriteOnOff(Section, "KmtLog", FName, (WORD) (ts->LogFlag & LOG_KMT));
2166 WriteOnOff(Section, "KmtLongPacket", FName, (WORD) (ts->KermitOpt & KmtOptLongPacket));
2167 WriteOnOff(Section, "KmtFileAttr", FName, (WORD) (ts->KermitOpt & KmtOptFileAttr));
2168
2169 // Enable language selection -- special option
2170 if ((ts->MenuFlag & MF_NOLANGUAGE) == 0)
2171 WriteOnOff(Section, "LanguageSelection", FName, 1);
2172 else
2173 WriteOnOff(Section, "LanguageSelection", FName, 0);
2174
2175 /* Maximum scroll buffer size -- special option */
2176 WriteInt(Section, "MaxBuffSize", FName, ts->ScrollBuffMax);
2177
2178 /* Max com port number -- special option */
2179 WriteInt(Section, "MaxComPort", FName, ts->MaxComPort);
2180
2181 /* Non-blinking cursor -- special option */
2182 WriteOnOff(Section, "NonblinkingCursor", FName, ts->NonblinkingCursor);
2183
2184 WriteOnOff(Section, "KillFocusCursor", FName, ts->KillFocusCursor);
2185
2186 /* Delay for pass-thru printing activation */
2187 /* -- special option */
2188 WriteUint(Section, "PassThruDelay", FName, ts->PassThruDelay);
2189
2190 /* Printer port for pass-thru printing */
2191 /* -- special option */
2192 WritePrivateProfileString(Section, "PassThruPort", ts->PrnDev, FName);
2193
2194 /* �v�����^�p�����R�[�h�������t������ */
2195 WriteOnOff(Section, "PrinterCtrlSequence", FName,
2196 ts->TermFlag & TF_PRINTERCTRL);
2197
2198 /* Printer Font --- special option */
2199 WriteFont(Section, "PrnFont", FName,
2200 ts->PrnFont, ts->PrnFontSize.x, ts->PrnFontSize.y,
2201 ts->PrnFontCharSet);
2202
2203 // Page margins (left, right, top, bottom) for printing
2204 // -- special option
2205 WriteInt4(Section, "PrnMargin", FName,
2206 ts->PrnMargin[0], ts->PrnMargin[1],
2207 ts->PrnMargin[2], ts->PrnMargin[3]);
2208
2209 /* Quick-VAN log -- special option */
2210 WriteOnOff(Section, "QVLog", FName, (WORD) (ts->LogFlag & LOG_QV));
2211
2212 /* Quick-VAN window size -- special */
2213 WriteInt(Section, "QVWinSize", FName, ts->QVWinSize);
2214
2215 /* Russian character set (print) -- special option */
2216 id2str(RussList, ts->RussPrint, IdWindows, Temp, sizeof(Temp));
2217 WritePrivateProfileString(Section, "RussPrint", Temp, FName);
2218
2219 /* Scroll threshold -- special option */
2220 WriteInt(Section, "ScrollThreshold", FName, ts->ScrollThreshold);
2221
2222 WriteInt(Section, "MouseWheelScrollLine", FName, ts->MouseWheelScrollLine);
2223
2224 // Select on activate -- special option
2225 WriteOnOff(Section, "SelectOnActivate", FName, ts->SelOnActive);
2226
2227 /* Send 8bit control sequence -- special option */
2228 WriteOnOff(Section, "Send8BitCtrl", FName, ts->Send8BitCtrl);
2229
2230 /* Startup macro -- special option */
2231 WritePrivateProfileString(Section, "StartupMacro", ts->MacroFN, FName);
2232
2233 /* TEK GIN Mouse keycode -- special option */
2234 WriteInt(Section, "TEKGINMouseCode", FName, ts->GINMouseCode);
2235
2236 /* Telnet Auto Detect -- special option */
2237 WriteOnOff(Section, "TelAutoDetect", FName, ts->TelAutoDetect);
2238
2239 /* Telnet binary flag -- special option */
2240 WriteOnOff(Section, "TelBin", FName, ts->TelBin);
2241
2242 /* Telnet Echo flag -- special option */
2243 WriteOnOff(Section, "TelEcho", FName, ts->TelEcho);
2244
2245 /* Telnet log -- special option */
2246 WriteOnOff(Section, "TelLog", FName, (WORD) (ts->LogFlag & LOG_TEL));
2247
2248 /* TCP port num for telnet -- special option */
2249 WriteUint(Section, "TelPort", FName, ts->TelPort);
2250
2251 /* Telnet keep-alive packet(NOP command) interval -- special option */
2252 WriteUint(Section, "TelKeepAliveInterval", FName,
2253 ts->TelKeepAliveInterval);
2254
2255 /* Max number of broadcast commad history */
2256 WriteUint(Section, "MaxBroadcatHistory", FName,
2257 ts->MaxBroadcatHistory);
2258
2259 /* Local echo for non-telnet */
2260 WriteOnOff(Section, "TCPLocalEcho", FName, ts->TCPLocalEcho);
2261
2262 /* "new-line (transmit)" option for non-telnet -- special option */
2263 if (ts->TCPCRSend == IdCRLF)
2264 strncpy_s(Temp, sizeof(Temp), "CRLF", _TRUNCATE);
2265 else if (ts->TCPCRSend == IdCR)
2266 strncpy_s(Temp, sizeof(Temp), "CR", _TRUNCATE);
2267 else
2268 Temp[0] = 0;
2269 WritePrivateProfileString(Section, "TCPCRSend", Temp, FName);
2270
2271 /* Use text (background) color for "white (black)"
2272 --- special option */
2273 WriteOnOff(Section, "UseTextColor", FName,
2274 (WORD) (ts->ColorFlag & CF_USETEXTCOLOR));
2275
2276 /* Title format -- special option */
2277 WriteUint(Section, "TitleFormat", FName, ts->TitleFormat);
2278
2279 /* VT Compatible Tab -- special option */
2280 WriteOnOff(Section, "VTCompatTab", FName, ts->VTCompatTab);
2281
2282 /* VT Font space --- special option */
2283 WriteInt4(Section, "VTFontSpace", FName,
2284 ts->FontDX, ts->FontDW - ts->FontDX,
2285 ts->FontDY, ts->FontDH - ts->FontDY);
2286
2287 // VT-print scaling factors (pixels per inch) --- special option
2288 WriteInt2(Section, "VTPPI", FName, ts->VTPPI.x, ts->VTPPI.y);
2289
2290 // TEK-print scaling factors (pixels per inch) --- special option
2291 WriteInt2(Section, "TEKPPI", FName, ts->TEKPPI.x, ts->TEKPPI.y);
2292
2293 // Show "Window" menu -- special option
2294 WriteOnOff(Section, "WindowMenu", FName,
2295 (WORD) (ts->MenuFlag & MF_SHOWWINMENU));
2296
2297 /* XMODEM log -- special option */
2298 WriteOnOff(Section, "XmodemLog", FName, (WORD) (ts->LogFlag & LOG_X));
2299
2300 /* YMODEM log -- special option */
2301 WriteOnOff(Section, "YmodemLog", FName, (WORD) (ts->LogFlag & LOG_Y));
2302
2303 /* YMODEM ���M�R�}���h (2010.3.23 yutaka) */
2304 WritePrivateProfileString(Section, "YmodemRcvCommand", ts->YModemRcvCommand, FName);
2305
2306 /* Auto ZMODEM activation -- special option */
2307 WriteOnOff(Section, "ZmodemAuto", FName,
2308 (WORD) (ts->FTFlag & FT_ZAUTO));
2309
2310 /* ZMODEM data subpacket length for sending -- special */
2311 WriteInt(Section, "ZmodemDataLen", FName, ts->ZmodemDataLen);
2312 /* ZMODEM window size for sending -- special */
2313 WriteInt(Section, "ZmodemWinSize", FName, ts->ZmodemWinSize);
2314
2315 /* ZMODEM ESCCTL flag -- special option */
2316 WriteOnOff(Section, "ZmodemEscCtl", FName,
2317 (WORD) (ts->FTFlag & FT_ZESCCTL));
2318
2319 /* ZMODEM log -- special option */
2320 WriteOnOff(Section, "ZmodemLog", FName, (WORD) (ts->LogFlag & LOG_Z));
2321
2322 /* ZMODEM ���M�R�}���h (2007.12.21 yutaka) */
2323 WritePrivateProfileString(Section, "ZmodemRcvCommand", ts->ZModemRcvCommand, FName);
2324
2325 /* update file */
2326 WritePrivateProfileString(NULL, NULL, NULL, FName);
2327
2328 // Eterm lookfeel alphablend (2005.4.24 yutaka)
2329 #define ETERM_SECTION "BG"
2330 WriteOnOff(ETERM_SECTION, "BGEnable", FName,
2331 ts->EtermLookfeel.BGEnable);
2332 WriteOnOff(ETERM_SECTION, "BGUseAlphaBlendAPI", FName,
2333 ts->EtermLookfeel.BGUseAlphaBlendAPI);
2334 WritePrivateProfileString(ETERM_SECTION, "BGSPIPath",
2335 ts->EtermLookfeel.BGSPIPath, FName);
2336 WriteOnOff(ETERM_SECTION, "BGFastSizeMove", FName,
2337 ts->EtermLookfeel.BGFastSizeMove);
2338 WriteOnOff(ETERM_SECTION, "BGFlickerlessMove", FName,
2339 ts->EtermLookfeel.BGNoCopyBits);
2340 WriteOnOff(ETERM_SECTION, "BGNoFrame", FName,
2341 ts->EtermLookfeel.BGNoFrame);
2342 WritePrivateProfileString(ETERM_SECTION, "BGThemeFile",
2343 ts->EtermLookfeel.BGThemeFile, FName);
2344
2345 #ifdef USE_NORMAL_BGCOLOR
2346 // UseNormalBGColor
2347 WriteOnOff(Section, "UseNormalBGColor", FName, ts->UseNormalBGColor);
2348 #endif
2349
2350 // UI language message file
2351 WritePrivateProfileString(Section, "UILanguageFile",
2352 ts->UILanguageFile_ini, FName);
2353
2354 // Broadcast Command History (2007.3.3 maya)
2355 WriteOnOff(Section, "BroadcastCommandHistory", FName,
2356 ts->BroadcastCommandHistory);
2357
2358 // 337: 2007/03/20 Accept Broadcast
2359 WriteOnOff(Section, "AcceptBroadcast", FName, ts->AcceptBroadcast);
2360
2361 // Confirm send a file when drag and drop (2007.12.28 maya)
2362 WriteOnOff(Section, "ConfirmFileDragAndDrop", FName,
2363 ts->ConfirmFileDragAndDrop);
2364
2365 // Translate mouse wheel to cursor key when application cursor mode
2366 WriteOnOff(Section, "TranslateWheelToCursor", FName,
2367 ts->TranslateWheelToCursor);
2368
2369 // Display "New Connection" dialog on startup (2008.1.18 maya)
2370 WriteOnOff(Section, "HostDialogOnStartup", FName,
2371 ts->HostDialogOnStartup);
2372
2373 // Mouse event tracking
2374 WriteOnOff(Section, "MouseEventTracking", FName,
2375 ts->MouseEventTracking);
2376
2377 // Maximized bug tweak
2378 WriteOnOff(Section, "MaximizedBugTweak", FName, ts->MaximizedBugTweak);
2379
2380 // Convert Unicode symbol characters to DEC Special characters
2381 WriteUint(Section, "UnicodeToDecSpMapping", FName, ts->UnicodeDecSpMapping);
2382
2383 // VT Window Icon
2384 IconId2IconName(Temp, sizeof(Temp), ts->VTIcon);
2385 WritePrivateProfileString(Section, "VTIcon", Temp, FName);
2386
2387 // Tek Window Icon
2388 IconId2IconName(Temp, sizeof(Temp), ts->TEKIcon);
2389 WritePrivateProfileString(Section, "TEKIcon", Temp, FName);
2390
2391 // AutoScrollOnlyInBottomLine
2392 WriteOnOff(Section, "AutoScrollOnlyInBottomLine", FName,
2393 ts->AutoScrollOnlyInBottomLine);
2394
2395 // Unknown Unicode Character
2396 WriteOnOff(Section, "UnknownUnicodeCharacterAsWide", FName,
2397 ts->UnknownUnicodeCharaAsWide);
2398
2399 // Accept remote-controlled window title changing
2400 if (ts->AcceptTitleChangeRequest == IdTitleChangeRequestOff)
2401 strncpy_s(Temp, sizeof(Temp), "off", _TRUNCATE);
2402 else if (ts->AcceptTitleChangeRequest == IdTitleChangeRequestOverwrite)
2403 strncpy_s(Temp, sizeof(Temp), "overwrite", _TRUNCATE);
2404 else if (ts->AcceptTitleChangeRequest == IdTitleChangeRequestAhead)
2405 strncpy_s(Temp, sizeof(Temp), "ahead", _TRUNCATE);
2406 else if (ts->AcceptTitleChangeRequest == IdTitleChangeRequestLast)
2407 strncpy_s(Temp, sizeof(Temp), "last", _TRUNCATE);
2408 else
2409 Temp[0] = 0;
2410 WritePrivateProfileString(Section, "AcceptTitleChangeRequest", Temp, FName);
2411
2412 // Size of paste confirm dialog
2413 WriteInt2(Section, "PasteDialogSize", FName,
2414 ts->PasteDialogSize.cx, ts->PasteDialogSize.cy);
2415
2416 // Disable mouse event tracking when Control-Key is pressed.
2417 WriteOnOff(Section, "DisableMouseTrackingByCtrl", FName,
2418 ts->DisableMouseTrackingByCtrl);
2419
2420 // Disable TranslateWHeelToCursor when Control-Key is pressed.
2421 WriteOnOff(Section, "DisableWheelToCursorByCtrl", FName,
2422 ts->DisableWheelToCursorByCtrl);
2423
2424 // Strict Key Mapping.
2425 WriteOnOff(Section, "StrictKeyMapping", FName,
2426 ts->StrictKeyMapping);
2427
2428 // Wait4allMacroCommand
2429 WriteOnOff(Section, "Wait4allMacroCommand", FName,
2430 ts->Wait4allMacroCommand);
2431
2432 // DisableMenuSendBreak
2433 WriteOnOff(Section, "DisableMenuSendBreak", FName,
2434 ts->DisableMenuSendBreak);
2435
2436 // ClearScreenOnCloseConnection
2437 WriteOnOff(Section, "ClearScreenOnCloseConnection", FName,
2438 ts->ClearScreenOnCloseConnection);
2439
2440 // DisableAcceleratorDuplicateSession
2441 WriteOnOff(Section, "DisableAcceleratorDuplicateSession", FName,
2442 ts->DisableAcceleratorDuplicateSession);
2443
2444 // DisableMenuDuplicateSession
2445 WriteOnOff(Section, "DisableMenuDuplicateSession", FName,
2446 ts->DisableMenuDuplicateSession);
2447
2448 // DisableMenuNewConnection
2449 WriteOnOff(Section, "DisableMenuNewConnection", FName,
2450 ts->DisableMenuNewConnection);
2451
2452 // added PasteDelayPerLine (2009.4.12 maya)
2453 WriteInt(Section, "PasteDelayPerLine", FName,
2454 ts->PasteDelayPerLine);
2455
2456 // Meta sets MSB
2457 switch (ts->Meta8Bit) {
2458 case IdMeta8BitRaw:
2459 WritePrivateProfileString(Section, "Meta8Bit", "raw", FName);
2460 break;
2461 case IdMeta8BitText:
2462 WritePrivateProfileString(Section, "Meta8Bit", "text", FName);
2463 break;
2464 default:
2465 WritePrivateProfileString(Section, "Meta8Bit", "off", FName);
2466 }
2467
2468 // Window control sequence
2469 WriteOnOff(Section, "WindowCtrlSequence", FName,
2470 ts->WindowFlag & WF_WINDOWCHANGE);
2471
2472 // Cursor control sequence
2473 WriteOnOff(Section, "CursorCtrlSequence", FName,
2474 ts->WindowFlag & WF_CURSORCHANGE);
2475
2476 // Window report sequence
2477 WriteOnOff(Section, "WindowReportSequence", FName,
2478 ts->WindowFlag & WF_WINDOWREPORT);
2479
2480 // Title report sequence
2481 switch (ts->WindowFlag & WF_TITLEREPORT) {
2482 case IdTitleReportIgnore:
2483 WritePrivateProfileString(Section, "TitleReportSequence", "ignore", FName);
2484 break;
2485 case IdTitleReportAccept:
2486 WritePrivateProfileString(Section, "TitleReportSequence", "accept", FName);
2487 break;
2488 default: // IdTitleReportEmpty
2489 WritePrivateProfileString(Section, "TitleReportSequence", "empty", FName);
2490 break;
2491 }
2492
2493 // Line at a time mode
2494 WriteOnOff(Section, "EnableLineMode", FName, ts->EnableLineMode);
2495
2496 // Clear window on resize
2497 WriteOnOff(Section, "ClearOnResize", FName,
2498 ts->TermFlag & TF_CLEARONRESIZE);
2499
2500 // Alternate Screen Buffer
2501 WriteOnOff(Section, "AlternateScreenBuffer", FName,
2502 ts->TermFlag & TF_ALTSCR);
2503
2504 // IME status related cursor style
2505 WriteOnOff(Section, "IMERelatedCursor", FName,
2506 ts->WindowFlag & WF_IMECURSORCHANGE);
2507
2508 // Terminal Unique ID
2509 WritePrivateProfileString(Section, "TerminalUID", ts->TerminalUID, FName);
2510
2511 // Lock Terminal UID
2512 WriteOnOff(Section, "LockTUID", FName, ts->TermFlag & TF_LOCKTUID);
2513
2514 // Confirm PasteCR
2515 WriteOnOff(Section, "ConfirmChangePasteCR", FName, ts->ConfirmChangePasteCR);
2516
2517 // Jump List
2518 WriteOnOff(Section, "JumpList", FName, ts->JumpList);
2519
2520 // TabStopModifySequence
2521 switch (ts->TabStopFlag) {
2522 case TABF_ALL:
2523 strncpy_s(Temp, sizeof(Temp), "on", _TRUNCATE);
2524 break;
2525 case TABF_NONE:
2526 strncpy_s(Temp, sizeof(Temp), "off", _TRUNCATE);
2527 break;
2528 default:
2529 switch (ts->TabStopFlag & TABF_HTS) {
2530 case TABF_HTS7: strncpy_s(Temp, sizeof(Temp), "HTS7", _TRUNCATE); break;
2531 case TABF_HTS8: strncpy_s(Temp, sizeof(Temp), "HTS8", _TRUNCATE); break;
2532 case TABF_HTS: strncpy_s(Temp, sizeof(Temp), "HTS", _TRUNCATE); break;
2533 default: Temp[0] = 0; break;
2534 }
2535
2536 if (ts->TabStopFlag & TABF_TBC) {
2537 if (Temp[0] != 0) {
2538 strncat_s(Temp, sizeof(Temp), ",", _TRUNCATE);
2539 }
2540 switch (ts->TabStopFlag & TABF_TBC) {
2541 case TABF_TBC0: strncat_s(Temp, sizeof(Temp), "TBC0", _TRUNCATE); break;
2542 case TABF_TBC3: strncat_s(Temp, sizeof(Temp), "TBC3", _TRUNCATE); break;
2543 case TABF_TBC: strncat_s(Temp, sizeof(Temp), "TBC", _TRUNCATE); break;
2544 }
2545 }
2546
2547 if (Temp[0] == 0) { // �����������������O������
2548 strncpy_s(Temp, sizeof(Temp), "off", _TRUNCATE);
2549 }
2550 break;
2551 }
2552 WritePrivateProfileString(Section, "TabStopModifySequence", Temp, FName);
2553
2554 // Clipboard Access from Remote
2555 switch (ts->CtrlFlag & CSF_CBRW) {
2556 case CSF_CBREAD:
2557 WritePrivateProfileString(Section, "ClipboardAccessFromRemote", "read", FName);
2558 break;
2559 case CSF_CBWRITE:
2560 WritePrivateProfileString(Section, "ClipboardAccessFromRemote", "write", FName);
2561 break;
2562 case CSF_CBRW:
2563 WritePrivateProfileString(Section, "ClipboardAccessFromRemote", "on", FName);
2564 break;
2565 default:
2566 WritePrivateProfileString(Section, "ClipboardAccessFromRemote", "off", FName);
2567 break;
2568 }
2569
2570 // ClickableUrlBrowser
2571 WritePrivateProfileString(Section, "ClickableUrlBrowser", ts->ClickableUrlBrowser, FName);
2572 WritePrivateProfileString(Section, "ClickableUrlBrowserArg", ts->ClickableUrlBrowserArg, FName);
2573
2574 // Exclusive Lock when open the log file
2575 WriteOnOff(Section, "LogLockExclusive", FName, ts->LogLockExclusive);
2576 }
2577
2578 #define VTEditor "VT editor keypad"
2579 #define VTNumeric "VT numeric keypad"
2580 #define VTFunction "VT function keys"
2581 #define XFunction "X function keys"
2582 #define ShortCut "Shortcut keys"
2583
2584 void GetInt(PKeyMap KeyMap, int KeyId, PCHAR Sect, PCHAR Key, PCHAR FName)
2585 {
2586 char Temp[11];
2587 WORD Num;
2588
2589 GetPrivateProfileString(Sect, Key, "", Temp, sizeof(Temp), FName);
2590 if (Temp[0] == 0)
2591 Num = 0xFFFF;
2592 else if (_stricmp(Temp, "off") == 0)
2593 Num = 0xFFFF;
2594 else if (sscanf(Temp, "%d", &Num) != 1)
2595 Num = 0xFFFF;
2596
2597 KeyMap->Map[KeyId - 1] = Num;
2598 }
2599
2600 void FAR PASCAL ReadKeyboardCnf
2601 (PCHAR FName, PKeyMap KeyMap, BOOL ShowWarning) {
2602 int i, j, Ptr;
2603 char EntName[7];
2604 char TempStr[221];
2605 char KStr[201];
2606
2607 // clear key map
2608 for (i = 0; i <= IdKeyMax - 1; i++)
2609 KeyMap->Map[i] = 0xFFFF;
2610 for (i = 0; i <= NumOfUserKey - 1; i++) {
2611 KeyMap->UserKeyPtr[i] = 0;
2612 KeyMap->UserKeyLen[i] = 0;
2613 }
2614
2615 // VT editor keypad
2616 GetInt(KeyMap, IdUp, VTEditor, "Up", FName);
2617
2618 GetInt(KeyMap, IdDown, VTEditor, "Down", FName);
2619
2620 GetInt(KeyMap, IdRight, VTEditor, "Right", FName);
2621
2622 GetInt(KeyMap, IdLeft, VTEditor, "Left", FName);
2623
2624 GetInt(KeyMap, IdFind, VTEditor, "Find", FName);
2625
2626 GetInt(KeyMap, IdInsert, VTEditor, "Insert", FName);
2627
2628 GetInt(KeyMap, IdRemove, VTEditor, "Remove", FName);
2629
2630 GetInt(KeyMap, IdSelect, VTEditor, "Select", FName);
2631
2632 GetInt(KeyMap, IdPrev, VTEditor, "Prev", FName);
2633
2634 GetInt(KeyMap, IdNext, VTEditor, "Next", FName);
2635
2636 // VT numeric keypad
2637 GetInt(KeyMap, Id0, VTNumeric, "Num0", FName);
2638
2639 GetInt(KeyMap, Id1, VTNumeric, "Num1", FName);
2640
2641 GetInt(KeyMap, Id2, VTNumeric, "Num2", FName);
2642
2643 GetInt(KeyMap, Id3, VTNumeric, "Num3", FName);
2644
2645 GetInt(KeyMap, Id4, VTNumeric, "Num4", FName);
2646
2647 GetInt(KeyMap, Id5, VTNumeric, "Num5", FName);
2648
2649 GetInt(KeyMap, Id6, VTNumeric, "Num6", FName);
2650
2651 GetInt(KeyMap, Id7, VTNumeric, "Num7", FName);
2652
2653 GetInt(KeyMap, Id8, VTNumeric, "Num8", FName);
2654
2655 GetInt(KeyMap, Id9, VTNumeric, "Num9", FName);
2656
2657 GetInt(KeyMap, IdMinus, VTNumeric, "NumMinus", FName);
2658
2659 GetInt(KeyMap, IdComma, VTNumeric, "NumComma", FName);
2660
2661 GetInt(KeyMap, IdPeriod, VTNumeric, "NumPeriod", FName);
2662
2663 GetInt(KeyMap, IdEnter, VTNumeric, "NumEnter", FName);
2664
2665 GetInt(KeyMap, IdSlash, VTNumeric, "NumSlash", FName);
2666
2667 GetInt(KeyMap, IdAsterisk, VTNumeric, "NumAsterisk", FName);
2668
2669 GetInt(KeyMap, IdPlus, VTNumeric, "NumPlus", FName);
2670
2671 GetInt(KeyMap, IdPF1, VTNumeric, "PF1", FName);
2672
2673 GetInt(KeyMap, IdPF2, VTNumeric, "PF2", FName);
2674
2675 GetInt(KeyMap, IdPF3, VTNumeric, "PF3", FName);
2676
2677 GetInt(KeyMap, IdPF4, VTNumeric, "PF4", FName);
2678
2679 // VT function keys
2680 GetInt(KeyMap, IdHold, VTFunction, "Hold", FName);
2681
2682 GetInt(KeyMap, IdPrint, VTFunction, "Print", FName);
2683
2684 GetInt(KeyMap, IdBreak, VTFunction, "Break", FName);
2685
2686 GetInt(KeyMap, IdF6, VTFunction, "F6", FName);
2687
2688 GetInt(KeyMap, IdF7, VTFunction, "F7", FName);
2689
2690 GetInt(KeyMap, IdF8, VTFunction, "F8", FName);
2691
2692 GetInt(KeyMap, IdF9, VTFunction, "F9", FName);
2693
2694 GetInt(KeyMap, IdF10, VTFunction, "F10", FName);
2695
2696 GetInt(KeyMap, IdF11, VTFunction, "F11", FName);
2697
2698 GetInt(KeyMap, IdF12, VTFunction, "F12", FName);
2699
2700 GetInt(KeyMap, IdF13, VTFunction, "F13", FName);
2701
2702 GetInt(KeyMap, IdF14, VTFunction, "F14", FName);
2703
2704 GetInt(KeyMap, IdHelp, VTFunction, "Help", FName);
2705
2706 GetInt(KeyMap, IdDo, VTFunction, "Do", FName);
2707
2708 GetInt(KeyMap, IdF17, VTFunction, "F17", FName);
2709
2710 GetInt(KeyMap, IdF18, VTFunction, "F18", FName);
2711
2712 GetInt(KeyMap, IdF19, VTFunction, "F19", FName);
2713
2714 GetInt(KeyMap, IdF20, VTFunction, "F20", FName);
2715
2716 // UDK
2717 GetInt(KeyMap, IdUDK6, VTFunction, "UDK6", FName);
2718
2719 GetInt(KeyMap, IdUDK7, VTFunction, "UDK7", FName);
2720
2721 GetInt(KeyMap, IdUDK8, VTFunction, "UDK8", FName);
2722
2723 GetInt(KeyMap, IdUDK9, VTFunction, "UDK9", FName);
2724
2725 GetInt(KeyMap, IdUDK10, VTFunction, "UDK10", FName);
2726
2727 GetInt(KeyMap, IdUDK11, VTFunction, "UDK11", FName);
2728
2729 GetInt(KeyMap, IdUDK12, VTFunction, "UDK12", FName);
2730
2731 GetInt(KeyMap, IdUDK13, VTFunction, "UDK13", FName);
2732
2733 GetInt(KeyMap, IdUDK14, VTFunction, "UDK14", FName);
2734
2735 GetInt(KeyMap, IdUDK15, VTFunction, "UDK15", FName);
2736
2737 GetInt(KeyMap, IdUDK16, VTFunction, "UDK16", FName);
2738
2739 GetInt(KeyMap, IdUDK17, VTFunction, "UDK17", FName);
2740
2741 GetInt(KeyMap, IdUDK18, VTFunction, "UDK18", FName);
2742
2743 GetInt(KeyMap, IdUDK19, VTFunction, "UDK19", FName);
2744
2745 GetInt(KeyMap, IdUDK20, VTFunction, "UDK20", FName);
2746
2747 // XTERM function / extended keys
2748 GetInt(KeyMap, IdXF1, XFunction, "XF1", FName);
2749
2750 GetInt(KeyMap, IdXF2, XFunction, "XF2", FName);
2751
2752 GetInt(KeyMap, IdXF3, XFunction, "XF3", FName);
2753
2754 GetInt(KeyMap, IdXF4, XFunction, "XF4", FName);
2755
2756 GetInt(KeyMap, IdXF5, XFunction, "XF5", FName);
2757
2758 GetInt(KeyMap, IdXBackTab, XFunction, "XBackTab", FName);
2759
2760 // accelerator keys
2761 GetInt(KeyMap, IdCmdEditCopy, ShortCut, "EditCopy", FName);
2762
2763 GetInt(KeyMap, IdCmdEditPaste, ShortCut, "EditPaste", FName);
2764
2765 GetInt(KeyMap, IdCmdEditPasteCR, ShortCut, "EditPasteCR", FName);
2766
2767 GetInt(KeyMap, IdCmdEditCLS, ShortCut, "EditCLS", FName);
2768
2769 GetInt(KeyMap, IdCmdEditCLB, ShortCut, "EditCLB", FName);
2770
2771 GetInt(KeyMap, IdCmdCtrlOpenTEK, ShortCut, "ControlOpenTEK", FName);
2772
2773 GetInt(KeyMap, IdCmdCtrlCloseTEK, ShortCut, "ControlCloseTEK", FName);
2774
2775 GetInt(KeyMap, IdCmdLineUp, ShortCut, "LineUp", FName);
2776
2777 GetInt(KeyMap, IdCmdLineDown, ShortCut, "LineDown", FName);
2778
2779 GetInt(KeyMap, IdCmdPageUp, ShortCut, "PageUp", FName);
2780
2781 GetInt(KeyMap, IdCmdPageDown, ShortCut, "PageDown", FName);
2782
2783 GetInt(KeyMap, IdCmdBuffTop, ShortCut, "BuffTop", FName);
2784
2785 GetInt(KeyMap, IdCmdBuffBottom, ShortCut, "BuffBottom", FName);
2786
2787 GetInt(KeyMap, IdCmdNextWin, ShortCut, "NextWin", FName);
2788
2789 GetInt(KeyMap, IdCmdPrevWin, ShortCut, "PrevWin", FName);
2790
2791 GetInt(KeyMap, IdCmdNextSWin, ShortCut, "NextShownWin", FName);
2792
2793 GetInt(KeyMap, IdCmdPrevSWin, ShortCut, "PrevShownWin", FName);
2794
2795 GetInt(KeyMap, IdCmdLocalEcho, ShortCut, "LocalEcho", FName);
2796
2797 GetInt(KeyMap, IdCmdScrollLock, ShortCut, "ScrollLock", FName);
2798
2799 /* user keys */
2800
2801 Ptr = 0;
2802
2803 i = IdUser1;
2804 do {
2805 _snprintf_s(EntName, sizeof(EntName), _TRUNCATE, "User%d", i - IdUser1 + 1);
2806 GetPrivateProfileString("User keys", EntName, "",
2807 TempStr, sizeof(TempStr), FName);
2808 if (strlen(TempStr) > 0) {
2809 /* scan code */
2810 GetNthString(TempStr, 1, sizeof(KStr), KStr);
2811 if (_stricmp(KStr, "off") == 0