Created new data types `Filename' and `FontSpec', intended to be
[u/mdw/putty] / windlg.c
CommitLineData
374330e2 1#include <windows.h>
2#include <commctrl.h>
3#include <commdlg.h>
374330e2 4#include <stdio.h>
5#include <stdlib.h>
b6c680d4 6#include <ctype.h>
71346075 7#include <time.h>
374330e2 8
374330e2 9#include "ssh.h"
bea1ef5f 10#include "putty.h"
8c3cd914 11#include "winstuff.h"
374330e2 12#include "win_res.h"
d5859615 13#include "storage.h"
374330e2 14
9a1291fe 15#ifdef MSVC4
16#define TVINSERTSTRUCT TV_INSERTSTRUCT
17#define TVITEM TV_ITEM
18#define ICON_BIG 1
19#endif
20
c5e9c988 21static char **events = NULL;
22static int nevents = 0, negsize = 0;
23
1cd246bb 24static int readytogo;
c8d7378d 25static int sesslist_has_focus;
70133c0e 26static int requested_help;
1cd246bb 27
ca20bfcf 28static struct prefslist cipherlist;
29
3ea863a3 30extern Config cfg; /* defined in window.c */
31
0b4f0bc0 32struct sesslist sesslist; /* exported to window.c */
33
b44b307a 34#define PRINTER_DISABLED_STRING "None (printing disabled)"
35
3da0b1d2 36void force_normal(HWND hwnd)
c9def1b8 37{
a9422f39 38 static int recurse = 0;
c9def1b8 39
40 WINDOWPLACEMENT wp;
41
32874aea 42 if (recurse)
43 return;
c9def1b8 44 recurse = 1;
45
46 wp.length = sizeof(wp);
32874aea 47 if (GetWindowPlacement(hwnd, &wp) && wp.showCmd == SW_SHOWMAXIMIZED) {
c9def1b8 48 wp.showCmd = SW_SHOWNORMAL;
49 SetWindowPlacement(hwnd, &wp);
50 }
51 recurse = 0;
52}
53
32874aea 54static void MyGetDlgItemInt(HWND hwnd, int id, int *result)
55{
374330e2 56 BOOL ok;
57 int n;
32874aea 58 n = GetDlgItemInt(hwnd, id, &ok, FALSE);
374330e2 59 if (ok)
60 *result = n;
61}
62
32874aea 63static void MyGetDlgItemFlt(HWND hwnd, int id, int *result, int scale)
64{
7f4968e6 65 char text[80];
66 BOOL ok;
32874aea 67 ok = GetDlgItemText(hwnd, id, text, sizeof(text) - 1);
7f4968e6 68 if (ok && text[0])
69 *result = (int) (scale * atof(text));
70}
71
32874aea 72static void MySetDlgItemFlt(HWND hwnd, int id, double value)
73{
7f4968e6 74 char text[80];
75 sprintf(text, "%g", value);
32874aea 76 SetDlgItemText(hwnd, id, text);
7f4968e6 77}
78
32874aea 79static int CALLBACK LogProc(HWND hwnd, UINT msg,
80 WPARAM wParam, LPARAM lParam)
81{
374330e2 82 int i;
83
84 switch (msg) {
85 case WM_INITDIALOG:
32874aea 86 {
87 static int tabs[4] = { 78, 108 };
88 SendDlgItemMessage(hwnd, IDN_LIST, LB_SETTABSTOPS, 2,
89 (LPARAM) tabs);
90 }
91 for (i = 0; i < nevents; i++)
92 SendDlgItemMessage(hwnd, IDN_LIST, LB_ADDSTRING,
93 0, (LPARAM) events[i]);
374330e2 94 return 1;
374330e2 95 case WM_COMMAND:
96 switch (LOWORD(wParam)) {
97 case IDOK:
475eebf9 98 case IDCANCEL:
374330e2 99 logbox = NULL;
32874aea 100 SetActiveWindow(GetParent(hwnd));
101 DestroyWindow(hwnd);
374330e2 102 return 0;
32874aea 103 case IDN_COPY:
989b10e9 104 if (HIWORD(wParam) == BN_CLICKED ||
105 HIWORD(wParam) == BN_DOUBLECLICKED) {
32874aea 106 int selcount;
107 int *selitems;
108 selcount = SendDlgItemMessage(hwnd, IDN_LIST,
109 LB_GETSELCOUNT, 0, 0);
110 if (selcount == 0) { /* don't even try to copy zero items */
111 MessageBeep(0);
112 break;
113 }
114
115 selitems = smalloc(selcount * sizeof(int));
116 if (selitems) {
117 int count = SendDlgItemMessage(hwnd, IDN_LIST,
118 LB_GETSELITEMS,
119 selcount,
120 (LPARAM) selitems);
121 int i;
122 int size;
123 char *clipdata;
124 static unsigned char sel_nl[] = SEL_NL;
125
126 if (count == 0) { /* can't copy zero stuff */
127 MessageBeep(0);
128 break;
129 }
130
131 size = 0;
132 for (i = 0; i < count; i++)
133 size +=
134 strlen(events[selitems[i]]) + sizeof(sel_nl);
135
136 clipdata = smalloc(size);
137 if (clipdata) {
138 char *p = clipdata;
139 for (i = 0; i < count; i++) {
140 char *q = events[selitems[i]];
141 int qlen = strlen(q);
142 memcpy(p, q, qlen);
143 p += qlen;
144 memcpy(p, sel_nl, sizeof(sel_nl));
145 p += sizeof(sel_nl);
146 }
a8327734 147 write_aclip(NULL, clipdata, size, TRUE);
32874aea 148 sfree(clipdata);
149 }
150 sfree(selitems);
151
152 for (i = 0; i < nevents; i++)
153 SendDlgItemMessage(hwnd, IDN_LIST, LB_SETSEL,
154 FALSE, i);
155 }
156 }
157 return 0;
374330e2 158 }
159 return 0;
160 case WM_CLOSE:
161 logbox = NULL;
32874aea 162 SetActiveWindow(GetParent(hwnd));
163 DestroyWindow(hwnd);
374330e2 164 return 0;
165 }
166 return 0;
167}
168
32874aea 169static int CALLBACK LicenceProc(HWND hwnd, UINT msg,
170 WPARAM wParam, LPARAM lParam)
171{
d57835ab 172 switch (msg) {
173 case WM_INITDIALOG:
174 return 1;
175 case WM_COMMAND:
176 switch (LOWORD(wParam)) {
177 case IDOK:
97749503 178 EndDialog(hwnd, 1);
d57835ab 179 return 0;
180 }
181 return 0;
182 case WM_CLOSE:
97749503 183 EndDialog(hwnd, 1);
d57835ab 184 return 0;
185 }
186 return 0;
187}
188
32874aea 189static int CALLBACK AboutProc(HWND hwnd, UINT msg,
190 WPARAM wParam, LPARAM lParam)
191{
374330e2 192 switch (msg) {
193 case WM_INITDIALOG:
32874aea 194 SetDlgItemText(hwnd, IDA_VERSION, ver);
374330e2 195 return 1;
374330e2 196 case WM_COMMAND:
197 switch (LOWORD(wParam)) {
198 case IDOK:
32874aea 199 case IDCANCEL:
200 EndDialog(hwnd, TRUE);
374330e2 201 return 0;
202 case IDA_LICENCE:
203 EnableWindow(hwnd, 0);
32874aea 204 DialogBox(hinst, MAKEINTRESOURCE(IDD_LICENCEBOX),
205 NULL, LicenceProc);
374330e2 206 EnableWindow(hwnd, 1);
32874aea 207 SetActiveWindow(hwnd);
374330e2 208 return 0;
defab6b8 209
32874aea 210 case IDA_WEB:
211 /* Load web browser */
212 ShellExecute(hwnd, "open",
213 "http://www.chiark.greenend.org.uk/~sgtatham/putty/",
214 0, 0, SW_SHOWDEFAULT);
215 return 0;
374330e2 216 }
217 return 0;
218 case WM_CLOSE:
32874aea 219 EndDialog(hwnd, TRUE);
374330e2 220 return 0;
221 }
222 return 0;
223}
224
301b66db 225/*
226 * Null dialog procedure.
227 */
32874aea 228static int CALLBACK NullDlgProc(HWND hwnd, UINT msg,
229 WPARAM wParam, LPARAM lParam)
230{
301b66db 231 return 0;
232}
233
c96a8fef 234static char savedsession[2048];
235
32874aea 236enum { IDCX_ABOUT =
237 IDC_ABOUT, IDCX_TVSTATIC, IDCX_TREEVIEW, controlstartvalue,
927d4fc5 238
239 sessionpanelstart,
240 IDC_TITLE_SESSION,
3ac9cd9f 241 IDC_BOX_SESSION1,
242 IDC_BOX_SESSION2,
927d4fc5 243 IDC_BOX_SESSION3,
244 IDC_HOSTSTATIC,
245 IDC_HOST,
246 IDC_PORTSTATIC,
247 IDC_PORT,
248 IDC_PROTSTATIC,
249 IDC_PROTRAW,
250 IDC_PROTTELNET,
c91409da 251 IDC_PROTRLOGIN,
927d4fc5 252 IDC_PROTSSH,
253 IDC_SESSSTATIC,
254 IDC_SESSEDIT,
255 IDC_SESSLIST,
256 IDC_SESSLOAD,
257 IDC_SESSSAVE,
258 IDC_SESSDEL,
259 IDC_CLOSEEXIT,
b41069ff 260 IDC_COEALWAYS,
b41069ff 261 IDC_COENEVER,
1cd48051 262 IDC_COENORMAL,
927d4fc5 263 sessionpanelend,
c96a8fef 264
0965bee0 265 loggingpanelstart,
156686ef 266 IDC_TITLE_LOGGING,
0965bee0 267 IDC_BOX_LOGGING1,
268 IDC_LSTATSTATIC,
269 IDC_LSTATOFF,
270 IDC_LSTATASCII,
271 IDC_LSTATRAW,
00db133f 272 IDC_LSTATPACKET,
0965bee0 273 IDC_LGFSTATIC,
274 IDC_LGFEDIT,
275 IDC_LGFBUTTON,
66ee282a 276 IDC_LGFEXPLAIN,
9f89f96e 277 IDC_LSTATXIST,
278 IDC_LSTATXOVR,
279 IDC_LSTATXAPN,
280 IDC_LSTATXASK,
0965bee0 281 loggingpanelend,
282
c96a8fef 283 keyboardpanelstart,
927d4fc5 284 IDC_TITLE_KEYBOARD,
3ac9cd9f 285 IDC_BOX_KEYBOARD1,
286 IDC_BOX_KEYBOARD2,
287 IDC_BOX_KEYBOARD3,
927d4fc5 288 IDC_DELSTATIC,
289 IDC_DEL008,
290 IDC_DEL127,
291 IDC_HOMESTATIC,
292 IDC_HOMETILDE,
293 IDC_HOMERXVT,
294 IDC_FUNCSTATIC,
295 IDC_FUNCTILDE,
296 IDC_FUNCLINUX,
297 IDC_FUNCXTERM,
298 IDC_FUNCVT400,
f37caa11 299 IDC_FUNCVT100P,
300 IDC_FUNCSCO,
927d4fc5 301 IDC_KPSTATIC,
302 IDC_KPNORMAL,
303 IDC_KPAPPLIC,
304 IDC_KPNH,
305 IDC_CURSTATIC,
306 IDC_CURNORMAL,
307 IDC_CURAPPLIC,
a094ae43 308 IDC_COMPOSEKEY,
95bbe1ae 309 IDC_CTRLALTKEYS,
c96a8fef 310 keyboardpanelend,
311
312 terminalpanelstart,
927d4fc5 313 IDC_TITLE_TERMINAL,
3ac9cd9f 314 IDC_BOX_TERMINAL1,
315 IDC_BOX_TERMINAL2,
b44b307a 316 IDC_BOX_TERMINAL3,
927d4fc5 317 IDC_WRAPMODE,
318 IDC_DECOM,
927d4fc5 319 IDC_LFHASCR,
927d4fc5 320 IDC_BCE,
321 IDC_BLINKTEXT,
e7fbcdd8 322 IDC_ANSWERBACK,
323 IDC_ANSWEREDIT,
0965bee0 324 IDC_ECHOSTATIC,
325 IDC_ECHOBACKEND,
326 IDC_ECHOYES,
327 IDC_ECHONO,
328 IDC_EDITSTATIC,
329 IDC_EDITBACKEND,
330 IDC_EDITYES,
331 IDC_EDITNO,
b44b307a 332 IDC_PRINTERSTATIC,
333 IDC_PRINTER,
c96a8fef 334 terminalpanelend,
335
0d2086c5 336 featurespanelstart,
337 IDC_TITLE_FEATURES,
338 IDC_BOX_FEATURES1,
339 IDC_NOAPPLICK,
340 IDC_NOAPPLICC,
c0d36a72 341 IDC_NOMOUSEREP,
0d2086c5 342 IDC_NORESIZE,
343 IDC_NOALTSCREEN,
344 IDC_NOWINTITLE,
345 IDC_NODBACKSPACE,
346 IDC_NOCHARSET,
347 featurespanelend,
348
156686ef 349 bellpanelstart,
350 IDC_TITLE_BELL,
351 IDC_BOX_BELL1,
352 IDC_BOX_BELL2,
353 IDC_BELLSTATIC,
354 IDC_BELL_DISABLED,
355 IDC_BELL_DEFAULT,
03169ad0 356 IDC_BELL_WAVEFILE,
156686ef 357 IDC_BELL_VISUAL,
03169ad0 358 IDC_BELL_WAVESTATIC,
359 IDC_BELL_WAVEEDIT,
360 IDC_BELL_WAVEBROWSE,
f8a28d1f 361 IDC_B_IND_STATIC,
362 IDC_B_IND_DISABLED,
363 IDC_B_IND_FLASH,
364 IDC_B_IND_STEADY,
156686ef 365 IDC_BELLOVL,
366 IDC_BELLOVLNSTATIC,
367 IDC_BELLOVLN,
368 IDC_BELLOVLTSTATIC,
369 IDC_BELLOVLT,
370 IDC_BELLOVLEXPLAIN,
371 IDC_BELLOVLSSTATIC,
372 IDC_BELLOVLS,
373 bellpanelend,
374
c96a8fef 375 windowpanelstart,
927d4fc5 376 IDC_TITLE_WINDOW,
3ac9cd9f 377 IDC_BOX_WINDOW1,
378 IDC_BOX_WINDOW2,
4c4f2716 379 IDC_BOX_WINDOW3,
380 IDC_ROWSSTATIC,
381 IDC_ROWSEDIT,
382 IDC_COLSSTATIC,
383 IDC_COLSEDIT,
ad5c93cc 384 IDC_RESIZESTATIC,
385 IDC_RESIZETERM,
386 IDC_RESIZEFONT,
387 IDC_RESIZENONE,
0ed2f48e 388 IDC_RESIZEEITHER,
927d4fc5 389 IDC_SCROLLBAR,
a401e5f3 390 IDC_SCROLLBARFULLSCREEN,
927d4fc5 391 IDC_SAVESTATIC,
392 IDC_SAVEEDIT,
d0cadfcd 393 IDC_SCROLLKEY,
394 IDC_SCROLLDISP,
395 windowpanelend,
396
397 behaviourpanelstart,
398 IDC_TITLE_BEHAVIOUR,
399 IDC_BOX_BEHAVIOUR1,
400 IDC_CLOSEWARN,
927d4fc5 401 IDC_ALTF4,
402 IDC_ALTSPACE,
a094ae43 403 IDC_ALTONLY,
e95edc00 404 IDC_ALWAYSONTOP,
8f57d753 405 IDC_FULLSCREENONALTENTER,
d0cadfcd 406 behaviourpanelend,
c96a8fef 407
4c4f2716 408 appearancepanelstart,
409 IDC_TITLE_APPEARANCE,
3ac9cd9f 410 IDC_BOX_APPEARANCE1,
411 IDC_BOX_APPEARANCE2,
412 IDC_BOX_APPEARANCE3,
413 IDC_BOX_APPEARANCE4,
57d08f2f 414 IDC_BOX_APPEARANCE5,
2d3411e9 415 IDC_CURSORSTATIC,
4e30ff69 416 IDC_CURBLOCK,
417 IDC_CURUNDER,
418 IDC_CURVERT,
4c4f2716 419 IDC_BLINKCUR,
420 IDC_FONTSTATIC,
421 IDC_CHOOSEFONT,
422 IDC_WINTITLE,
423 IDC_WINEDIT,
424 IDC_WINNAME,
554c540d 425 IDC_HIDEMOUSE,
57d08f2f 426 IDC_SUNKENEDGE,
5a73255e 427 IDC_WINBSTATIC,
428 IDC_WINBEDIT,
4c4f2716 429 appearancepanelend,
430
927d4fc5 431 connectionpanelstart,
432 IDC_TITLE_CONNECTION,
3ac9cd9f 433 IDC_BOX_CONNECTION1,
434 IDC_BOX_CONNECTION2,
2184a5d9 435 IDC_BOX_CONNECTION3,
927d4fc5 436 IDC_TTSTATIC,
437 IDC_TTEDIT,
438 IDC_LOGSTATIC,
439 IDC_LOGEDIT,
440 IDC_PINGSTATIC,
441 IDC_PINGEDIT,
2184a5d9 442 IDC_NODELAY,
927d4fc5 443 connectionpanelend,
444
8eebd221 445 proxypanelstart,
446 IDC_TITLE_PROXY,
447 IDC_BOX_PROXY1,
448 IDC_PROXYTYPESTATIC,
449 IDC_PROXYTYPENONE,
450 IDC_PROXYTYPEHTTP,
451 IDC_PROXYTYPESOCKS,
452 IDC_PROXYTYPETELNET,
453 IDC_PROXYHOSTSTATIC,
454 IDC_PROXYHOSTEDIT,
455 IDC_PROXYPORTSTATIC,
456 IDC_PROXYPORTEDIT,
457 IDC_PROXYEXCLUDESTATIC,
458 IDC_PROXYEXCLUDEEDIT,
b804e1e5 459 IDC_PROXYLOCALHOST,
b7a189f3 460 IDC_PROXYDNSSTATIC,
461 IDC_PROXYDNSNO,
462 IDC_PROXYDNSAUTO,
463 IDC_PROXYDNSYES,
8eebd221 464 IDC_PROXYUSERSTATIC,
465 IDC_PROXYUSEREDIT,
466 IDC_PROXYPASSSTATIC,
467 IDC_PROXYPASSEDIT,
468 IDC_BOX_PROXY2,
469 IDC_PROXYTELNETCMDSTATIC,
470 IDC_PROXYTELNETCMDEDIT,
471 IDC_PROXYSOCKSVERSTATIC,
472 IDC_PROXYSOCKSVER5,
473 IDC_PROXYSOCKSVER4,
474 proxypanelend,
475
c96a8fef 476 telnetpanelstart,
927d4fc5 477 IDC_TITLE_TELNET,
3ac9cd9f 478 IDC_BOX_TELNET1,
479 IDC_BOX_TELNET2,
927d4fc5 480 IDC_TSSTATIC,
481 IDC_TSEDIT,
482 IDC_ENVSTATIC,
483 IDC_VARSTATIC,
484 IDC_VAREDIT,
485 IDC_VALSTATIC,
486 IDC_VALEDIT,
487 IDC_ENVLIST,
488 IDC_ENVADD,
489 IDC_ENVREMOVE,
490 IDC_EMSTATIC,
491 IDC_EMBSD,
492 IDC_EMRFC,
8faa456c 493 IDC_ACTSTATIC,
494 IDC_TPASSIVE,
495 IDC_TACTIVE,
70133c0e 496 IDC_TELNETKEY,
eee63b77 497 IDC_TELNETRET,
c96a8fef 498 telnetpanelend,
499
c91409da 500 rloginpanelstart,
501 IDC_TITLE_RLOGIN,
3ac9cd9f 502 IDC_BOX_RLOGIN1,
503 IDC_BOX_RLOGIN2,
c91409da 504 IDC_R_TSSTATIC,
505 IDC_R_TSEDIT,
506 IDC_RLLUSERSTATIC,
507 IDC_RLLUSEREDIT,
508 rloginpanelend,
509
c96a8fef 510 sshpanelstart,
927d4fc5 511 IDC_TITLE_SSH,
3ac9cd9f 512 IDC_BOX_SSH1,
513 IDC_BOX_SSH2,
514 IDC_BOX_SSH3,
927d4fc5 515 IDC_NOPTY,
ca20bfcf 516 IDC_BOX_SSHCIPHER,
517 IDC_CIPHERSTATIC2,
518 IDC_CIPHERLIST,
519 IDC_CIPHERUP,
520 IDC_CIPHERDN,
cb4d4768 521 IDC_SSH2DES,
927d4fc5 522 IDC_SSHPROTSTATIC,
38d228a2 523 IDC_SSHPROT1ONLY,
927d4fc5 524 IDC_SSHPROT1,
525 IDC_SSHPROT2,
759712a6 526 IDC_SSHPROT2ONLY,
927d4fc5 527 IDC_CMDSTATIC,
528 IDC_CMDEDIT,
4ba9b64b 529 IDC_COMPRESS,
c96a8fef 530 sshpanelend,
531
ca20bfcf 532 sshauthpanelstart,
533 IDC_TITLE_SSHAUTH,
534 IDC_BOX_SSHAUTH1,
535 IDC_BOX_SSHAUTH2,
536 IDC_PKSTATIC,
537 IDC_PKEDIT,
538 IDC_PKBUTTON,
539 IDC_AGENTFWD,
5bb641e1 540 IDC_CHANGEUSER,
ca20bfcf 541 IDC_AUTHTIS,
f091e308 542 IDC_AUTHKI,
ca20bfcf 543 sshauthpanelend,
544
2c9c6388 545 sshbugspanelstart,
546 IDC_TITLE_SSHBUGS,
547 IDC_BOX_SSHBUGS1,
548 IDC_BUGS_IGNORE1,
549 IDC_BUGD_IGNORE1,
550 IDC_BUGS_PLAINPW1,
551 IDC_BUGD_PLAINPW1,
552 IDC_BUGS_RSA1,
553 IDC_BUGD_RSA1,
554 IDC_BUGS_HMAC2,
555 IDC_BUGD_HMAC2,
556 IDC_BUGS_DERIVEKEY2,
557 IDC_BUGD_DERIVEKEY2,
558 IDC_BUGS_RSAPAD2,
559 IDC_BUGD_RSAPAD2,
8e975795 560 IDC_BUGS_DHGEX2,
561 IDC_BUGD_DHGEX2,
2c9c6388 562 sshbugspanelend,
563
c96a8fef 564 selectionpanelstart,
927d4fc5 565 IDC_TITLE_SELECTION,
3ac9cd9f 566 IDC_BOX_SELECTION1,
567 IDC_BOX_SELECTION2,
d3a22f79 568 IDC_BOX_SELECTION3,
927d4fc5 569 IDC_MBSTATIC,
570 IDC_MBWINDOWS,
571 IDC_MBXTERM,
b90840c3 572 IDC_MOUSEOVERRIDE,
6908fed7 573 IDC_SELTYPESTATIC,
574 IDC_SELTYPELEX,
575 IDC_SELTYPERECT,
927d4fc5 576 IDC_CCSTATIC,
577 IDC_CCLIST,
578 IDC_CCSET,
579 IDC_CCSTATIC2,
580 IDC_CCEDIT,
d3a22f79 581 IDC_RAWCNP,
a7419ea4 582 IDC_RTFPASTE,
c96a8fef 583 selectionpanelend,
584
585 colourspanelstart,
927d4fc5 586 IDC_TITLE_COLOURS,
3ac9cd9f 587 IDC_BOX_COLOURS1,
588 IDC_BOX_COLOURS2,
927d4fc5 589 IDC_BOLDCOLOUR,
590 IDC_PALETTE,
5055f918 591 IDC_COLOURSTATIC,
592 IDC_COLOURLIST,
927d4fc5 593 IDC_RSTATIC,
594 IDC_GSTATIC,
595 IDC_BSTATIC,
596 IDC_RVALUE,
597 IDC_GVALUE,
598 IDC_BVALUE,
599 IDC_CHANGE,
c96a8fef 600 colourspanelend,
601
602 translationpanelstart,
927d4fc5 603 IDC_TITLE_TRANSLATION,
3ac9cd9f 604 IDC_BOX_TRANSLATION1,
605 IDC_BOX_TRANSLATION2,
a9c02454 606 IDC_BOX_TRANSLATION3,
4eeb7d09 607 IDC_CODEPAGESTATIC,
608 IDC_CODEPAGE,
a9c02454 609 IDC_CAPSLOCKCYR,
927d4fc5 610 IDC_VTSTATIC,
611 IDC_VTXWINDOWS,
612 IDC_VTOEMANSI,
613 IDC_VTOEMONLY,
614 IDC_VTPOORMAN,
4eeb7d09 615 IDC_VTUNICODE,
c96a8fef 616 translationpanelend,
617
9c964e85 618 tunnelspanelstart,
e6ace450 619 IDC_TITLE_TUNNELS,
d74d141c 620 IDC_BOX_TUNNELS1,
621 IDC_BOX_TUNNELS2,
9c964e85 622 IDC_X11_FORWARD,
623 IDC_X11_DISPSTATIC,
624 IDC_X11_DISPLAY,
b3ebaa28 625 IDC_X11AUTHSTATIC,
626 IDC_X11MIT,
627 IDC_X11XDM,
d74d141c 628 IDC_LPORT_ALL,
beefa433 629 IDC_RPORT_ALL,
d74d141c 630 IDC_PFWDSTATIC,
631 IDC_PFWDSTATIC2,
632 IDC_PFWDREMOVE,
633 IDC_PFWDLIST,
634 IDC_PFWDADD,
635 IDC_SPORTSTATIC,
636 IDC_SPORTEDIT,
637 IDC_DPORTSTATIC,
638 IDC_DPORTEDIT,
639 IDC_PFWDLOCAL,
640 IDC_PFWDREMOTE,
641
9c964e85 642 tunnelspanelend,
643
c96a8fef 644 controlendvalue
645};
646
647static const char *const colours[] = {
648 "Default Foreground", "Default Bold Foreground",
649 "Default Background", "Default Bold Background",
650 "Cursor Text", "Cursor Colour",
651 "ANSI Black", "ANSI Black Bold",
652 "ANSI Red", "ANSI Red Bold",
653 "ANSI Green", "ANSI Green Bold",
654 "ANSI Yellow", "ANSI Yellow Bold",
655 "ANSI Blue", "ANSI Blue Bold",
656 "ANSI Magenta", "ANSI Magenta Bold",
657 "ANSI Cyan", "ANSI Cyan Bold",
658 "ANSI White", "ANSI White Bold"
659};
c96a8fef 660
32874aea 661static void fmtfont(char *buf)
662{
9a30e26b 663 sprintf(buf, "Font: %s, ", cfg.font.name);
664 if (cfg.font.isbold)
c96a8fef 665 strcat(buf, "bold, ");
9a30e26b 666 if (cfg.font.height == 0)
32874aea 667 strcat(buf, "default height");
c96a8fef 668 else
32874aea 669 sprintf(buf + strlen(buf), "%d-point",
9a30e26b 670 (cfg.font.height < 0 ? -cfg.font.height : cfg.font.height));
c96a8fef 671}
672
70133c0e 673char *help_context_cmd(int id)
674{
675 switch (id) {
676 case IDC_HOSTSTATIC:
677 case IDC_HOST:
678 case IDC_PORTSTATIC:
679 case IDC_PORT:
680 case IDC_PROTSTATIC:
681 case IDC_PROTRAW:
682 case IDC_PROTTELNET:
683 case IDC_PROTRLOGIN:
684 case IDC_PROTSSH:
685 return "JI(`',`session.hostname')";
686 case IDC_SESSSTATIC:
687 case IDC_SESSEDIT:
688 case IDC_SESSLIST:
689 case IDC_SESSLOAD:
690 case IDC_SESSSAVE:
691 case IDC_SESSDEL:
692 return "JI(`',`session.saved')";
693 case IDC_CLOSEEXIT:
694 case IDC_COEALWAYS:
695 case IDC_COENEVER:
696 case IDC_COENORMAL:
697 return "JI(`',`session.coe')";
698 case IDC_LSTATSTATIC:
699 case IDC_LSTATOFF:
700 case IDC_LSTATASCII:
701 case IDC_LSTATRAW:
00db133f 702 case IDC_LSTATPACKET:
70133c0e 703 return "JI(`',`logging.main')";
704 case IDC_LGFSTATIC:
705 case IDC_LGFEDIT:
706 case IDC_LGFBUTTON:
707 case IDC_LGFEXPLAIN:
708 return "JI(`',`logging.filename')";
709 case IDC_LSTATXIST:
710 case IDC_LSTATXOVR:
711 case IDC_LSTATXAPN:
712 case IDC_LSTATXASK:
713 return "JI(`',`logging.exists')";
714
715 case IDC_DELSTATIC:
716 case IDC_DEL008:
717 case IDC_DEL127:
718 return "JI(`',`keyboard.backspace')";
719 case IDC_HOMESTATIC:
720 case IDC_HOMETILDE:
721 case IDC_HOMERXVT:
722 return "JI(`',`keyboard.homeend')";
723 case IDC_FUNCSTATIC:
724 case IDC_FUNCTILDE:
725 case IDC_FUNCLINUX:
726 case IDC_FUNCXTERM:
727 case IDC_FUNCVT400:
728 case IDC_FUNCVT100P:
729 case IDC_FUNCSCO:
730 return "JI(`',`keyboard.funkeys')";
731 case IDC_KPSTATIC:
732 case IDC_KPNORMAL:
733 case IDC_KPAPPLIC:
70133c0e 734 return "JI(`',`keyboard.appkeypad')";
70133c0e 735 case IDC_CURSTATIC:
736 case IDC_CURNORMAL:
737 case IDC_CURAPPLIC:
738 return "JI(`',`keyboard.appcursor')";
739 case IDC_KPNH:
740 return "JI(`',`keyboard.nethack')";
741 case IDC_COMPOSEKEY:
742 return "JI(`',`keyboard.compose')";
743 case IDC_CTRLALTKEYS:
744 return "JI(`',`keyboard.ctrlalt')";
745
0d2086c5 746 case IDC_NOAPPLICK:
747 case IDC_NOAPPLICC:
748 return "JI(`',`features.application')";
c0d36a72 749 case IDC_NOMOUSEREP:
750 return "JI(`',`features.mouse')";
0d2086c5 751 case IDC_NORESIZE:
752 return "JI(`',`features.resize')";
753 case IDC_NOALTSCREEN:
754 return "JI(`',`features.altscreen')";
755 case IDC_NOWINTITLE:
756 return "JI(`',`features.retitle')";
757 case IDC_NODBACKSPACE:
758 return "JI(`',`features.dbackspace')";
759 case IDC_NOCHARSET:
760 return "JI(`',`features.charset')";
761
70133c0e 762 case IDC_WRAPMODE:
763 return "JI(`',`terminal.autowrap')";
764 case IDC_DECOM:
765 return "JI(`',`terminal.decom')";
766 case IDC_LFHASCR:
767 return "JI(`',`terminal.lfhascr')";
768 case IDC_BCE:
769 return "JI(`',`terminal.bce')";
770 case IDC_BLINKTEXT:
771 return "JI(`',`terminal.blink')";
772 case IDC_ANSWERBACK:
773 case IDC_ANSWEREDIT:
774 return "JI(`',`terminal.answerback')";
775 case IDC_ECHOSTATIC:
776 case IDC_ECHOBACKEND:
777 case IDC_ECHOYES:
778 case IDC_ECHONO:
779 return "JI(`',`terminal.localecho')";
780 case IDC_EDITSTATIC:
781 case IDC_EDITBACKEND:
782 case IDC_EDITYES:
783 case IDC_EDITNO:
784 return "JI(`',`terminal.localedit')";
b44b307a 785 case IDC_PRINTERSTATIC:
786 case IDC_PRINTER:
787 return "JI(`',`terminal.printing')";
70133c0e 788
789 case IDC_BELLSTATIC:
790 case IDC_BELL_DISABLED:
791 case IDC_BELL_DEFAULT:
792 case IDC_BELL_WAVEFILE:
793 case IDC_BELL_VISUAL:
794 case IDC_BELL_WAVESTATIC:
795 case IDC_BELL_WAVEEDIT:
796 case IDC_BELL_WAVEBROWSE:
797 return "JI(`',`bell.style')";
798 case IDC_B_IND_STATIC:
799 case IDC_B_IND_DISABLED:
800 case IDC_B_IND_FLASH:
801 case IDC_B_IND_STEADY:
802 return "JI(`',`bell.taskbar')";
803 case IDC_BELLOVL:
804 case IDC_BELLOVLNSTATIC:
805 case IDC_BELLOVLN:
806 case IDC_BELLOVLTSTATIC:
807 case IDC_BELLOVLT:
808 case IDC_BELLOVLEXPLAIN:
809 case IDC_BELLOVLSSTATIC:
810 case IDC_BELLOVLS:
811 return "JI(`',`bell.overload')";
812
813 case IDC_ROWSSTATIC:
814 case IDC_ROWSEDIT:
815 case IDC_COLSSTATIC:
816 case IDC_COLSEDIT:
817 return "JI(`',`window.size')";
818 case IDC_RESIZESTATIC:
819 case IDC_RESIZETERM:
820 case IDC_RESIZEFONT:
821 case IDC_RESIZENONE:
822 case IDC_RESIZEEITHER:
823 return "JI(`',`window.resize')";
824 case IDC_SCROLLBAR:
825 case IDC_SCROLLBARFULLSCREEN:
826 case IDC_SAVESTATIC:
827 case IDC_SAVEEDIT:
828 case IDC_SCROLLKEY:
829 case IDC_SCROLLDISP:
830 return "JI(`',`window.scrollback')";
831
832 case IDC_CLOSEWARN:
833 return "JI(`',`behaviour.closewarn')";
834 case IDC_ALTF4:
835 return "JI(`',`behaviour.altf4')";
836 case IDC_ALTSPACE:
837 return "JI(`',`behaviour.altspace')";
838 case IDC_ALTONLY:
839 return "JI(`',`behaviour.altonly')";
840 case IDC_ALWAYSONTOP:
841 return "JI(`',`behaviour.alwaysontop')";
842 case IDC_FULLSCREENONALTENTER:
843 return "JI(`',`behaviour.altenter')";
844
845 case IDC_CURSORSTATIC:
846 case IDC_CURBLOCK:
847 case IDC_CURUNDER:
848 case IDC_CURVERT:
849 case IDC_BLINKCUR:
850 return "JI(`',`appearance.cursor')";
851 case IDC_FONTSTATIC:
852 case IDC_CHOOSEFONT:
853 return "JI(`',`appearance.font')";
854 case IDC_WINTITLE:
855 case IDC_WINEDIT:
856 case IDC_WINNAME:
857 return "JI(`',`appearance.title')";
858 case IDC_HIDEMOUSE:
859 return "JI(`',`appearance.hidemouse')";
860 case IDC_SUNKENEDGE:
861 case IDC_WINBSTATIC:
862 case IDC_WINBEDIT:
863 return "JI(`',`appearance.border')";
864
865 case IDC_TTSTATIC:
866 case IDC_TTEDIT:
867 return "JI(`',`connection.termtype')";
868 case IDC_LOGSTATIC:
869 case IDC_LOGEDIT:
870 return "JI(`',`connection.username')";
871 case IDC_PINGSTATIC:
872 case IDC_PINGEDIT:
873 return "JI(`',`connection.keepalive')";
874 case IDC_NODELAY:
875 return "JI(`',`connection.nodelay')";
876
15933a9b 877 case IDC_PROXYTYPESTATIC:
878 case IDC_PROXYTYPENONE:
879 case IDC_PROXYTYPEHTTP:
880 case IDC_PROXYTYPESOCKS:
881 case IDC_PROXYTYPETELNET:
882 return "JI(`',`proxy.type')";
883 case IDC_PROXYHOSTSTATIC:
884 case IDC_PROXYHOSTEDIT:
885 case IDC_PROXYPORTSTATIC:
886 case IDC_PROXYPORTEDIT:
887 return "JI(`',`proxy.main')";
888 case IDC_PROXYEXCLUDESTATIC:
889 case IDC_PROXYEXCLUDEEDIT:
b804e1e5 890 case IDC_PROXYLOCALHOST:
15933a9b 891 return "JI(`',`proxy.exclude')";
b7a189f3 892 case IDC_PROXYDNSSTATIC:
893 case IDC_PROXYDNSNO:
894 case IDC_PROXYDNSAUTO:
895 case IDC_PROXYDNSYES:
896 return "JI(`',`proxy.dns')";
15933a9b 897 case IDC_PROXYUSERSTATIC:
898 case IDC_PROXYUSEREDIT:
899 case IDC_PROXYPASSSTATIC:
900 case IDC_PROXYPASSEDIT:
901 return "JI(`',`proxy.auth')";
902 case IDC_PROXYTELNETCMDSTATIC:
903 case IDC_PROXYTELNETCMDEDIT:
904 return "JI(`',`proxy.command')";
905 case IDC_PROXYSOCKSVERSTATIC:
906 case IDC_PROXYSOCKSVER5:
907 case IDC_PROXYSOCKSVER4:
908 return "JI(`',`proxy.socksver')";
909
70133c0e 910 case IDC_TSSTATIC:
911 case IDC_TSEDIT:
912 return "JI(`',`telnet.termspeed')";
913 case IDC_ENVSTATIC:
914 case IDC_VARSTATIC:
915 case IDC_VAREDIT:
916 case IDC_VALSTATIC:
917 case IDC_VALEDIT:
918 case IDC_ENVLIST:
919 case IDC_ENVADD:
920 case IDC_ENVREMOVE:
921 return "JI(`',`telnet.environ')";
922 case IDC_EMSTATIC:
923 case IDC_EMBSD:
924 case IDC_EMRFC:
925 return "JI(`',`telnet.oldenviron')";
926 case IDC_ACTSTATIC:
927 case IDC_TPASSIVE:
928 case IDC_TACTIVE:
929 return "JI(`',`telnet.passive')";
930 case IDC_TELNETKEY:
931 return "JI(`',`telnet.specialkeys')";
e81b578d 932 case IDC_TELNETRET:
933 return "JI(`',`telnet.newline')";
70133c0e 934
935 case IDC_R_TSSTATIC:
936 case IDC_R_TSEDIT:
937 return "JI(`',`rlogin.termspeed')";
938 case IDC_RLLUSERSTATIC:
939 case IDC_RLLUSEREDIT:
940 return "JI(`',`rlogin.localuser')";
941
942 case IDC_NOPTY:
943 return "JI(`',`ssh.nopty')";
944 case IDC_CIPHERSTATIC2:
945 case IDC_CIPHERLIST:
946 case IDC_CIPHERUP:
947 case IDC_CIPHERDN:
948 case IDC_SSH2DES:
949 return "JI(`',`ssh.ciphers')";
70133c0e 950 case IDC_SSHPROTSTATIC:
38d228a2 951 case IDC_SSHPROT1ONLY:
70133c0e 952 case IDC_SSHPROT1:
953 case IDC_SSHPROT2:
759712a6 954 case IDC_SSHPROT2ONLY:
70133c0e 955 return "JI(`',`ssh.protocol')";
956 case IDC_CMDSTATIC:
957 case IDC_CMDEDIT:
958 return "JI(`',`ssh.command')";
959 case IDC_COMPRESS:
960 return "JI(`',`ssh.compress')";
961
962 case IDC_PKSTATIC:
963 case IDC_PKEDIT:
964 case IDC_PKBUTTON:
965 return "JI(`',`ssh.auth.privkey')";
966 case IDC_AGENTFWD:
967 return "JI(`',`ssh.auth.agentfwd')";
5bb641e1 968 case IDC_CHANGEUSER:
969 return "JI(`',`ssh.auth.changeuser')";
70133c0e 970 case IDC_AUTHTIS:
971 return "JI(`',`ssh.auth.tis')";
972 case IDC_AUTHKI:
973 return "JI(`',`ssh.auth.ki')";
974
975 case IDC_MBSTATIC:
976 case IDC_MBWINDOWS:
977 case IDC_MBXTERM:
978 return "JI(`',`selection.buttons')";
979 case IDC_MOUSEOVERRIDE:
980 return "JI(`',`selection.shiftdrag')";
981 case IDC_SELTYPESTATIC:
982 case IDC_SELTYPELEX:
983 case IDC_SELTYPERECT:
984 return "JI(`',`selection.rect')";
985 case IDC_CCSTATIC:
986 case IDC_CCLIST:
987 case IDC_CCSET:
988 case IDC_CCSTATIC2:
989 case IDC_CCEDIT:
990 return "JI(`',`selection.charclasses')";
991 case IDC_RAWCNP:
992 return "JI(`',`selection.linedraw')";
993 case IDC_RTFPASTE:
994 return "JI(`',`selection.rtf')";
995
996 case IDC_BOLDCOLOUR:
997 return "JI(`',`colours.bold')";
998 case IDC_PALETTE:
999 return "JI(`',`colours.logpal')";
1000 case IDC_COLOURSTATIC:
1001 case IDC_COLOURLIST:
1002 case IDC_RSTATIC:
1003 case IDC_GSTATIC:
1004 case IDC_BSTATIC:
1005 case IDC_RVALUE:
1006 case IDC_GVALUE:
1007 case IDC_BVALUE:
1008 case IDC_CHANGE:
1009 return "JI(`',`colours.config')";
1010
1011 case IDC_CODEPAGESTATIC:
1012 case IDC_CODEPAGE:
1013 return "JI(`',`translation.codepage')";
1014 case IDC_CAPSLOCKCYR:
1015 return "JI(`',`translation.cyrillic')";
1016 case IDC_VTSTATIC:
1017 case IDC_VTXWINDOWS:
1018 case IDC_VTOEMANSI:
1019 case IDC_VTOEMONLY:
1020 case IDC_VTPOORMAN:
1021 case IDC_VTUNICODE:
1022 return "JI(`',`translation.linedraw')";
1023
1024 case IDC_X11_FORWARD:
1025 case IDC_X11_DISPSTATIC:
1026 case IDC_X11_DISPLAY:
1027 return "JI(`',`ssh.tunnels.x11')";
b3ebaa28 1028 case IDC_X11AUTHSTATIC:
1029 case IDC_X11MIT:
1030 case IDC_X11XDM:
1031 return "JI(`',`ssh.tunnels.x11auth')";
70133c0e 1032 case IDC_PFWDSTATIC:
1033 case IDC_PFWDSTATIC2:
1034 case IDC_PFWDREMOVE:
1035 case IDC_PFWDLIST:
1036 case IDC_PFWDADD:
1037 case IDC_SPORTSTATIC:
1038 case IDC_SPORTEDIT:
1039 case IDC_DPORTSTATIC:
1040 case IDC_DPORTEDIT:
1041 case IDC_PFWDLOCAL:
1042 case IDC_PFWDREMOTE:
1043 return "JI(`',`ssh.tunnels.portfwd')";
beefa433 1044 case IDC_LPORT_ALL:
1045 case IDC_RPORT_ALL:
1046 return "JI(`',`ssh.tunnels.portfwd.localhost')";
70133c0e 1047
2c9c6388 1048 case IDC_BUGS_IGNORE1:
1049 case IDC_BUGD_IGNORE1:
1050 return "JI(`',`ssh.bugs.ignore1')";
1051 case IDC_BUGS_PLAINPW1:
1052 case IDC_BUGD_PLAINPW1:
1053 return "JI(`',`ssh.bugs.plainpw1')";
1054 case IDC_BUGS_RSA1:
1055 case IDC_BUGD_RSA1:
1056 return "JI(`',`ssh.bugs.rsa1')";
1057 case IDC_BUGS_HMAC2:
1058 case IDC_BUGD_HMAC2:
1059 return "JI(`',`ssh.bugs.hmac2')";
1060 case IDC_BUGS_DERIVEKEY2:
1061 case IDC_BUGD_DERIVEKEY2:
1062 return "JI(`',`ssh.bugs.derivekey2')";
1063 case IDC_BUGS_RSAPAD2:
1064 case IDC_BUGD_RSAPAD2:
1065 return "JI(`',`ssh.bugs.rsapad2')";
8e975795 1066 case IDC_BUGS_DHGEX2:
1067 case IDC_BUGD_DHGEX2:
1068 return "JI(`',`ssh.bugs.dhgex2')";
2c9c6388 1069
70133c0e 1070 default:
1071 return NULL;
1072 }
1073}
1074
c8d7378d 1075/* 2nd arg: NZ => don't redraw session list (use when loading
1076 * a new session) */
1077static void init_dlg_ctrls(HWND hwnd, int keepsess)
32874aea 1078{
c96a8fef 1079 int i;
1080 char fontstatic[256];
1081
32874aea 1082 SetDlgItemText(hwnd, IDC_HOST, cfg.host);
1083 SetDlgItemText(hwnd, IDC_SESSEDIT, savedsession);
c8d7378d 1084 if (!keepsess) {
3ac9cd9f 1085 int i, n;
32874aea 1086 n = SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_GETCOUNT, 0, 0);
1087 for (i = n; i-- > 0;)
1088 SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_DELETESTRING, i, 0);
0b4f0bc0 1089 for (i = 0; i < sesslist.nsessions; i++)
32874aea 1090 SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_ADDSTRING,
0b4f0bc0 1091 0, (LPARAM) (sesslist.sessions[i]));
3ac9cd9f 1092 }
32874aea 1093 SetDlgItemInt(hwnd, IDC_PORT, cfg.port, FALSE);
1094 CheckRadioButton(hwnd, IDC_PROTRAW, IDC_PROTSSH,
1095 cfg.protocol == PROT_SSH ? IDC_PROTSSH :
1096 cfg.protocol == PROT_TELNET ? IDC_PROTTELNET :
1097 cfg.protocol ==
1098 PROT_RLOGIN ? IDC_PROTRLOGIN : IDC_PROTRAW);
1099 SetDlgItemInt(hwnd, IDC_PINGEDIT, cfg.ping_interval, FALSE);
2184a5d9 1100 CheckDlgButton(hwnd, IDC_NODELAY, cfg.tcp_nodelay);
32874aea 1101
1102 CheckRadioButton(hwnd, IDC_DEL008, IDC_DEL127,
1103 cfg.bksp_is_delete ? IDC_DEL127 : IDC_DEL008);
1104 CheckRadioButton(hwnd, IDC_HOMETILDE, IDC_HOMERXVT,
1105 cfg.rxvt_homeend ? IDC_HOMERXVT : IDC_HOMETILDE);
1106 CheckRadioButton(hwnd, IDC_FUNCTILDE, IDC_FUNCSCO,
1107 cfg.funky_type == 0 ? IDC_FUNCTILDE :
1108 cfg.funky_type == 1 ? IDC_FUNCLINUX :
1109 cfg.funky_type == 2 ? IDC_FUNCXTERM :
1110 cfg.funky_type == 3 ? IDC_FUNCVT400 :
1111 cfg.funky_type == 4 ? IDC_FUNCVT100P :
1112 cfg.funky_type == 5 ? IDC_FUNCSCO : IDC_FUNCTILDE);
1113 CheckDlgButton(hwnd, IDC_NOAPPLICC, cfg.no_applic_c);
1114 CheckDlgButton(hwnd, IDC_NOAPPLICK, cfg.no_applic_k);
c0d36a72 1115 CheckDlgButton(hwnd, IDC_NOMOUSEREP, cfg.no_mouse_rep);
0d2086c5 1116 CheckDlgButton(hwnd, IDC_NORESIZE, cfg.no_remote_resize);
1117 CheckDlgButton(hwnd, IDC_NOALTSCREEN, cfg.no_alt_screen);
1118 CheckDlgButton(hwnd, IDC_NOWINTITLE, cfg.no_remote_wintitle);
1119 CheckDlgButton(hwnd, IDC_NODBACKSPACE, cfg.no_dbackspace);
1120 CheckDlgButton(hwnd, IDC_NOCHARSET, cfg.no_remote_charset);
32874aea 1121 CheckRadioButton(hwnd, IDC_CURNORMAL, IDC_CURAPPLIC,
1122 cfg.app_cursor ? IDC_CURAPPLIC : IDC_CURNORMAL);
1123 CheckRadioButton(hwnd, IDC_KPNORMAL, IDC_KPNH,
1124 cfg.nethack_keypad ? IDC_KPNH :
1125 cfg.app_keypad ? IDC_KPAPPLIC : IDC_KPNORMAL);
1126 CheckDlgButton(hwnd, IDC_ALTF4, cfg.alt_f4);
1127 CheckDlgButton(hwnd, IDC_ALTSPACE, cfg.alt_space);
1128 CheckDlgButton(hwnd, IDC_ALTONLY, cfg.alt_only);
1129 CheckDlgButton(hwnd, IDC_COMPOSEKEY, cfg.compose_key);
1130 CheckDlgButton(hwnd, IDC_CTRLALTKEYS, cfg.ctrlaltkeys);
a5f3e637 1131 CheckDlgButton(hwnd, IDC_TELNETKEY, cfg.telnet_keyboard);
eee63b77 1132 CheckDlgButton(hwnd, IDC_TELNETRET, cfg.telnet_newline);
32874aea 1133 CheckRadioButton(hwnd, IDC_ECHOBACKEND, IDC_ECHONO,
5ecd7ad0 1134 cfg.localecho == AUTO ? IDC_ECHOBACKEND :
1135 cfg.localecho == FORCE_ON ? IDC_ECHOYES : IDC_ECHONO);
32874aea 1136 CheckRadioButton(hwnd, IDC_EDITBACKEND, IDC_EDITNO,
5ecd7ad0 1137 cfg.localedit == AUTO ? IDC_EDITBACKEND :
1138 cfg.localedit == FORCE_ON ? IDC_EDITYES : IDC_EDITNO);
32874aea 1139 SetDlgItemText(hwnd, IDC_ANSWEREDIT, cfg.answerback);
1140 CheckDlgButton(hwnd, IDC_ALWAYSONTOP, cfg.alwaysontop);
8f57d753 1141 CheckDlgButton(hwnd, IDC_FULLSCREENONALTENTER, cfg.fullscreenonaltenter);
32874aea 1142 CheckDlgButton(hwnd, IDC_SCROLLKEY, cfg.scroll_on_key);
1143 CheckDlgButton(hwnd, IDC_SCROLLDISP, cfg.scroll_on_disp);
1144
1145 CheckDlgButton(hwnd, IDC_WRAPMODE, cfg.wrap_mode);
1146 CheckDlgButton(hwnd, IDC_DECOM, cfg.dec_om);
1147 CheckDlgButton(hwnd, IDC_LFHASCR, cfg.lfhascr);
1148 SetDlgItemInt(hwnd, IDC_ROWSEDIT, cfg.height, FALSE);
1149 SetDlgItemInt(hwnd, IDC_COLSEDIT, cfg.width, FALSE);
1150 SetDlgItemInt(hwnd, IDC_SAVEEDIT, cfg.savelines, FALSE);
1151 fmtfont(fontstatic);
1152 SetDlgItemText(hwnd, IDC_FONTSTATIC, fontstatic);
1153 CheckRadioButton(hwnd, IDC_BELL_DISABLED, IDC_BELL_VISUAL,
1154 cfg.beep == BELL_DISABLED ? IDC_BELL_DISABLED :
1155 cfg.beep == BELL_DEFAULT ? IDC_BELL_DEFAULT :
1156 cfg.beep == BELL_WAVEFILE ? IDC_BELL_WAVEFILE :
1157 cfg.beep ==
1158 BELL_VISUAL ? IDC_BELL_VISUAL : IDC_BELL_DEFAULT);
f8a28d1f 1159 CheckRadioButton(hwnd, IDC_B_IND_DISABLED, IDC_B_IND_STEADY,
1160 cfg.beep_ind ==
1161 B_IND_DISABLED ? IDC_B_IND_DISABLED : cfg.beep_ind ==
1162 B_IND_FLASH ? IDC_B_IND_FLASH : cfg.beep_ind ==
1163 B_IND_STEADY ? IDC_B_IND_STEADY : IDC_B_IND_DISABLED);
9a30e26b 1164 SetDlgItemText(hwnd, IDC_BELL_WAVEEDIT, cfg.bell_wavefile.path);
32874aea 1165 CheckDlgButton(hwnd, IDC_BELLOVL, cfg.bellovl);
1166 SetDlgItemInt(hwnd, IDC_BELLOVLN, cfg.bellovl_n, FALSE);
1167 MySetDlgItemFlt(hwnd, IDC_BELLOVLT, cfg.bellovl_t / 1000.0);
1168 MySetDlgItemFlt(hwnd, IDC_BELLOVLS, cfg.bellovl_s / 1000.0);
1169
1170 CheckDlgButton(hwnd, IDC_BCE, cfg.bce);
1171 CheckDlgButton(hwnd, IDC_BLINKTEXT, cfg.blinktext);
1172
1173 SetDlgItemText(hwnd, IDC_WINEDIT, cfg.wintitle);
b40578c8 1174 CheckDlgButton(hwnd, IDC_WINNAME, !cfg.win_name_always);
32874aea 1175 CheckDlgButton(hwnd, IDC_HIDEMOUSE, cfg.hide_mouseptr);
1176 CheckDlgButton(hwnd, IDC_SUNKENEDGE, cfg.sunken_edge);
5a73255e 1177 SetDlgItemInt(hwnd, IDC_WINBEDIT, cfg.window_border, FALSE);
32874aea 1178 CheckRadioButton(hwnd, IDC_CURBLOCK, IDC_CURVERT,
1179 cfg.cursor_type == 0 ? IDC_CURBLOCK :
1180 cfg.cursor_type == 1 ? IDC_CURUNDER : IDC_CURVERT);
1181 CheckDlgButton(hwnd, IDC_BLINKCUR, cfg.blink_cur);
1182 CheckDlgButton(hwnd, IDC_SCROLLBAR, cfg.scrollbar);
a401e5f3 1183 CheckDlgButton(hwnd, IDC_SCROLLBARFULLSCREEN, cfg.scrollbar_in_fullscreen);
0ed2f48e 1184 CheckRadioButton(hwnd, IDC_RESIZETERM, IDC_RESIZEEITHER,
ad5c93cc 1185 cfg.resize_action == RESIZE_TERM ? IDC_RESIZETERM :
1186 cfg.resize_action == RESIZE_FONT ? IDC_RESIZEFONT :
0ed2f48e 1187 cfg.resize_action == RESIZE_EITHER ? IDC_RESIZEEITHER :
ad5c93cc 1188 IDC_RESIZENONE);
32874aea 1189 CheckRadioButton(hwnd, IDC_COEALWAYS, IDC_COENORMAL,
5ecd7ad0 1190 cfg.close_on_exit == AUTO ? IDC_COENORMAL :
32874aea 1191 cfg.close_on_exit ==
5ecd7ad0 1192 FORCE_OFF ? IDC_COENEVER : IDC_COEALWAYS);
32874aea 1193 CheckDlgButton(hwnd, IDC_CLOSEWARN, cfg.warn_on_close);
1194
1195 SetDlgItemText(hwnd, IDC_TTEDIT, cfg.termtype);
1196 SetDlgItemText(hwnd, IDC_TSEDIT, cfg.termspeed);
1197 SetDlgItemText(hwnd, IDC_R_TSEDIT, cfg.termspeed);
1198 SetDlgItemText(hwnd, IDC_RLLUSEREDIT, cfg.localusername);
1199 SetDlgItemText(hwnd, IDC_LOGEDIT, cfg.username);
9a30e26b 1200 SetDlgItemText(hwnd, IDC_LGFEDIT, cfg.logfilename.path);
00db133f 1201 CheckRadioButton(hwnd, IDC_LSTATOFF, IDC_LSTATPACKET,
1202 cfg.logtype == LGTYP_NONE ? IDC_LSTATOFF :
1203 cfg.logtype == LGTYP_ASCII ? IDC_LSTATASCII :
1204 cfg.logtype == LGTYP_DEBUG ? IDC_LSTATRAW :
1205 IDC_LSTATPACKET);
9f89f96e 1206 CheckRadioButton(hwnd, IDC_LSTATXOVR, IDC_LSTATXASK,
1207 cfg.logxfovr == LGXF_OVR ? IDC_LSTATXOVR :
1208 cfg.logxfovr == LGXF_ASK ? IDC_LSTATXASK :
1209 IDC_LSTATXAPN);
c96a8fef 1210 {
1211 char *p = cfg.environmt;
1cb2aa45 1212 SendDlgItemMessage(hwnd, IDC_ENVLIST, LB_RESETCONTENT, 0, 0);
c96a8fef 1213 while (*p) {
32874aea 1214 SendDlgItemMessage(hwnd, IDC_ENVLIST, LB_ADDSTRING, 0,
1215 (LPARAM) p);
1216 p += strlen(p) + 1;
c96a8fef 1217 }
d74d141c 1218 p = cfg.portfwd;
1219 while (*p) {
1220 SendDlgItemMessage(hwnd, IDC_PFWDLIST, LB_ADDSTRING, 0,
1221 (LPARAM) p);
1222 p += strlen(p) + 1;
1223 }
374330e2 1224 }
32874aea 1225 CheckRadioButton(hwnd, IDC_EMBSD, IDC_EMRFC,
1226 cfg.rfc_environ ? IDC_EMRFC : IDC_EMBSD);
8faa456c 1227 CheckRadioButton(hwnd, IDC_TPASSIVE, IDC_TACTIVE,
1228 cfg.passive_telnet ? IDC_TPASSIVE : IDC_TACTIVE);
32874aea 1229
1230 SetDlgItemText(hwnd, IDC_TTEDIT, cfg.termtype);
1231 SetDlgItemText(hwnd, IDC_LOGEDIT, cfg.username);
1232 CheckDlgButton(hwnd, IDC_NOPTY, cfg.nopty);
1233 CheckDlgButton(hwnd, IDC_COMPRESS, cfg.compression);
cb4d4768 1234 CheckDlgButton(hwnd, IDC_SSH2DES, cfg.ssh2_des_cbc);
32874aea 1235 CheckDlgButton(hwnd, IDC_AGENTFWD, cfg.agentfwd);
5bb641e1 1236 CheckDlgButton(hwnd, IDC_CHANGEUSER, cfg.change_username);
38d228a2 1237 CheckRadioButton(hwnd, IDC_SSHPROT1ONLY, IDC_SSHPROT2ONLY,
759712a6 1238 cfg.sshprot == 1 ? IDC_SSHPROT1 :
38d228a2 1239 cfg.sshprot == 2 ? IDC_SSHPROT2 :
1240 cfg.sshprot == 3 ? IDC_SSHPROT2ONLY : IDC_SSHPROT1ONLY);
32874aea 1241 CheckDlgButton(hwnd, IDC_AUTHTIS, cfg.try_tis_auth);
f091e308 1242 CheckDlgButton(hwnd, IDC_AUTHKI, cfg.try_ki_auth);
9a30e26b 1243 SetDlgItemText(hwnd, IDC_PKEDIT, cfg.keyfile.path);
32874aea 1244 SetDlgItemText(hwnd, IDC_CMDEDIT, cfg.remote_cmd);
1245
ca20bfcf 1246 {
1247 int i;
1248 static const struct { char *s; int c; } ciphers[] = {
1249 { "3DES", CIPHER_3DES },
1250 { "Blowfish", CIPHER_BLOWFISH },
7f1ae1d2 1251 { "DES", CIPHER_DES },
ca20bfcf 1252 { "AES (SSH 2 only)", CIPHER_AES },
1253 { "-- warn below here --", CIPHER_WARN }
1254 };
1255
1256 /* Set up the "selected ciphers" box. */
1257 /* (cipherlist assumed to contain all ciphers) */
1258 SendDlgItemMessage(hwnd, IDC_CIPHERLIST, LB_RESETCONTENT, 0, 0);
1259 for (i = 0; i < CIPHER_MAX; i++) {
1260 int c = cfg.ssh_cipherlist[i];
1261 int j, pos;
1262 char *cstr = NULL;
1263 for (j = 0; j < (sizeof ciphers) / (sizeof ciphers[0]); j++) {
1264 if (ciphers[j].c == c) {
1265 cstr = ciphers[j].s;
1266 break;
1267 }
1268 }
1269 pos = SendDlgItemMessage(hwnd, IDC_CIPHERLIST, LB_ADDSTRING,
1270 0, (LPARAM) cstr);
1271 SendDlgItemMessage(hwnd, IDC_CIPHERLIST, LB_SETITEMDATA,
1272 pos, (LPARAM) c);
1273 }
ca20bfcf 1274
1275 }
1276
32874aea 1277 CheckRadioButton(hwnd, IDC_MBWINDOWS, IDC_MBXTERM,
1278 cfg.mouse_is_xterm ? IDC_MBXTERM : IDC_MBWINDOWS);
6908fed7 1279 CheckRadioButton(hwnd, IDC_SELTYPELEX, IDC_SELTYPERECT,
1280 cfg.rect_select == 0 ? IDC_SELTYPELEX : IDC_SELTYPERECT);
b90840c3 1281 CheckDlgButton(hwnd, IDC_MOUSEOVERRIDE, cfg.mouse_override);
32874aea 1282 CheckDlgButton(hwnd, IDC_RAWCNP, cfg.rawcnp);
a7419ea4 1283 CheckDlgButton(hwnd, IDC_RTFPASTE, cfg.rtf_paste);
c96a8fef 1284 {
32874aea 1285 static int tabs[4] = { 25, 61, 96, 128 };
1286 SendDlgItemMessage(hwnd, IDC_CCLIST, LB_SETTABSTOPS, 4,
1287 (LPARAM) tabs);
c96a8fef 1288 }
4eeb7d09 1289 for (i = 0; i < 128; i++) {
c96a8fef 1290 char str[100];
1291 sprintf(str, "%d\t(0x%02X)\t%c\t%d", i, i,
32874aea 1292 (i >= 0x21 && i != 0x7F) ? i : ' ', cfg.wordness[i]);
1293 SendDlgItemMessage(hwnd, IDC_CCLIST, LB_ADDSTRING, 0,
1294 (LPARAM) str);
c96a8fef 1295 }
1296
32874aea 1297 CheckDlgButton(hwnd, IDC_BOLDCOLOUR, cfg.bold_colour);
1298 CheckDlgButton(hwnd, IDC_PALETTE, cfg.try_palette);
c96a8fef 1299 {
2ceb950f 1300 int i, n;
32874aea 1301 n = SendDlgItemMessage(hwnd, IDC_COLOURLIST, LB_GETCOUNT, 0, 0);
1302 for (i = n; i-- > 0;)
1303 SendDlgItemMessage(hwnd, IDC_COLOURLIST,
1304 LB_DELETESTRING, i, 0);
1305 for (i = 0; i < 22; i++)
37ca32ed 1306 SendDlgItemMessage(hwnd, IDC_COLOURLIST, LB_ADDSTRING, 0,
1307 (LPARAM) colours[i]);
c96a8fef 1308 }
32874aea 1309 SendDlgItemMessage(hwnd, IDC_COLOURLIST, LB_SETCURSEL, 0, 0);
1310 SetDlgItemInt(hwnd, IDC_RVALUE, cfg.colours[0][0], FALSE);
1311 SetDlgItemInt(hwnd, IDC_GVALUE, cfg.colours[0][1], FALSE);
1312 SetDlgItemInt(hwnd, IDC_BVALUE, cfg.colours[0][2], FALSE);
1313
875b193f 1314 {
1315 int i;
1316 char *cp;
b8ae1f0f 1317 strcpy(cfg.line_codepage, cp_name(decode_codepage(cfg.line_codepage)));
875b193f 1318 SendDlgItemMessage(hwnd, IDC_CODEPAGE, CB_RESETCONTENT, 0, 0);
a9c02454 1319 CheckDlgButton (hwnd, IDC_CAPSLOCKCYR, cfg.xlat_capslockcyr);
875b193f 1320 for (i = 0; (cp = cp_enumerate(i)) != NULL; i++) {
1321 SendDlgItemMessage(hwnd, IDC_CODEPAGE, CB_ADDSTRING,
1322 0, (LPARAM) cp);
875b193f 1323 }
b8ae1f0f 1324 SetDlgItemText(hwnd, IDC_CODEPAGE, cfg.line_codepage);
875b193f 1325 }
b44b307a 1326
1327 {
1328 int i, nprinters;
1329 printer_enum *pe;
1330 pe = printer_start_enum(&nprinters);
b44b307a 1331 SendDlgItemMessage(hwnd, IDC_PRINTER, CB_RESETCONTENT, 0, 0);
1332 SendDlgItemMessage(hwnd, IDC_PRINTER, CB_ADDSTRING,
1333 0, (LPARAM) PRINTER_DISABLED_STRING);
1334 for (i = 0; i < nprinters; i++) {
1335 char *printer_name = printer_get_name(pe, i);
1336 SendDlgItemMessage(hwnd, IDC_PRINTER, CB_ADDSTRING,
1337 0, (LPARAM) printer_name);
1338 }
1339 printer_finish_enum(pe);
1340 SetDlgItemText(hwnd, IDC_PRINTER,
1341 *cfg.printer ? cfg.printer : PRINTER_DISABLED_STRING);
1342 }
1343
4eeb7d09 1344 CheckRadioButton(hwnd, IDC_VTXWINDOWS, IDC_VTUNICODE,
32874aea 1345 cfg.vtmode == VT_XWINDOWS ? IDC_VTXWINDOWS :
1346 cfg.vtmode == VT_OEMANSI ? IDC_VTOEMANSI :
1347 cfg.vtmode == VT_OEMONLY ? IDC_VTOEMONLY :
4eeb7d09 1348 cfg.vtmode == VT_UNICODE ? IDC_VTUNICODE :
32874aea 1349 IDC_VTPOORMAN);
1350
1351 CheckDlgButton(hwnd, IDC_X11_FORWARD, cfg.x11_forward);
1352 SetDlgItemText(hwnd, IDC_X11_DISPLAY, cfg.x11_display);
b3ebaa28 1353 CheckRadioButton(hwnd, IDC_X11MIT, IDC_X11XDM,
1354 cfg.x11_auth == X11_MIT ? IDC_X11MIT : IDC_X11XDM);
d74d141c 1355
1356 CheckDlgButton(hwnd, IDC_LPORT_ALL, cfg.lport_acceptall);
beefa433 1357 CheckDlgButton(hwnd, IDC_RPORT_ALL, cfg.rport_acceptall);
d74d141c 1358 CheckRadioButton(hwnd, IDC_PFWDLOCAL, IDC_PFWDREMOTE, IDC_PFWDLOCAL);
8eebd221 1359
1360 /* proxy config */
1361 CheckRadioButton(hwnd, IDC_PROXYTYPENONE, IDC_PROXYTYPETELNET,
1362 cfg.proxy_type == PROXY_HTTP ? IDC_PROXYTYPEHTTP :
1363 cfg.proxy_type == PROXY_SOCKS ? IDC_PROXYTYPESOCKS :
1364 cfg.proxy_type == PROXY_TELNET ? IDC_PROXYTYPETELNET : IDC_PROXYTYPENONE);
1365 SetDlgItemText(hwnd, IDC_PROXYHOSTEDIT, cfg.proxy_host);
1366 SetDlgItemInt(hwnd, IDC_PROXYPORTEDIT, cfg.proxy_port, FALSE);
1367 SetDlgItemText(hwnd, IDC_PROXYEXCLUDEEDIT, cfg.proxy_exclude_list);
b804e1e5 1368 CheckDlgButton(hwnd, IDC_PROXYLOCALHOST, cfg.even_proxy_localhost);
b7a189f3 1369 CheckRadioButton(hwnd, IDC_PROXYDNSNO, IDC_PROXYDNSYES,
5ecd7ad0 1370 cfg.proxy_dns == FORCE_OFF ? IDC_PROXYDNSNO :
1371 cfg.proxy_dns == FORCE_ON ? IDC_PROXYDNSYES :
b7a189f3 1372 IDC_PROXYDNSAUTO);
8eebd221 1373 SetDlgItemText(hwnd, IDC_PROXYTELNETCMDEDIT, cfg.proxy_telnet_command);
1374 SetDlgItemText(hwnd, IDC_PROXYUSEREDIT, cfg.proxy_username);
1375 SetDlgItemText(hwnd, IDC_PROXYPASSEDIT, cfg.proxy_password);
1376 CheckRadioButton(hwnd, IDC_PROXYSOCKSVER5, IDC_PROXYSOCKSVER4,
1377 cfg.proxy_socks_version == 4 ? IDC_PROXYSOCKSVER4 : IDC_PROXYSOCKSVER5);
2c9c6388 1378
1379 /* SSH bugs config */
1380 SendDlgItemMessage(hwnd, IDC_BUGD_IGNORE1, CB_RESETCONTENT, 0, 0);
1381 SendDlgItemMessage(hwnd, IDC_BUGD_IGNORE1, CB_ADDSTRING, 0, (LPARAM)"Auto");
1382 SendDlgItemMessage(hwnd, IDC_BUGD_IGNORE1, CB_ADDSTRING, 0, (LPARAM)"Off");
1383 SendDlgItemMessage(hwnd, IDC_BUGD_IGNORE1, CB_ADDSTRING, 0, (LPARAM)"On");
1384 SendDlgItemMessage(hwnd, IDC_BUGD_IGNORE1, CB_SETCURSEL,
5ecd7ad0 1385 cfg.sshbug_ignore1 == FORCE_ON ? 2 :
1386 cfg.sshbug_ignore1 == FORCE_OFF ? 1 : 0, 0);
2c9c6388 1387 SendDlgItemMessage(hwnd, IDC_BUGD_PLAINPW1, CB_RESETCONTENT, 0, 0);
1388 SendDlgItemMessage(hwnd, IDC_BUGD_PLAINPW1, CB_ADDSTRING, 0, (LPARAM)"Auto");
1389 SendDlgItemMessage(hwnd, IDC_BUGD_PLAINPW1, CB_ADDSTRING, 0, (LPARAM)"Off");
1390 SendDlgItemMessage(hwnd, IDC_BUGD_PLAINPW1, CB_ADDSTRING, 0, (LPARAM)"On");
1391 SendDlgItemMessage(hwnd, IDC_BUGD_PLAINPW1, CB_SETCURSEL,
5ecd7ad0 1392 cfg.sshbug_plainpw1 == FORCE_ON ? 2 :
1393 cfg.sshbug_plainpw1 == FORCE_OFF ? 1 : 0, 0);
2c9c6388 1394 SendDlgItemMessage(hwnd, IDC_BUGD_RSA1, CB_RESETCONTENT, 0, 0);
1395 SendDlgItemMessage(hwnd, IDC_BUGD_RSA1, CB_ADDSTRING, 0, (LPARAM)"Auto");
1396 SendDlgItemMessage(hwnd, IDC_BUGD_RSA1, CB_ADDSTRING, 0, (LPARAM)"Off");
1397 SendDlgItemMessage(hwnd, IDC_BUGD_RSA1, CB_ADDSTRING, 0, (LPARAM)"On");
1398 SendDlgItemMessage(hwnd, IDC_BUGD_RSA1, CB_SETCURSEL,
5ecd7ad0 1399 cfg.sshbug_rsa1 == FORCE_ON ? 2 :
1400 cfg.sshbug_rsa1 == FORCE_OFF ? 1 : 0, 0);
2c9c6388 1401 SendDlgItemMessage(hwnd, IDC_BUGD_HMAC2, CB_RESETCONTENT, 0, 0);
1402 SendDlgItemMessage(hwnd, IDC_BUGD_HMAC2, CB_ADDSTRING, 0, (LPARAM)"Auto");
1403 SendDlgItemMessage(hwnd, IDC_BUGD_HMAC2, CB_ADDSTRING, 0, (LPARAM)"Off");
1404 SendDlgItemMessage(hwnd, IDC_BUGD_HMAC2, CB_ADDSTRING, 0, (LPARAM)"On");
1405 SendDlgItemMessage(hwnd, IDC_BUGD_HMAC2, CB_SETCURSEL,
5ecd7ad0 1406 cfg.sshbug_hmac2 == FORCE_ON ? 2 :
1407 cfg.sshbug_hmac2 == FORCE_OFF ? 1 : 0, 0);
2c9c6388 1408 SendDlgItemMessage(hwnd, IDC_BUGD_DERIVEKEY2, CB_RESETCONTENT, 0, 0);
1409 SendDlgItemMessage(hwnd, IDC_BUGD_DERIVEKEY2, CB_ADDSTRING, 0, (LPARAM)"Auto");
1410 SendDlgItemMessage(hwnd, IDC_BUGD_DERIVEKEY2, CB_ADDSTRING, 0, (LPARAM)"Off");
1411 SendDlgItemMessage(hwnd, IDC_BUGD_DERIVEKEY2, CB_ADDSTRING, 0, (LPARAM)"On");
1412 SendDlgItemMessage(hwnd, IDC_BUGD_DERIVEKEY2, CB_SETCURSEL,
5ecd7ad0 1413 cfg.sshbug_derivekey2 == FORCE_ON ? 2 :
1414 cfg.sshbug_derivekey2 == FORCE_OFF ? 1 : 0, 0);
2c9c6388 1415 SendDlgItemMessage(hwnd, IDC_BUGD_RSAPAD2, CB_RESETCONTENT, 0, 0);
1416 SendDlgItemMessage(hwnd, IDC_BUGD_RSAPAD2, CB_ADDSTRING, 0, (LPARAM)"Auto");
1417 SendDlgItemMessage(hwnd, IDC_BUGD_RSAPAD2, CB_ADDSTRING, 0, (LPARAM)"Off");
1418 SendDlgItemMessage(hwnd, IDC_BUGD_RSAPAD2, CB_ADDSTRING, 0, (LPARAM)"On");
1419 SendDlgItemMessage(hwnd, IDC_BUGD_RSAPAD2, CB_SETCURSEL,
5ecd7ad0 1420 cfg.sshbug_rsapad2 == FORCE_ON ? 2 :
1421 cfg.sshbug_rsapad2 == FORCE_OFF ? 1 : 0, 0);
8e975795 1422 SendDlgItemMessage(hwnd, IDC_BUGD_DHGEX2, CB_RESETCONTENT, 0, 0);
1423 SendDlgItemMessage(hwnd, IDC_BUGD_DHGEX2, CB_ADDSTRING, 0, (LPARAM)"Auto");
1424 SendDlgItemMessage(hwnd, IDC_BUGD_DHGEX2, CB_ADDSTRING, 0, (LPARAM)"Off");
1425 SendDlgItemMessage(hwnd, IDC_BUGD_DHGEX2, CB_ADDSTRING, 0, (LPARAM)"On");
1426 SendDlgItemMessage(hwnd, IDC_BUGD_DHGEX2, CB_SETCURSEL,
5ecd7ad0 1427 cfg.sshbug_dhgex2 == FORCE_ON ? 2 :
1428 cfg.sshbug_dhgex2 == FORCE_OFF ? 1 : 0, 0);
374330e2 1429}
1430
927d4fc5 1431struct treeview_faff {
1432 HWND treeview;
1433 HTREEITEM lastat[4];
1434};
1435
1436static HTREEITEM treeview_insert(struct treeview_faff *faff,
32874aea 1437 int level, char *text)
1438{
927d4fc5 1439 TVINSERTSTRUCT ins;
1440 int i;
1441 HTREEITEM newitem;
32874aea 1442 ins.hParent = (level > 0 ? faff->lastat[level - 1] : TVI_ROOT);
927d4fc5 1443 ins.hInsertAfter = faff->lastat[level];
06a03685 1444#if _WIN32_IE >= 0x0400 && defined NONAMELESSUNION
1445#define INSITEM DUMMYUNIONNAME.item
1446#else
1447#define INSITEM item
1448#endif
1449 ins.INSITEM.mask = TVIF_TEXT;
1450 ins.INSITEM.pszText = text;
927d4fc5 1451 newitem = TreeView_InsertItem(faff->treeview, &ins);
1452 if (level > 0)
32874aea 1453 TreeView_Expand(faff->treeview, faff->lastat[level - 1],
1454 TVE_EXPAND);
927d4fc5 1455 faff->lastat[level] = newitem;
32874aea 1456 for (i = level + 1; i < 4; i++)
1457 faff->lastat[i] = NULL;
927d4fc5 1458 return newitem;
1459}
1460
c96a8fef 1461/*
3ac9cd9f 1462 * Create the panelfuls of controls in the configuration box.
1463 */
32874aea 1464static void create_controls(HWND hwnd, int dlgtype, int panel)
1465{
3ac9cd9f 1466 if (panel == sessionpanelstart) {
566bba77 1467 /* The Session panel. Accelerators used: [acgoh] nprtis elvd w */
32874aea 1468 struct ctlpos cp;
1469 ctlposinit(&cp, hwnd, 80, 3, 13);
1470 bartitle(&cp, "Basic options for your PuTTY session",
1471 IDC_TITLE_SESSION);
1472 if (dlgtype == 0) {
42ff6345 1473 beginbox(&cp, "Specify your connection by host name or IP address",
32874aea 1474 IDC_BOX_SESSION1);
1475 multiedit(&cp,
42ff6345 1476 "Host &Name (or IP address)",
1477 IDC_HOSTSTATIC, IDC_HOST, 75,
32874aea 1478 "&Port", IDC_PORTSTATIC, IDC_PORT, 25, NULL);
1479 if (backends[3].backend == NULL) {
1480 /* this is PuTTYtel, so only three protocols available */
4eeb7d09 1481 radioline(&cp, "Protocol:", IDC_PROTSTATIC, 3,
32874aea 1482 "&Raw", IDC_PROTRAW,
1483 "&Telnet", IDC_PROTTELNET,
1484 "Rlog&in", IDC_PROTRLOGIN, NULL);
1485 } else {
1486 radioline(&cp, "Protocol:", IDC_PROTSTATIC, 4,
1487 "&Raw", IDC_PROTRAW,
1488 "&Telnet", IDC_PROTTELNET,
1489 "Rlog&in", IDC_PROTRLOGIN,
3ac9cd9f 1490#ifdef FWHACK
566bba77 1491 "&SSH/hack",
3ac9cd9f 1492#else
566bba77 1493 "&SSH",
3ac9cd9f 1494#endif
32874aea 1495 IDC_PROTSSH, NULL);
1496 }
1497 endbox(&cp);
1498 beginbox(&cp, "Load, save or delete a stored session",
1499 IDC_BOX_SESSION2);
1500 sesssaver(&cp, "Sav&ed Sessions",
1501 IDC_SESSSTATIC, IDC_SESSEDIT, IDC_SESSLIST,
1502 "&Load", IDC_SESSLOAD,
566bba77 1503 "Sa&ve", IDC_SESSSAVE, "&Delete", IDC_SESSDEL, NULL);
32874aea 1504 endbox(&cp);
1505 }
1506 beginbox(&cp, NULL, IDC_BOX_SESSION3);
1507 radioline(&cp, "Close &window on exit:", IDC_CLOSEEXIT, 4,
1508 "Always", IDC_COEALWAYS,
1509 "Never", IDC_COENEVER,
1510 "Only on clean exit", IDC_COENORMAL, NULL);
1511 endbox(&cp);
3ac9cd9f 1512 }
1513
0965bee0 1514 if (panel == loggingpanelstart) {
566bba77 1515 /* The Logging panel. Accelerators used: [acgoh] tplsfwe */
32874aea 1516 struct ctlpos cp;
1517 ctlposinit(&cp, hwnd, 80, 3, 13);
1518 bartitle(&cp, "Options controlling session logging",
1519 IDC_TITLE_LOGGING);
1520 beginbox(&cp, NULL, IDC_BOX_LOGGING1);
1521 radiobig(&cp,
1522 "Session logging:", IDC_LSTATSTATIC,
1523 "Logging &turned off completely", IDC_LSTATOFF,
1524 "Log &printable output only", IDC_LSTATASCII,
00db133f 1525 "&Log all session output", IDC_LSTATRAW,
1526 "Log &SSH packet data", IDC_LSTATPACKET,
1527 NULL);
32874aea 1528 editbutton(&cp, "Log &file name:",
1529 IDC_LGFSTATIC, IDC_LGFEDIT, "Bro&wse...",
1530 IDC_LGFBUTTON);
66ee282a 1531 statictext(&cp, "(Log file name can contain &&Y, &&M, &&D for date,"
1532 " &&T for time, and &&H for host name)", 2, IDC_LGFEXPLAIN);
32874aea 1533 radiobig(&cp,
1534 "What to do if the log file already &exists:",
1535 IDC_LSTATXIST, "Always overwrite it", IDC_LSTATXOVR,
1536 "Always append to the end of it", IDC_LSTATXAPN,
1537 "Ask the user every time", IDC_LSTATXASK, NULL);
1538 endbox(&cp);
0965bee0 1539 }
1540
3ac9cd9f 1541 if (panel == terminalpanelstart) {
b44b307a 1542 /* The Terminal panel. Accelerators used: [acgoh] wdren lts p */
32874aea 1543 struct ctlpos cp;
1544 ctlposinit(&cp, hwnd, 80, 3, 13);
1545 bartitle(&cp, "Options controlling the terminal emulation",
1546 IDC_TITLE_TERMINAL);
1547 beginbox(&cp, "Set various terminal options", IDC_BOX_TERMINAL1);
1548 checkbox(&cp, "Auto &wrap mode initially on", IDC_WRAPMODE);
1549 checkbox(&cp, "&DEC Origin Mode initially on", IDC_DECOM);
566bba77 1550 checkbox(&cp, "Implicit C&R in every LF", IDC_LFHASCR);
32874aea 1551 checkbox(&cp, "Use background colour to &erase screen", IDC_BCE);
1552 checkbox(&cp, "Enable bli&nking text", IDC_BLINKTEXT);
1553 multiedit(&cp,
1554 "An&swerback to ^E:", IDC_ANSWERBACK,
1555 IDC_ANSWEREDIT, 100, NULL);
1556 endbox(&cp);
1557
1558 beginbox(&cp, "Line discipline options", IDC_BOX_TERMINAL2);
566bba77 1559 radioline(&cp, "&Local echo:", IDC_ECHOSTATIC, 3,
32874aea 1560 "Auto", IDC_ECHOBACKEND,
1561 "Force on", IDC_ECHOYES, "Force off", IDC_ECHONO, NULL);
1562 radioline(&cp, "Local line edi&ting:", IDC_EDITSTATIC, 3,
1563 "Auto", IDC_EDITBACKEND,
1564 "Force on", IDC_EDITYES, "Force off", IDC_EDITNO, NULL);
1565 endbox(&cp);
b44b307a 1566
1567 beginbox(&cp, "Remote-controlled printing", IDC_BOX_TERMINAL3);
1568 combobox(&cp, "&Printer to send ANSI printer output to:",
1569 IDC_PRINTERSTATIC, IDC_PRINTER);
1570 endbox(&cp);
3ac9cd9f 1571 }
1572
0d2086c5 1573 if (panel == featurespanelstart) {
c0d36a72 1574 /* The Features panel. Accelerators used: [acgoh] ukswtbrx */
0d2086c5 1575 struct ctlpos cp;
1576 ctlposinit(&cp, hwnd, 80, 3, 13);
1577 bartitle(&cp, "Enabling and disabling advanced terminal features ",
1578 IDC_TITLE_FEATURES);
1579 beginbox(&cp, NULL, IDC_BOX_FEATURES1);
1580 checkbox(&cp, "Disable application c&ursor keys mode", IDC_NOAPPLICC);
1581 checkbox(&cp, "Disable application &keypad mode", IDC_NOAPPLICK);
c0d36a72 1582 checkbox(&cp, "Disable &xterm-style mouse reporting", IDC_NOMOUSEREP);
0d2086c5 1583 checkbox(&cp, "Disable remote-controlled terminal re&sizing",
1584 IDC_NORESIZE);
17aa543f 1585 checkbox(&cp, "Disable s&witching to alternate terminal screen",
0d2086c5 1586 IDC_NOALTSCREEN);
1587 checkbox(&cp, "Disable remote-controlled window &title changing",
1588 IDC_NOWINTITLE);
1589 checkbox(&cp, "Disable destructive &backspace on server sending ^?",
1590 IDC_NODBACKSPACE);
1591 checkbox(&cp, "Disable remote-controlled cha&racter set configuration",
1592 IDC_NOCHARSET);
1593 endbox(&cp);
1594 }
1595
156686ef 1596 if (panel == bellpanelstart) {
566bba77 1597 /* The Bell panel. Accelerators used: [acgoh] bdsm wit */
32874aea 1598 struct ctlpos cp;
1599 ctlposinit(&cp, hwnd, 80, 3, 13);
1600 bartitle(&cp, "Options controlling the terminal bell",
1601 IDC_TITLE_BELL);
1602 beginbox(&cp, "Set the style of bell", IDC_BOX_BELL1);
1603 radiobig(&cp,
1604 "Action to happen when a &bell occurs:", IDC_BELLSTATIC,
1605 "None (bell disabled)", IDC_BELL_DISABLED,
1606 "Play Windows Default Sound", IDC_BELL_DEFAULT,
1607 "Play a custom sound file", IDC_BELL_WAVEFILE,
1608 "Visual bell (flash window)", IDC_BELL_VISUAL, NULL);
03169ad0 1609 editbutton(&cp, "Custom sound file to play as a bell:",
1610 IDC_BELL_WAVESTATIC, IDC_BELL_WAVEEDIT,
1611 "Bro&wse...", IDC_BELL_WAVEBROWSE);
f8a28d1f 1612 radioline(&cp, "Taskbar/caption &indication on bell:",
1613 IDC_B_IND_STATIC, 3, "Disabled", IDC_B_IND_DISABLED,
1614 "Flashing", IDC_B_IND_FLASH, "Steady", IDC_B_IND_STEADY,
1615 NULL);
32874aea 1616 endbox(&cp);
156686ef 1617 beginbox(&cp, "Control the bell overload behaviour",
1618 IDC_BOX_BELL2);
1619 checkbox(&cp, "Bell is temporarily &disabled when over-used",
1620 IDC_BELLOVL);
1621 staticedit(&cp, "Over-use means this &many bells...",
1622 IDC_BELLOVLNSTATIC, IDC_BELLOVLN, 20);
9f89f96e 1623 staticedit(&cp, "... in &this many seconds",
156686ef 1624 IDC_BELLOVLTSTATIC, IDC_BELLOVLT, 20);
32874aea 1625 statictext(&cp,
1626 "The bell is re-enabled after a few seconds of silence.",
66ee282a 1627 1, IDC_BELLOVLEXPLAIN);
32874aea 1628 staticedit(&cp, "Seconds of &silence required", IDC_BELLOVLSSTATIC,
1629 IDC_BELLOVLS, 20);
1630 endbox(&cp);
156686ef 1631 }
1632
3ac9cd9f 1633 if (panel == keyboardpanelstart) {
17aa543f 1634 /* The Keyboard panel. Accelerators used: [acgoh] bef rntd */
32874aea 1635 struct ctlpos cp;
1636 ctlposinit(&cp, hwnd, 80, 3, 13);
d0cadfcd 1637 bartitle(&cp, "Options controlling the effects of keys",
1638 IDC_TITLE_KEYBOARD);
32874aea 1639 beginbox(&cp, "Change the sequences sent by:", IDC_BOX_KEYBOARD1);
1640 radioline(&cp, "The &Backspace key", IDC_DELSTATIC, 2,
1641 "Control-H", IDC_DEL008,
1642 "Control-? (127)", IDC_DEL127, NULL);
566bba77 1643 radioline(&cp, "The Home and &End keys", IDC_HOMESTATIC, 2,
32874aea 1644 "Standard", IDC_HOMETILDE, "rxvt", IDC_HOMERXVT, NULL);
1645 radioline(&cp, "The &Function keys and keypad", IDC_FUNCSTATIC, 3,
1646 "ESC[n~", IDC_FUNCTILDE,
1647 "Linux", IDC_FUNCLINUX,
1648 "Xterm R6", IDC_FUNCXTERM,
f37caa11 1649 "VT400", IDC_FUNCVT400,
32874aea 1650 "VT100+", IDC_FUNCVT100P, "SCO", IDC_FUNCSCO, NULL);
1651 endbox(&cp);
1652 beginbox(&cp, "Application keypad settings:", IDC_BOX_KEYBOARD2);
32874aea 1653 radioline(&cp, "Initial state of cu&rsor keys:", IDC_CURSTATIC, 2,
1654 "Normal", IDC_CURNORMAL,
1655 "Application", IDC_CURAPPLIC, NULL);
32874aea 1656 radioline(&cp, "Initial state of &numeric keypad:", IDC_KPSTATIC,
1657 3, "Normal", IDC_KPNORMAL, "Application", IDC_KPAPPLIC,
1658 "NetHack", IDC_KPNH, NULL);
1659 endbox(&cp);
1660 beginbox(&cp, "Enable extra keyboard features:",
1661 IDC_BOX_KEYBOARD3);
1662 checkbox(&cp, "AltGr ac&ts as Compose key", IDC_COMPOSEKEY);
1663 checkbox(&cp, "Control-Alt is &different from AltGr",
1664 IDC_CTRLALTKEYS);
1665 endbox(&cp);
3ac9cd9f 1666 }
1667
1668 if (panel == windowpanelstart) {
566bba77 1669 /* The Window panel. Accelerators used: [acgoh] rmz sdikp */
32874aea 1670 struct ctlpos cp;
1671 ctlposinit(&cp, hwnd, 80, 3, 13);
1672 bartitle(&cp, "Options controlling PuTTY's window",
1673 IDC_TITLE_WINDOW);
1674 beginbox(&cp, "Set the size of the window", IDC_BOX_WINDOW1);
1675 multiedit(&cp,
1676 "&Rows", IDC_ROWSSTATIC, IDC_ROWSEDIT, 50,
1677 "Colu&mns", IDC_COLSSTATIC, IDC_COLSEDIT, 50, NULL);
d0cadfcd 1678 radiobig(&cp, "When window is resi&zed:", IDC_RESIZESTATIC,
1679 "Change the number of rows and columns", IDC_RESIZETERM,
1680 "Change the size of the font", IDC_RESIZEFONT,
1681 "Change font size only when maximised", IDC_RESIZEEITHER,
1682 "Forbid resizing completely", IDC_RESIZENONE, NULL);
32874aea 1683 endbox(&cp);
1684 beginbox(&cp, "Control the scrollback in the window",
1685 IDC_BOX_WINDOW2);
1686 staticedit(&cp, "Lines of &scrollback",
1687 IDC_SAVESTATIC, IDC_SAVEEDIT, 50);
1688 checkbox(&cp, "&Display scrollbar", IDC_SCROLLBAR);
a401e5f3 1689 checkbox(&cp, "D&isplay scrollbar in full screen mode", IDC_SCROLLBARFULLSCREEN);
32874aea 1690 checkbox(&cp, "Reset scrollback on &keypress", IDC_SCROLLKEY);
1691 checkbox(&cp, "Reset scrollback on dis&play activity",
1692 IDC_SCROLLDISP);
1693 endbox(&cp);
3ac9cd9f 1694 }
1695
1696 if (panel == appearancepanelstart) {
566bba77 1697 /* The Appearance panel. Accelerators used: [acgoh] luvb n ti p s */
32874aea 1698 struct ctlpos cp;
1699 ctlposinit(&cp, hwnd, 80, 3, 13);
d0cadfcd 1700 bartitle(&cp, "Configure the appearance of PuTTY's window",
1701 IDC_TITLE_APPEARANCE);
32874aea 1702 beginbox(&cp, "Adjust the use of the cursor", IDC_BOX_APPEARANCE1);
1703 radioline(&cp, "Cursor appearance:", IDC_CURSORSTATIC, 3,
1704 "B&lock", IDC_CURBLOCK,
1705 "&Underline", IDC_CURUNDER,
1706 "&Vertical line", IDC_CURVERT, NULL);
1707 checkbox(&cp, "Cursor &blinks", IDC_BLINKCUR);
1708 endbox(&cp);
1709 beginbox(&cp, "Set the font used in the terminal window",
1710 IDC_BOX_APPEARANCE2);
566bba77 1711 staticbtn(&cp, "", IDC_FONTSTATIC, "Cha&nge...", IDC_CHOOSEFONT);
32874aea 1712 endbox(&cp);
1713 beginbox(&cp, "Adjust the use of the window title",
1714 IDC_BOX_APPEARANCE3);
1715 multiedit(&cp,
1716 "Window &title:", IDC_WINTITLE, IDC_WINEDIT, 100, NULL);
b40578c8 1717 checkbox(&cp, "Separate window and &icon titles", IDC_WINNAME);
32874aea 1718 endbox(&cp);
1719 beginbox(&cp, "Adjust the use of the mouse pointer",
1720 IDC_BOX_APPEARANCE4);
1721 checkbox(&cp, "Hide mouse &pointer when typing in window",
1722 IDC_HIDEMOUSE);
1723 endbox(&cp);
1724 beginbox(&cp, "Adjust the window border", IDC_BOX_APPEARANCE5);
1725 checkbox(&cp, "&Sunken-edge border (slightly thicker)",
1726 IDC_SUNKENEDGE);
5a73255e 1727 staticedit(&cp, "Gap between text and window edge",
1728 IDC_WINBSTATIC, IDC_WINBEDIT, 20);
32874aea 1729 endbox(&cp);
3ac9cd9f 1730 }
1731
d0cadfcd 1732 if (panel == behaviourpanelstart) {
566bba77 1733 /* The Behaviour panel. Accelerators used: [acgoh] w4yltf */
d0cadfcd 1734 struct ctlpos cp;
1735 ctlposinit(&cp, hwnd, 80, 3, 13);
1736 bartitle(&cp, "Configure the behaviour of PuTTY's window",
1737 IDC_TITLE_WINDOW);
1738 beginbox(&cp, NULL, IDC_BOX_BEHAVIOUR1);
1739 checkbox(&cp, "&Warn before closing window", IDC_CLOSEWARN);
1740 checkbox(&cp, "Window closes on ALT-F&4", IDC_ALTF4);
1741 checkbox(&cp, "S&ystem menu appears on ALT-Space", IDC_ALTSPACE);
1742 checkbox(&cp, "System menu appears on A&LT alone", IDC_ALTONLY);
1743 checkbox(&cp, "Ensure window is always on &top", IDC_ALWAYSONTOP);
1744 checkbox(&cp, "&Full screen on Alt-Enter", IDC_FULLSCREENONALTENTER);
1745 endbox(&cp);
1746 }
1747
3ac9cd9f 1748 if (panel == translationpanelstart) {
566bba77 1749 /* The Translation panel. Accelerators used: [acgoh] rxbepus */
32874aea 1750 struct ctlpos cp;
1751 ctlposinit(&cp, hwnd, 80, 3, 13);
1752 bartitle(&cp, "Options controlling character set translation",
1753 IDC_TITLE_TRANSLATION);
b682f470 1754 beginbox(&cp, "Character set translation on received data",
a9c02454 1755 IDC_BOX_TRANSLATION1);
8f57d753 1756 combobox(&cp, "&Received data assumed to be in which character set:",
b682f470 1757 IDC_CODEPAGESTATIC, IDC_CODEPAGE);
1758 endbox(&cp);
a9c02454 1759 beginbox(&cp, "Enable character set translation on input data",
1760 IDC_BOX_TRANSLATION2);
acb796a2 1761 checkbox(&cp, "Cap&s Lock acts as Cyrillic switch",
a9c02454 1762 IDC_CAPSLOCKCYR);
1763 endbox(&cp);
32874aea 1764 beginbox(&cp, "Adjust how PuTTY displays line drawing characters",
a9c02454 1765 IDC_BOX_TRANSLATION3);
32874aea 1766 radiobig(&cp,
1767 "Handling of line drawing characters:", IDC_VTSTATIC,
1768 "Font has &XWindows encoding", IDC_VTXWINDOWS,
1769 "Use font in &both ANSI and OEM modes", IDC_VTOEMANSI,
1770 "Use font in O&EM mode only", IDC_VTOEMONLY,
1771 "&Poor man's line drawing (" "+" ", " "-" " and " "|" ")",
4eeb7d09 1772 IDC_VTPOORMAN, "&Unicode mode", IDC_VTUNICODE, NULL);
32874aea 1773 endbox(&cp);
3ac9cd9f 1774 }
1775
1776 if (panel == selectionpanelstart) {
566bba77 1777 /* The Selection panel. Accelerators used: [acgoh] df wxp est nr */
32874aea 1778 struct ctlpos cp;
1779 ctlposinit(&cp, hwnd, 80, 3, 13);
1780 bartitle(&cp, "Options controlling copy and paste",
1781 IDC_TITLE_SELECTION);
1782 beginbox(&cp, "Translation of pasted characters",
1783 IDC_BOX_SELECTION1);
1784 checkbox(&cp,
1785 "&Don't translate line drawing chars into +, - and |",
1786 IDC_RAWCNP);
a7419ea4 1787 checkbox(&cp,
1788 "Paste to clipboard in RT&F as well as plain text",
1789 IDC_RTFPASTE);
32874aea 1790 endbox(&cp);
1791 beginbox(&cp, "Control which mouse button does which thing",
1792 IDC_BOX_SELECTION2);
1793 radiobig(&cp, "Action of mouse buttons:", IDC_MBSTATIC,
1794 "&Windows (Right pastes, Middle extends)", IDC_MBWINDOWS,
1795 "&xterm (Right extends, Middle pastes)", IDC_MBXTERM,
1796 NULL);
b90840c3 1797 checkbox(&cp,
1798 "Shift overrides a&pplication's use of mouse",
1799 IDC_MOUSEOVERRIDE);
6908fed7 1800 radioline(&cp,
1801 "Default selection mode (Alt+drag does the other one):",
1802 IDC_SELTYPESTATIC, 2,
1803 "&Normal", IDC_SELTYPELEX,
1804 "&Rectangular block", IDC_SELTYPERECT, NULL);
32874aea 1805 endbox(&cp);
1806 beginbox(&cp, "Control the select-one-word-at-a-time mode",
1807 IDC_BOX_SELECTION3);
566bba77 1808 charclass(&cp, "Charact&er classes:", IDC_CCSTATIC, IDC_CCLIST,
32874aea 1809 "&Set", IDC_CCSET, IDC_CCEDIT,
1810 "&to class", IDC_CCSTATIC2);
1811 endbox(&cp);
3ac9cd9f 1812 }
1813
1814 if (panel == colourspanelstart) {
566bba77 1815 /* The Colours panel. Accelerators used: [acgoh] blum */
32874aea 1816 struct ctlpos cp;
1817 ctlposinit(&cp, hwnd, 80, 3, 13);
1818 bartitle(&cp, "Options controlling use of colours",
1819 IDC_TITLE_COLOURS);
1820 beginbox(&cp, "General options for colour usage",
1821 IDC_BOX_COLOURS1);
1822 checkbox(&cp, "&Bolded text is a different colour",
1823 IDC_BOLDCOLOUR);
1824 checkbox(&cp, "Attempt to use &logical palettes", IDC_PALETTE);
1825 endbox(&cp);
1826 beginbox(&cp, "Adjust the precise colours PuTTY displays",
1827 IDC_BOX_COLOURS2);
1828 colouredit(&cp, "Select a colo&ur and then click to modify it:",
1829 IDC_COLOURSTATIC, IDC_COLOURLIST,
1830 "&Modify...", IDC_CHANGE,
1831 "Red:", IDC_RSTATIC, IDC_RVALUE,
1832 "Green:", IDC_GSTATIC, IDC_GVALUE,
1833 "Blue:", IDC_BSTATIC, IDC_BVALUE, NULL);
1834 endbox(&cp);
3ac9cd9f 1835 }
1836
1837 if (panel == connectionpanelstart) {
566bba77 1838 /* The Connection panel. Accelerators used: [acgoh] tukn */
32874aea 1839 struct ctlpos cp;
1840 ctlposinit(&cp, hwnd, 80, 3, 13);
1841 bartitle(&cp, "Options controlling the connection",
1842 IDC_TITLE_CONNECTION);
1843 if (dlgtype == 0) {
1844 beginbox(&cp, "Data to send to the server",
1845 IDC_BOX_CONNECTION1);
1846 staticedit(&cp, "Terminal-&type string", IDC_TTSTATIC,
1847 IDC_TTEDIT, 50);
1848 staticedit(&cp, "Auto-login &username", IDC_LOGSTATIC,
1849 IDC_LOGEDIT, 50);
1850 endbox(&cp);
a5f3e637 1851 } else {
1852 beginbox(&cp, "Adjust telnet session.", IDC_BOX_CONNECTION1);
1853 checkbox(&cp, "Keyboard sends telnet Backspace and Interrupt",
1854 IDC_TELNETKEY);
eee63b77 1855 checkbox(&cp, "Return key sends telnet New Line instead of ^M",
1856 IDC_TELNETRET);
a5f3e637 1857 endbox(&cp);
32874aea 1858 }
1859 beginbox(&cp, "Sending of null packets to keep session active",
1860 IDC_BOX_CONNECTION2);
1861 staticedit(&cp, "Seconds between &keepalives (0 to turn off)",
1862 IDC_PINGSTATIC, IDC_PINGEDIT, 20);
1863 endbox(&cp);
2184a5d9 1864 if (dlgtype == 0) {
1865 beginbox(&cp, "Low-level TCP connection options",
1866 IDC_BOX_CONNECTION3);
1867 checkbox(&cp, "Disable &Nagle's algorithm (TCP_NODELAY option)",
1868 IDC_NODELAY);
1869 endbox(&cp);
1870 }
3ac9cd9f 1871 }
1872
8eebd221 1873 if (panel == proxypanelstart) {
b7a189f3 1874 /* The Proxy panel. Accelerators used: [acgoh] ntslypeuwmvxd */
8eebd221 1875 struct ctlpos cp;
1876 ctlposinit(&cp, hwnd, 80, 3, 13);
1877 if (dlgtype == 0) {
1878 bartitle(&cp, "Options controlling proxy usage",
1879 IDC_TITLE_PROXY);
1880 beginbox(&cp, "Proxy basics", IDC_BOX_PROXY1);
1881 radioline(&cp, "Proxy type:", IDC_PROXYTYPESTATIC, 4,
1882 "&None", IDC_PROXYTYPENONE,
1883 "H&TTP", IDC_PROXYTYPEHTTP,
1884 "&SOCKS", IDC_PROXYTYPESOCKS,
1885 "Te&lnet", IDC_PROXYTYPETELNET, NULL);
1886 multiedit(&cp,
1887 "Prox&y Host", IDC_PROXYHOSTSTATIC, IDC_PROXYHOSTEDIT, 80,
1888 "&Port", IDC_PROXYPORTSTATIC, IDC_PROXYPORTEDIT, 20, NULL);
1889 multiedit(&cp,
1890 "&Exclude Hosts/IPs", IDC_PROXYEXCLUDESTATIC,
1891 IDC_PROXYEXCLUDEEDIT, 100, NULL);
b804e1e5 1892 checkbox(&cp, "Consider pro&xying local host connections",
1893 IDC_PROXYLOCALHOST);
b7a189f3 1894 radioline(&cp, "Do &DNS name lookup at proxy end:",
1895 IDC_PROXYDNSSTATIC, 3,
1896 "No", IDC_PROXYDNSNO,
1897 "Auto", IDC_PROXYDNSAUTO,
1898 "Yes", IDC_PROXYDNSYES, NULL);
8eebd221 1899 staticedit(&cp, "&Username", IDC_PROXYUSERSTATIC,
1900 IDC_PROXYUSEREDIT, 60);
1549e076 1901 staticpassedit(&cp, "Pass&word", IDC_PROXYPASSSTATIC,
1902 IDC_PROXYPASSEDIT, 60);
8eebd221 1903 endbox(&cp);
1904 beginbox(&cp, "Misc. proxy settings", IDC_BOX_PROXY2);
1905 multiedit(&cp,
1906 "Telnet co&mmand", IDC_PROXYTELNETCMDSTATIC,
1907 IDC_PROXYTELNETCMDEDIT, 100, NULL);
1908 radioline(&cp, "SOCKS &Version", IDC_PROXYSOCKSVERSTATIC,
1909 2, "Version 5", IDC_PROXYSOCKSVER5, "Version 4",
1910 IDC_PROXYSOCKSVER4, NULL);
1911 endbox(&cp);
1912 }
1913 }
1914
3ac9cd9f 1915 if (panel == telnetpanelstart) {
566bba77 1916 /* The Telnet panel. Accelerators used: [acgoh] svldr bftk */
32874aea 1917 struct ctlpos cp;
1918 ctlposinit(&cp, hwnd, 80, 3, 13);
1919 if (dlgtype == 0) {
1920 bartitle(&cp, "Options controlling Telnet connections",
1921 IDC_TITLE_TELNET);
1922 beginbox(&cp, "Data to send to the server", IDC_BOX_TELNET1);
1923 staticedit(&cp, "Terminal-&speed string", IDC_TSSTATIC,
1924 IDC_TSEDIT, 50);
1925 envsetter(&cp, "Environment variables:", IDC_ENVSTATIC,
1926 "&Variable", IDC_VARSTATIC, IDC_VAREDIT, "Va&lue",
1927 IDC_VALSTATIC, IDC_VALEDIT, IDC_ENVLIST, "A&dd",
1928 IDC_ENVADD, "&Remove", IDC_ENVREMOVE);
1929 endbox(&cp);
1930 beginbox(&cp, "Telnet protocol adjustments", IDC_BOX_TELNET2);
1931 radioline(&cp, "Handling of OLD_ENVIRON ambiguity:",
1932 IDC_EMSTATIC, 2, "&BSD (commonplace)", IDC_EMBSD,
1933 "R&FC 1408 (unusual)", IDC_EMRFC, NULL);
8faa456c 1934 radioline(&cp, "&Telnet negotiation mode:", IDC_ACTSTATIC, 2,
1935 "Passive", IDC_TPASSIVE, "Active",
1936 IDC_TACTIVE, NULL);
a5f3e637 1937 checkbox(&cp, "&Keyboard sends telnet Backspace and Interrupt",
1938 IDC_TELNETKEY);
eee63b77 1939 checkbox(&cp, "Return key sends telnet New Line instead of ^M",
1940 IDC_TELNETRET);
32874aea 1941 endbox(&cp);
1942 }
3ac9cd9f 1943 }
1944
1945 if (panel == rloginpanelstart) {
566bba77 1946 /* The Rlogin panel. Accelerators used: [acgoh] sl */
32874aea 1947 struct ctlpos cp;
1948 ctlposinit(&cp, hwnd, 80, 3, 13);
1949 if (dlgtype == 0) {
1950 bartitle(&cp, "Options controlling Rlogin connections",
1951 IDC_TITLE_RLOGIN);
1952 beginbox(&cp, "Data to send to the server", IDC_BOX_RLOGIN1);
1953 staticedit(&cp, "Terminal-&speed string", IDC_R_TSSTATIC,
1954 IDC_R_TSEDIT, 50);
1955 staticedit(&cp, "&Local username:", IDC_RLLUSERSTATIC,
1956 IDC_RLLUSEREDIT, 50);
1957 endbox(&cp);
1958 }
3ac9cd9f 1959 }
1960
1961 if (panel == sshpanelstart) {
98140988 1962 /* The SSH panel. Accelerators used: [acgoh] r pel12n sud i */
32874aea 1963 struct ctlpos cp;
1964 ctlposinit(&cp, hwnd, 80, 3, 13);
1965 if (dlgtype == 0) {
1966 bartitle(&cp, "Options controlling SSH connections",
1967 IDC_TITLE_SSH);
1968 beginbox(&cp, "Data to send to the server", IDC_BOX_SSH1);
1969 multiedit(&cp,
1970 "&Remote command:", IDC_CMDSTATIC, IDC_CMDEDIT, 100,
1971 NULL);
1972 endbox(&cp);
ca20bfcf 1973 beginbox(&cp, "Protocol options", IDC_BOX_SSH2);
32874aea 1974 checkbox(&cp, "Don't allocate a &pseudo-terminal", IDC_NOPTY);
1975 checkbox(&cp, "Enable compr&ession", IDC_COMPRESS);
1976 radioline(&cp, "Preferred SSH protocol version:",
38d228a2 1977 IDC_SSHPROTSTATIC, 4,
1978 "1 on&ly", IDC_SSHPROT1ONLY,
759712a6 1979 "&1", IDC_SSHPROT1, "&2", IDC_SSHPROT2,
1980 "2 o&nly", IDC_SSHPROT2ONLY, NULL);
32874aea 1981 endbox(&cp);
ca20bfcf 1982 beginbox(&cp, "Encryption options", IDC_BOX_SSH3);
98140988 1983 /* Adds accelerators: ud */
ca20bfcf 1984 prefslist(&cipherlist, &cp, "Encryption cipher &selection policy:",
1985 IDC_CIPHERSTATIC2, IDC_CIPHERLIST, IDC_CIPHERUP,
1986 IDC_CIPHERDN);
98140988 1987 checkbox(&cp, "Enable non-standard use of s&ingle-DES in SSH 2",
cb4d4768 1988 IDC_SSH2DES);
ca20bfcf 1989 endbox(&cp);
1990 }
1991 }
1992
1993 if (panel == sshauthpanelstart) {
566bba77 1994 /* The SSH authentication panel. Accelerators used: [acgoh] m fkiuw */
ca20bfcf 1995 struct ctlpos cp;
1996 ctlposinit(&cp, hwnd, 80, 3, 13);
1997 if (dlgtype == 0) {
1998 bartitle(&cp, "Options controlling SSH authentication",
1999 IDC_TITLE_SSHAUTH);
2000 beginbox(&cp, "Authentication methods",
2001 IDC_BOX_SSHAUTH1);
f091e308 2002 checkbox(&cp, "Atte&mpt TIS or CryptoCard authentication (SSH1)",
ca20bfcf 2003 IDC_AUTHTIS);
f091e308 2004 checkbox(&cp, "Attempt \"keyboard-&interactive\" authentication"
2005 " (SSH2)", IDC_AUTHKI);
ca20bfcf 2006 endbox(&cp);
2007 beginbox(&cp, "Authentication parameters",
2008 IDC_BOX_SSHAUTH2);
2009 checkbox(&cp, "Allow agent &forwarding", IDC_AGENTFWD);
5bb641e1 2010 checkbox(&cp, "Allow attempted changes of &username in SSH2",
2011 IDC_CHANGEUSER);
ca20bfcf 2012 editbutton(&cp, "Private &key file for authentication:",
2013 IDC_PKSTATIC, IDC_PKEDIT, "Bro&wse...",
2014 IDC_PKBUTTON);
2015 endbox(&cp);
32874aea 2016 }
3ac9cd9f 2017 }
2018
2c9c6388 2019 if (panel == sshbugspanelstart) {
98140988 2020 /* The SSH bugs panel. Accelerators used: [acgoh] isrmepd */
2c9c6388 2021 struct ctlpos cp;
2022 ctlposinit(&cp, hwnd, 80, 3, 13);
2023 if (dlgtype == 0) {
2024 bartitle(&cp, "Workarounds for SSH server bugs",
2025 IDC_TITLE_SSHBUGS);
2026 beginbox(&cp, "Detection of known bugs in SSH servers",
2027 IDC_BOX_SSHBUGS1);
2028 staticddl(&cp, "Chokes on SSH1 &ignore messages",
2029 IDC_BUGS_IGNORE1, IDC_BUGD_IGNORE1, 20);
2030 staticddl(&cp, "Refuses all SSH1 pa&ssword camouflage",
2031 IDC_BUGS_PLAINPW1, IDC_BUGD_PLAINPW1, 20);
2032 staticddl(&cp, "Chokes on SSH1 &RSA authentication",
2033 IDC_BUGS_RSA1, IDC_BUGD_RSA1, 20);
2034 staticddl(&cp, "Miscomputes SSH2 H&MAC keys",
2035 IDC_BUGS_HMAC2, IDC_BUGD_HMAC2, 20);
2036 staticddl(&cp, "Miscomputes SSH2 &encryption keys",
2037 IDC_BUGS_DERIVEKEY2, IDC_BUGD_DERIVEKEY2, 20);
2038 staticddl(&cp, "Requires &padding on SSH2 RSA signatures",
2039 IDC_BUGS_RSAPAD2, IDC_BUGD_RSAPAD2, 20);
8e975795 2040 staticddl(&cp, "Chokes on &Diffie-Hellman group exchange",
2041 IDC_BUGS_DHGEX2, IDC_BUGD_DHGEX2, 20);
2c9c6388 2042 endbox(&cp);
2043 }
2044 }
2045
3ac9cd9f 2046 if (panel == tunnelspanelstart) {
98140988 2047 /* The Tunnels panel. Accelerators used: [acgoh] exu tprsdilm */
32874aea 2048 struct ctlpos cp;
2049 ctlposinit(&cp, hwnd, 80, 3, 13);
2050 if (dlgtype == 0) {
2051 bartitle(&cp, "Options controlling SSH tunnelling",
2052 IDC_TITLE_TUNNELS);
d74d141c 2053 beginbox(&cp, "X11 forwarding", IDC_BOX_TUNNELS1);
32874aea 2054 checkbox(&cp, "&Enable X11 forwarding", IDC_X11_FORWARD);
b3ebaa28 2055 staticedit(&cp, "&X display location", IDC_X11_DISPSTATIC,
2056 IDC_X11_DISPLAY, 50);
2057 radioline(&cp, "Remote X11 a&uthentication protocol",
2058 IDC_X11AUTHSTATIC, 2,
2059 "MIT-Magic-Cookie-1", IDC_X11MIT,
2060 "XDM-Authorization-1", IDC_X11XDM, NULL);
32874aea 2061 endbox(&cp);
d74d141c 2062 beginbox(&cp, "Port forwarding", IDC_BOX_TUNNELS2);
beefa433 2063 checkbox(&cp, "Local ports accept connections from o&ther hosts",
2064 IDC_LPORT_ALL);
566bba77 2065 checkbox(&cp, "Remote &ports do the same (SSH v2 only)",
beefa433 2066 IDC_RPORT_ALL);
d74d141c 2067 staticbtn(&cp, "Forwarded ports:", IDC_PFWDSTATIC,
2068 "&Remove", IDC_PFWDREMOVE);
2069 fwdsetter(&cp, IDC_PFWDLIST,
2070 "Add new forwarded port:", IDC_PFWDSTATIC2,
2071 "&Source port", IDC_SPORTSTATIC, IDC_SPORTEDIT,
2072 "Dest&ination", IDC_DPORTSTATIC, IDC_DPORTEDIT,
a4b92c62 2073 "A&dd", IDC_PFWDADD,
2074 "&Local", IDC_PFWDLOCAL,
2075 "Re&mote", IDC_PFWDREMOTE);
d74d141c 2076 endbox(&cp);
2077
32874aea 2078 }
3ac9cd9f 2079 }
2080}
2081
c8d7378d 2082/*
2083 * Helper function to load the session selected in SESSLIST
2084 * if any, as this is done in more than one place in
2085 * GenericMainDlgProc(). 0 => failure.
2086 */
2087static int load_selected_session(HWND hwnd)
2088{
2089 int n = SendDlgItemMessage(hwnd, IDC_SESSLIST,
2090 LB_GETCURSEL, 0, 0);
2091 int isdef;
2092 if (n == LB_ERR) {
2093 MessageBeep(0);
2094 return 0;
2095 }
0b4f0bc0 2096 isdef = !strcmp(sesslist.sessions[n], "Default Settings");
2097 load_settings(sesslist.sessions[n], !isdef, &cfg);
c8d7378d 2098 init_dlg_ctrls(hwnd, TRUE);
2099 if (!isdef)
0b4f0bc0 2100 SetDlgItemText(hwnd, IDC_SESSEDIT, sesslist.sessions[n]);
c8d7378d 2101 else
2102 SetDlgItemText(hwnd, IDC_SESSEDIT, "");
2103 /* Restore the selection, which will have been clobbered by
2104 * SESSEDIT handling. */
2105 SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_SETCURSEL, n, 0);
2106 return 1;
2107}
2108
3ac9cd9f 2109/*
2110 * This function is the configuration box.
c96a8fef 2111 */
32874aea 2112static int GenericMainDlgProc(HWND hwnd, UINT msg,
2113 WPARAM wParam, LPARAM lParam, int dlgtype)
2114{
927d4fc5 2115 HWND hw, treeview;
2116 struct treeview_faff tvfaff;
2117 HTREEITEM hsession;
c96a8fef 2118 OPENFILENAME of;
9a30e26b 2119 char filename[sizeof(cfg.keyfile.path)];
c96a8fef 2120 CHOOSEFONT cf;
2121 LOGFONT lf;
2122 char fontstatic[256];
b278b14a 2123 char portname[32];
32874aea 2124 struct servent *service;
374330e2 2125 int i;
ca20bfcf 2126 static UINT draglistmsg = WM_NULL;
374330e2 2127
2128 switch (msg) {
2129 case WM_INITDIALOG:
a094ae43 2130 readytogo = 0;
c96a8fef 2131 SetWindowLong(hwnd, GWL_USERDATA, 0);
70133c0e 2132 if (help_path)
2133 SetWindowLong(hwnd, GWL_EXSTYLE,
2134 GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_CONTEXTHELP);
2135 else {
2136 HWND item = GetDlgItem(hwnd, IDC_HELPBTN);
2137 if (item)
2138 DestroyWindow(item);
2139 }
2140 requested_help = FALSE;
648947d4 2141 SendMessage(hwnd, WM_SETICON, (WPARAM) ICON_BIG,
2142 (LPARAM) LoadIcon(hinst, MAKEINTRESOURCE(IDI_CFGICON)));
c96a8fef 2143 /*
2144 * Centre the window.
2145 */
2146 { /* centre the window */
2147 RECT rs, rd;
2148
2149 hw = GetDesktopWindow();
32874aea 2150 if (GetWindowRect(hw, &rs) && GetWindowRect(hwnd, &rd))
2151 MoveWindow(hwnd,
2152 (rs.right + rs.left + rd.left - rd.right) / 2,
2153 (rs.bottom + rs.top + rd.top - rd.bottom) / 2,
2154 rd.right - rd.left, rd.bottom - rd.top, TRUE);
c96a8fef 2155 }
2156
2157 /*
927d4fc5 2158 * Create the tree view.
c96a8fef 2159 */
32874aea 2160 {
2161 RECT r;
c96a8fef 2162 WPARAM font;
32874aea 2163 HWND tvstatic;
2164
2165 r.left = 3;
2166 r.right = r.left + 75;
2167 r.top = 3;
2168 r.bottom = r.top + 10;
2169 MapDialogRect(hwnd, &r);
2170 tvstatic = CreateWindowEx(0, "STATIC", "Cate&gory:",
2171 WS_CHILD | WS_VISIBLE,
2172 r.left, r.top,
2173 r.right - r.left, r.bottom - r.top,
2174 hwnd, (HMENU) IDCX_TVSTATIC, hinst,
2175 NULL);
c96a8fef 2176 font = SendMessage(hwnd, WM_GETFONT, 0, 0);
927d4fc5 2177 SendMessage(tvstatic, WM_SETFONT, font, MAKELPARAM(TRUE, 0));
2178
32874aea 2179 r.left = 3;
2180 r.right = r.left + 75;
2181 r.top = 13;
a401e5f3 2182 r.bottom = r.top + 219;
32874aea 2183 MapDialogRect(hwnd, &r);
2184 treeview = CreateWindowEx(WS_EX_CLIENTEDGE, WC_TREEVIEW, "",
2185 WS_CHILD | WS_VISIBLE |
2186 WS_TABSTOP | TVS_HASLINES |
2187 TVS_DISABLEDRAGDROP | TVS_HASBUTTONS
2188 | TVS_LINESATROOT |
2189 TVS_SHOWSELALWAYS, r.left, r.top,
2190 r.right - r.left, r.bottom - r.top,
2191 hwnd, (HMENU) IDCX_TREEVIEW, hinst,
2192 NULL);
927d4fc5 2193 font = SendMessage(hwnd, WM_GETFONT, 0, 0);
2194 SendMessage(treeview, WM_SETFONT, font, MAKELPARAM(TRUE, 0));
32874aea 2195 tvfaff.treeview = treeview;
2196 memset(tvfaff.lastat, 0, sizeof(tvfaff.lastat));
2197 }
c96a8fef 2198
2199 /*
3ac9cd9f 2200 * Set up the tree view contents.
c96a8fef 2201 */
32874aea 2202 hsession = treeview_insert(&tvfaff, 0, "Session");
2203 treeview_insert(&tvfaff, 1, "Logging");
2204 treeview_insert(&tvfaff, 0, "Terminal");
2205 treeview_insert(&tvfaff, 1, "Keyboard");
2206 treeview_insert(&tvfaff, 1, "Bell");
0d2086c5 2207 treeview_insert(&tvfaff, 1, "Features");
32874aea 2208 treeview_insert(&tvfaff, 0, "Window");
2209 treeview_insert(&tvfaff, 1, "Appearance");
d0cadfcd 2210 treeview_insert(&tvfaff, 1, "Behaviour");
32874aea 2211 treeview_insert(&tvfaff, 1, "Translation");
2212 treeview_insert(&tvfaff, 1, "Selection");
2213 treeview_insert(&tvfaff, 1, "Colours");
2214 treeview_insert(&tvfaff, 0, "Connection");
2215 if (dlgtype == 0) {
8eebd221 2216 treeview_insert(&tvfaff, 1, "Proxy");
32874aea 2217 treeview_insert(&tvfaff, 1, "Telnet");
2218 treeview_insert(&tvfaff, 1, "Rlogin");
2219 if (backends[3].backend != NULL) {
2220 treeview_insert(&tvfaff, 1, "SSH");
ca20bfcf 2221 /* XXX long name is ugly */
2222 /* XXX make it closed by default? */
2223 treeview_insert(&tvfaff, 2, "Auth");
32874aea 2224 treeview_insert(&tvfaff, 2, "Tunnels");
2c9c6388 2225 treeview_insert(&tvfaff, 2, "Bugs");
32874aea 2226 }
2227 }
2228
2229 /*
2230 * Put the treeview selection on to the Session panel. This
2231 * should also cause creation of the relevant controls.
2232 */
2233 TreeView_SelectItem(treeview, hsession);
2234
2235 /*
2236 * Set focus into the first available control.
2237 */
2238 {
2239 HWND ctl;
2240 ctl = GetDlgItem(hwnd, IDC_HOST);
2241 if (!ctl)
2242 ctl = GetDlgItem(hwnd, IDC_CLOSEEXIT);
2243 SetFocus(ctl);
2244 }
c96a8fef 2245
2246 SetWindowLong(hwnd, GWL_USERDATA, 1);
dc35b97d 2247 sesslist_has_focus = 0;
c96a8fef 2248 return 0;
1cd246bb 2249 case WM_LBUTTONUP:
32874aea 2250 /*
2251 * Button release should trigger WM_OK if there was a
2252 * previous double click on the session list.
2253 */
2254 ReleaseCapture();
2255 if (readytogo)
2256 SendMessage(hwnd, WM_COMMAND, IDOK, 0);
2257 break;
c96a8fef 2258 case WM_NOTIFY:
927d4fc5 2259 if (LOWORD(wParam) == IDCX_TREEVIEW &&
32874aea 2260 ((LPNMHDR) lParam)->code == TVN_SELCHANGED) {
2261 HTREEITEM i =
2262 TreeView_GetSelection(((LPNMHDR) lParam)->hwndFrom);
927d4fc5 2263 TVITEM item;
32874aea 2264 int j;
c96a8fef 2265 char buffer[64];
78a79d97 2266
2267 SendMessage (hwnd, WM_SETREDRAW, FALSE, 0);
2268
32874aea 2269 item.hItem = i;
c96a8fef 2270 item.pszText = buffer;
2271 item.cchTextMax = sizeof(buffer);
927d4fc5 2272 item.mask = TVIF_TEXT;
32874aea 2273 TreeView_GetItem(((LPNMHDR) lParam)->hwndFrom, &item);
3ac9cd9f 2274 for (j = controlstartvalue; j < controlendvalue; j++) {
32874aea 2275 HWND item = GetDlgItem(hwnd, j);
2276 if (item)
2277 DestroyWindow(item);
2278 }
927d4fc5 2279 if (!strcmp(buffer, "Session"))
3ac9cd9f 2280 create_controls(hwnd, dlgtype, sessionpanelstart);
0965bee0 2281 if (!strcmp(buffer, "Logging"))
2282 create_controls(hwnd, dlgtype, loggingpanelstart);
c96a8fef 2283 if (!strcmp(buffer, "Keyboard"))
3ac9cd9f 2284 create_controls(hwnd, dlgtype, keyboardpanelstart);
c96a8fef 2285 if (!strcmp(buffer, "Terminal"))
3ac9cd9f 2286 create_controls(hwnd, dlgtype, terminalpanelstart);
156686ef 2287 if (!strcmp(buffer, "Bell"))
2288 create_controls(hwnd, dlgtype, bellpanelstart);
0d2086c5 2289 if (!strcmp(buffer, "Features"))
2290 create_controls(hwnd, dlgtype, featurespanelstart);
c96a8fef 2291 if (!strcmp(buffer, "Window"))
3ac9cd9f 2292 create_controls(hwnd, dlgtype, windowpanelstart);
4c4f2716 2293 if (!strcmp(buffer, "Appearance"))
3ac9cd9f 2294 create_controls(hwnd, dlgtype, appearancepanelstart);
d0cadfcd 2295 if (!strcmp(buffer, "Behaviour"))
2296 create_controls(hwnd, dlgtype, behaviourpanelstart);
9c964e85 2297 if (!strcmp(buffer, "Tunnels"))
3ac9cd9f 2298 create_controls(hwnd, dlgtype, tunnelspanelstart);
927d4fc5 2299 if (!strcmp(buffer, "Connection"))
3ac9cd9f 2300 create_controls(hwnd, dlgtype, connectionpanelstart);
8eebd221 2301 if (!strcmp(buffer, "Proxy"))
2302 create_controls(hwnd, dlgtype, proxypanelstart);
c96a8fef 2303 if (!strcmp(buffer, "Telnet"))
3ac9cd9f 2304 create_controls(hwnd, dlgtype, telnetpanelstart);
c91409da 2305 if (!strcmp(buffer, "Rlogin"))
3ac9cd9f 2306 create_controls(hwnd, dlgtype, rloginpanelstart);
c96a8fef 2307 if (!strcmp(buffer, "SSH"))
3ac9cd9f 2308 create_controls(hwnd, dlgtype, sshpanelstart);
ca20bfcf 2309 if (!strcmp(buffer, "Auth"))
2310 create_controls(hwnd, dlgtype, sshauthpanelstart);
2c9c6388 2311 if (!strcmp(buffer, "Bugs"))
2312 create_controls(hwnd, dlgtype, sshbugspanelstart);
c96a8fef 2313 if (!strcmp(buffer, "Selection"))
3ac9cd9f 2314 create_controls(hwnd, dlgtype, selectionpanelstart);
c96a8fef 2315 if (!strcmp(buffer, "Colours"))
3ac9cd9f 2316 create_controls(hwnd, dlgtype, colourspanelstart);
c96a8fef 2317 if (!strcmp(buffer, "Translation"))
3ac9cd9f 2318 create_controls(hwnd, dlgtype, translationpanelstart);
2319
c8d7378d 2320 init_dlg_ctrls(hwnd, FALSE);
78a79d97 2321
2322 SendMessage (hwnd, WM_SETREDRAW, TRUE, 0);
2323 InvalidateRect (hwnd, NULL, TRUE);
c96a8fef 2324
32874aea 2325 SetFocus(((LPNMHDR) lParam)->hwndFrom); /* ensure focus stays */
c96a8fef 2326 return 0;
2327 }
2328 break;
374330e2 2329 case WM_COMMAND:
c96a8fef 2330 /*
2331 * Only process WM_COMMAND once the dialog is fully formed.
2332 */
32874aea 2333 if (GetWindowLong(hwnd, GWL_USERDATA) == 1)
2334 switch (LOWORD(wParam)) {
2335 case IDOK:
c8d7378d 2336 /* Behaviour of the "Open" button is different if the
2337 * session list has focus, *unless* the user just
2338 * double-clicked... */
2339 if (sesslist_has_focus && !readytogo) {
2340 if (!load_selected_session(hwnd)) {
2341 MessageBeep(0);
2342 return 0;
2343 }
2344 }
2345 /* If at this point we have a valid session, go! */
70133c0e 2346 if (*cfg.host) {
2347 if (requested_help) {
2348 WinHelp(hwnd, help_path, HELP_QUIT, 0);
2349 requested_help = FALSE;
2350 }
32874aea 2351 EndDialog(hwnd, 1);
70133c0e 2352 } else
32874aea 2353 MessageBeep(0);
2354 return 0;
70133c0e 2355 case IDC_HELPBTN:
2356 if (HIWORD(wParam) == BN_CLICKED ||
2357 HIWORD(wParam) == BN_DOUBLECLICKED) {
2358 if (help_path) {
2359 WinHelp(hwnd, help_path,
2360 help_has_contents ? HELP_FINDER : HELP_CONTENTS,
2361 0);
2362 requested_help = TRUE;
2363 }
2364 }
2365 break;
32874aea 2366 case IDCANCEL:
70133c0e 2367 if (requested_help) {
2368 WinHelp(hwnd, help_path, HELP_QUIT, 0);
2369 requested_help = FALSE;
2370 }
32874aea 2371 EndDialog(hwnd, 0);
2372 return 0;
2373 case IDC_PROTTELNET:
2374 case IDC_PROTRLOGIN:
2375 case IDC_PROTSSH:
2376 case IDC_PROTRAW:
2377 if (HIWORD(wParam) == BN_CLICKED ||
2378 HIWORD(wParam) == BN_DOUBLECLICKED) {
2379 int i = IsDlgButtonChecked(hwnd, IDC_PROTSSH);
2380 int j = IsDlgButtonChecked(hwnd, IDC_PROTTELNET);
2381 int k = IsDlgButtonChecked(hwnd, IDC_PROTRLOGIN);
2382 cfg.protocol =
2383 i ? PROT_SSH : j ? PROT_TELNET : k ? PROT_RLOGIN :
2384 PROT_RAW;
2b0d98d3 2385 /*
2386 * When switching using the arrow keys, we
2387 * appear to get two of these messages, both
2388 * mentioning the target button in
2389 * LOWORD(wParam), but one of them called while
2390 * the previous button is still checked. This
2391 * causes an unnecessary reset of the port
2392 * number field, which we fix by ensuring here
2393 * that the button selected is indeed the one
2394 * checked.
2395 */
2396 if (IsDlgButtonChecked(hwnd, LOWORD(wParam)) &&
2397 ((cfg.protocol == PROT_SSH && cfg.port != 22)
2398 || (cfg.protocol == PROT_TELNET && cfg.port != 23)
2399 || (cfg.protocol == PROT_RLOGIN
2400 && cfg.port != 513))) {
32874aea 2401 cfg.port = i ? 22 : j ? 23 : 513;
2402 SetDlgItemInt(hwnd, IDC_PORT, cfg.port, FALSE);
2403 }
374330e2 2404 }
32874aea 2405 break;
2406 case IDC_HOST:
2407 if (HIWORD(wParam) == EN_CHANGE)
2408 GetDlgItemText(hwnd, IDC_HOST, cfg.host,
2409 sizeof(cfg.host) - 1);
2410 break;
2411 case IDC_PORT:
2412 if (HIWORD(wParam) == EN_CHANGE) {
2413 GetDlgItemText(hwnd, IDC_PORT, portname, 31);
2414 if (isdigit(portname[0]))
2415 MyGetDlgItemInt(hwnd, IDC_PORT, &cfg.port);
2416 else {
2417 service = getservbyname(portname, NULL);
2418 if (service)
2419 cfg.port = ntohs(service->s_port);
2420 else
2421 cfg.port = 0;
2422 }
b278b14a 2423 }
32874aea 2424 break;
2425 case IDC_SESSEDIT:
2426 if (HIWORD(wParam) == EN_CHANGE) {
2427 SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_SETCURSEL,
2428 (WPARAM) - 1, 0);
2429 GetDlgItemText(hwnd, IDC_SESSEDIT,
2430 savedsession, sizeof(savedsession) - 1);
2431 savedsession[sizeof(savedsession) - 1] = '\0';
2432 }
2433 break;
2434 case IDC_SESSSAVE:
2435 if (HIWORD(wParam) == BN_CLICKED ||
2436 HIWORD(wParam) == BN_DOUBLECLICKED) {
2437 /*
2438 * Save a session
2439 */
2440 char str[2048];
2441 GetDlgItemText(hwnd, IDC_SESSEDIT, str,
2442 sizeof(str) - 1);
2443 if (!*str) {
2444 int n = SendDlgItemMessage(hwnd, IDC_SESSLIST,
2445 LB_GETCURSEL, 0, 0);
2446 if (n == LB_ERR) {
2447 MessageBeep(0);
2448 break;
2449 }
0b4f0bc0 2450 strcpy(str, sesslist.sessions[n]);
32874aea 2451 }
2452 save_settings(str, !!strcmp(str, "Default Settings"),
2453 &cfg);
0b4f0bc0 2454 get_sesslist(&sesslist, FALSE);
2455 get_sesslist(&sesslist, TRUE);
c8d7378d 2456 SendDlgItemMessage(hwnd, IDC_SESSLIST, WM_SETREDRAW,
2457 FALSE, 0);
32874aea 2458 SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_RESETCONTENT,
2459 0, 0);
0b4f0bc0 2460 for (i = 0; i < sesslist.nsessions; i++)
32874aea 2461 SendDlgItemMessage(hwnd, IDC_SESSLIST,
2462 LB_ADDSTRING, 0,
0b4f0bc0 2463 (LPARAM) (sesslist.sessions[i]));
32874aea 2464 SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_SETCURSEL,
2465 (WPARAM) - 1, 0);
c8d7378d 2466 SendDlgItemMessage(hwnd, IDC_SESSLIST, WM_SETREDRAW,
2467 TRUE, 0);
2468 InvalidateRect(GetDlgItem(hwnd, IDC_SESSLIST), NULL,
2469 TRUE);
32874aea 2470 }
2471 break;
2472 case IDC_SESSLIST:
2473 case IDC_SESSLOAD:
c8d7378d 2474 if (LOWORD(wParam) == IDC_SESSLIST) {
2475 if (HIWORD(wParam) == LBN_SETFOCUS)
2476 sesslist_has_focus = 1;
2477 else if (HIWORD(wParam) == LBN_KILLFOCUS)
2478 sesslist_has_focus = 0;
2479 }
32874aea 2480 if (LOWORD(wParam) == IDC_SESSLOAD &&
2481 HIWORD(wParam) != BN_CLICKED &&
2482 HIWORD(wParam) != BN_DOUBLECLICKED) break;
2483 if (LOWORD(wParam) == IDC_SESSLIST &&
2484 HIWORD(wParam) != LBN_DBLCLK) break;
c8d7378d 2485 /* Load the session selected in SESSLIST. */
2486 if (load_selected_session(hwnd) &&
2487 LOWORD(wParam) == IDC_SESSLIST) {
32874aea 2488 /*
2489 * A double-click on a saved session should
2490 * actually start the session, not just load it.
2491 * Unless it's Default Settings or some other
2492 * host-less set of saved settings.
2493 */
2494 if (*cfg.host) {
2495 readytogo = TRUE;
2496 SetCapture(hwnd);
2497 }
374330e2 2498 }
32874aea 2499 break;
2500 case IDC_SESSDEL:
2501 if (HIWORD(wParam) == BN_CLICKED ||
2502 HIWORD(wParam) == BN_DOUBLECLICKED) {
2503 int n = SendDlgItemMessage(hwnd, IDC_SESSLIST,
2504 LB_GETCURSEL, 0, 0);
2505 if (n == LB_ERR || n == 0) {
2506 MessageBeep(0);
2507 break;
2508 }
0b4f0bc0 2509 del_settings(sesslist.sessions[n]);
2510 get_sesslist(&sesslist, FALSE);
2511 get_sesslist(&sesslist, TRUE);
c8d7378d 2512 SendDlgItemMessage(hwnd, IDC_SESSLIST, WM_SETREDRAW,
2513 FALSE, 0);
32874aea 2514 SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_RESETCONTENT,
2515 0, 0);
0b4f0bc0 2516 for (i = 0; i < sesslist.nsessions; i++)
32874aea 2517 SendDlgItemMessage(hwnd, IDC_SESSLIST,
2518 LB_ADDSTRING, 0,
0b4f0bc0 2519 (LPARAM) (sesslist.sessions[i]));
32874aea 2520 SendDlgItemMessage(hwnd, IDC_SESSLIST, LB_SETCURSEL,
2521 (WPARAM) - 1, 0);
c8d7378d 2522 SendDlgItemMessage(hwnd, IDC_SESSLIST, WM_SETREDRAW,
2523 TRUE, 0);
2524 InvalidateRect(GetDlgItem(hwnd, IDC_SESSLIST), NULL,
2525 TRUE);
374330e2 2526 }
32874aea 2527 case IDC_PINGEDIT:
2528 if (HIWORD(wParam) == EN_CHANGE)
2529 MyGetDlgItemInt(hwnd, IDC_PINGEDIT,
2530 &cfg.ping_interval);
2531 break;
2184a5d9 2532 case IDC_NODELAY:
2533 if (HIWORD(wParam) == BN_CLICKED ||
2534 HIWORD(wParam) == BN_DOUBLECLICKED)
2535 cfg.tcp_nodelay =
2536 IsDlgButtonChecked(hwnd, IDC_NODELAY);
2537 break;
32874aea 2538 case IDC_DEL008:
2539 case IDC_DEL127:
2540 if (HIWORD(wParam) == BN_CLICKED ||
2541 HIWORD(wParam) == BN_DOUBLECLICKED)
2542 cfg.bksp_is_delete =
2543 IsDlgButtonChecked(hwnd, IDC_DEL127);
2544 break;
2545 case IDC_HOMETILDE:
2546 case IDC_HOMERXVT:
2547 if (HIWORD(wParam) == BN_CLICKED ||
2548 HIWORD(wParam) == BN_DOUBLECLICKED)
2549 cfg.rxvt_homeend =
2550 IsDlgButtonChecked(hwnd, IDC_HOMERXVT);
2551 break;
2552 case IDC_FUNCTILDE:
2553 case IDC_FUNCLINUX:
2554 case IDC_FUNCXTERM:
2555 case IDC_FUNCVT400:
2556 case IDC_FUNCVT100P:
2557 case IDC_FUNCSCO:
2558 if (HIWORD(wParam) == BN_CLICKED ||
2559 HIWORD(wParam) == BN_DOUBLECLICKED)
2560 switch (LOWORD(wParam)) {
2561 case IDC_FUNCTILDE:
2562 cfg.funky_type = 0;
2563 break;
2564 case IDC_FUNCLINUX:
2565 cfg.funky_type = 1;
2566 break;
2567 case IDC_FUNCXTERM:
2568 cfg.funky_type = 2;
2569 break;
2570 case IDC_FUNCVT400:
2571 cfg.funky_type = 3;
2572 break;
2573 case IDC_FUNCVT100P:
2574 cfg.funky_type = 4;
2575 break;
2576 case IDC_FUNCSCO:
2577 cfg.funky_type = 5;
2578 break;
2579 }
2580 break;
2581 case IDC_KPNORMAL:
2582 case IDC_KPAPPLIC:
2583 if (HIWORD(wParam) == BN_CLICKED ||
2584 HIWORD(wParam) == BN_DOUBLECLICKED) {
2585 cfg.app_keypad =
2586 IsDlgButtonChecked(hwnd, IDC_KPAPPLIC);
2587 cfg.nethack_keypad = FALSE;
f37caa11 2588 }
32874aea 2589 break;
2590 case IDC_KPNH:
2591 if (HIWORD(wParam) == BN_CLICKED ||
2592 HIWORD(wParam) == BN_DOUBLECLICKED) {
2593 cfg.app_keypad = FALSE;
2594 cfg.nethack_keypad = TRUE;
2595 }
2596 break;
2597 case IDC_CURNORMAL:
2598 case IDC_CURAPPLIC:
2599 if (HIWORD(wParam) == BN_CLICKED ||
2600 HIWORD(wParam) == BN_DOUBLECLICKED)
2601 cfg.app_cursor =
2602 IsDlgButtonChecked(hwnd, IDC_CURAPPLIC);
2603 break;
2604 case IDC_NOAPPLICC:
2605 if (HIWORD(wParam) == BN_CLICKED ||
2606 HIWORD(wParam) == BN_DOUBLECLICKED)
2607 cfg.no_applic_c =
2608 IsDlgButtonChecked(hwnd, IDC_NOAPPLICC);
2609 break;
2610 case IDC_NOAPPLICK:
2611 if (HIWORD(wParam) == BN_CLICKED ||
2612 HIWORD(wParam) == BN_DOUBLECLICKED)
2613 cfg.no_applic_k =
2614 IsDlgButtonChecked(hwnd, IDC_NOAPPLICK);
2615 break;
c0d36a72 2616 case IDC_NOMOUSEREP:
2617 if (HIWORD(wParam) == BN_CLICKED ||
2618 HIWORD(wParam) == BN_DOUBLECLICKED)
2619 cfg.no_mouse_rep =
2620 IsDlgButtonChecked(hwnd, IDC_NOMOUSEREP);
2621 break;
0d2086c5 2622 case IDC_NORESIZE:
2623 if (HIWORD(wParam) == BN_CLICKED ||
2624 HIWORD(wParam) == BN_DOUBLECLICKED)
2625 cfg.no_remote_resize =
2626 IsDlgButtonChecked(hwnd, IDC_NORESIZE);
2627 break;
2628 case IDC_NOALTSCREEN:
2629 if (HIWORD(wParam) == BN_CLICKED ||
2630 HIWORD(wParam) == BN_DOUBLECLICKED)
2631 cfg.no_alt_screen =
2632 IsDlgButtonChecked(hwnd, IDC_NOALTSCREEN);
2633 break;
2634 case IDC_NOWINTITLE:
2635 if (HIWORD(wParam) == BN_CLICKED ||
2636 HIWORD(wParam) == BN_DOUBLECLICKED)
2637 cfg.no_remote_wintitle =
2638 IsDlgButtonChecked(hwnd, IDC_NOWINTITLE);
2639 break;
2640 case IDC_NODBACKSPACE:
2641 if (HIWORD(wParam) == BN_CLICKED ||
2642 HIWORD(wParam) == BN_DOUBLECLICKED)
2643 cfg.no_dbackspace =
2644 IsDlgButtonChecked(hwnd, IDC_NODBACKSPACE);
2645 break;
2646 case IDC_NOCHARSET:
2647 if (HIWORD(wParam) == BN_CLICKED ||
2648 HIWORD(wParam) == BN_DOUBLECLICKED)
2649 cfg.no_remote_charset =
2650 IsDlgButtonChecked(hwnd, IDC_NOCHARSET);
2651 break;
32874aea 2652 case IDC_ALTF4:
2653 if (HIWORD(wParam) == BN_CLICKED ||
2654 HIWORD(wParam) == BN_DOUBLECLICKED)
2655 cfg.alt_f4 = IsDlgButtonChecked(hwnd, IDC_ALTF4);
2656 break;
2657 case IDC_ALTSPACE:
2658 if (HIWORD(wParam) == BN_CLICKED ||
2659 HIWORD(wParam) == BN_DOUBLECLICKED)
2660 cfg.alt_space =
2661 IsDlgButtonChecked(hwnd, IDC_ALTSPACE);
2662 break;
2663 case IDC_ALTONLY:
2664 if (HIWORD(wParam) == BN_CLICKED ||
2665 HIWORD(wParam) == BN_DOUBLECLICKED)
2666 cfg.alt_only =
2667 IsDlgButtonChecked(hwnd, IDC_ALTONLY);
2668 break;
2669 case IDC_ECHOBACKEND:
2670 case IDC_ECHOYES:
2671 case IDC_ECHONO:
2672 if (HIWORD(wParam) == BN_CLICKED ||
2673 HIWORD(wParam) == BN_DOUBLECLICKED) {
2674 if (LOWORD(wParam) == IDC_ECHOBACKEND)
5ecd7ad0 2675 cfg.localecho = AUTO;
32874aea 2676 if (LOWORD(wParam) == IDC_ECHOYES)
5ecd7ad0 2677 cfg.localecho = FORCE_ON;
32874aea 2678 if (LOWORD(wParam) == IDC_ECHONO)
5ecd7ad0 2679 cfg.localecho = FORCE_OFF;
32874aea 2680 }
2681 break;
2682 case IDC_EDITBACKEND:
2683 case IDC_EDITYES:
2684 case IDC_EDITNO:
2685 if (HIWORD(wParam) == BN_CLICKED ||
2686 HIWORD(wParam) == BN_DOUBLECLICKED) {
2687 if (LOWORD(wParam) == IDC_EDITBACKEND)
5ecd7ad0 2688 cfg.localedit = AUTO;
32874aea 2689 if (LOWORD(wParam) == IDC_EDITYES)
5ecd7ad0 2690 cfg.localedit = FORCE_ON;
32874aea 2691 if (LOWORD(wParam) == IDC_EDITNO)
5ecd7ad0 2692 cfg.localedit = FORCE_OFF;
32874aea 2693 }
2694 break;
2695 case IDC_ANSWEREDIT:
2696 if (HIWORD(wParam) == EN_CHANGE)
2697 GetDlgItemText(hwnd, IDC_ANSWEREDIT, cfg.answerback,
2698 sizeof(cfg.answerback) - 1);
2699 break;
2700 case IDC_ALWAYSONTOP:
2701 if (HIWORD(wParam) == BN_CLICKED ||
2702 HIWORD(wParam) == BN_DOUBLECLICKED)
2703 cfg.alwaysontop =
2704 IsDlgButtonChecked(hwnd, IDC_ALWAYSONTOP);
2705 break;
8f57d753 2706 case IDC_FULLSCREENONALTENTER:
2707 if (HIWORD(wParam) == BN_CLICKED ||
2708 HIWORD(wParam) == BN_DOUBLECLICKED)
2709 cfg.fullscreenonaltenter =
2710 IsDlgButtonChecked(hwnd, IDC_FULLSCREENONALTENTER);
2711 break;
32874aea 2712 case IDC_SCROLLKEY:
2713 if (HIWORD(wParam) == BN_CLICKED ||
2714 HIWORD(wParam) == BN_DOUBLECLICKED)
2715 cfg.scroll_on_key =
2716 IsDlgButtonChecked(hwnd, IDC_SCROLLKEY);
2717 break;
2718 case IDC_SCROLLDISP:
2719 if (HIWORD(wParam) == BN_CLICKED ||
2720 HIWORD(wParam) == BN_DOUBLECLICKED)
2721 cfg.scroll_on_disp =
2722 IsDlgButtonChecked(hwnd, IDC_SCROLLDISP);
2723 break;
2724 case IDC_COMPOSEKEY:
2725 if (HIWORD(wParam) == BN_CLICKED ||
2726 HIWORD(wParam) == BN_DOUBLECLICKED)
2727 cfg.compose_key =
2728 IsDlgButtonChecked(hwnd, IDC_COMPOSEKEY);
2729 break;
2730 case IDC_CTRLALTKEYS:
2731 if (HIWORD(wParam) == BN_CLICKED ||
2732 HIWORD(wParam) == BN_DOUBLECLICKED)
2733 cfg.ctrlaltkeys =
2734 IsDlgButtonChecked(hwnd, IDC_CTRLALTKEYS);
2735 break;
a5f3e637 2736 case IDC_TELNETKEY:
2737 if (HIWORD(wParam) == BN_CLICKED ||
2738 HIWORD(wParam) == BN_DOUBLECLICKED)
2739 cfg.telnet_keyboard =
2740 IsDlgButtonChecked(hwnd, IDC_TELNETKEY);
2741 break;
eee63b77 2742 case IDC_TELNETRET:
2743 if (HIWORD(wParam) == BN_CLICKED ||
2744 HIWORD(wParam) == BN_DOUBLECLICKED)
2745 cfg.telnet_newline =
2746 IsDlgButtonChecked(hwnd, IDC_TELNETRET);
2747 break;
32874aea 2748 case IDC_WRAPMODE:
2749 if (HIWORD(wParam) == BN_CLICKED ||
2750 HIWORD(wParam) == BN_DOUBLECLICKED)
2751 cfg.wrap_mode =
2752 IsDlgButtonChecked(hwnd, IDC_WRAPMODE);
2753 break;
2754 case IDC_DECOM:
2755 if (HIWORD(wParam) == BN_CLICKED ||
2756 HIWORD(wParam) == BN_DOUBLECLICKED)
2757 cfg.dec_om = IsDlgButtonChecked(hwnd, IDC_DECOM);
2758 break;
2759 case IDC_LFHASCR:
2760 if (HIWORD(wParam) == BN_CLICKED ||
2761 HIWORD(wParam) == BN_DOUBLECLICKED)
2762 cfg.lfhascr =
2763 IsDlgButtonChecked(hwnd, IDC_LFHASCR);
2764 break;
2765 case IDC_ROWSEDIT:
2766 if (HIWORD(wParam) == EN_CHANGE)
2767 MyGetDlgItemInt(hwnd, IDC_ROWSEDIT, &cfg.height);
2768 break;
2769 case IDC_COLSEDIT:
2770 if (HIWORD(wParam) == EN_CHANGE)
2771 MyGetDlgItemInt(hwnd, IDC_COLSEDIT, &cfg.width);
2772 break;
2773 case IDC_SAVEEDIT:
2774 if (HIWORD(wParam) == EN_CHANGE)
2775 MyGetDlgItemInt(hwnd, IDC_SAVEEDIT, &cfg.savelines);
2776 break;
2777 case IDC_CHOOSEFONT:
c0a18295 2778 {
2779 HDC hdc = GetDC(0);
9a30e26b 2780 lf.lfHeight = -MulDiv(cfg.font.height,
c0a18295 2781 GetDeviceCaps(hdc, LOGPIXELSY),
2782 72);
2783 ReleaseDC(0, hdc);
2784 }
32874aea 2785 lf.lfWidth = lf.lfEscapement = lf.lfOrientation = 0;
2786 lf.lfItalic = lf.lfUnderline = lf.lfStrikeOut = 0;
9a30e26b 2787 lf.lfWeight = (cfg.font.isbold ? FW_BOLD : 0);
2788 lf.lfCharSet = cfg.font.charset;
32874aea 2789 lf.lfOutPrecision = OUT_DEFAULT_PRECIS;
2790 lf.lfClipPrecision = CLIP_DEFAULT_PRECIS;
2791 lf.lfQuality = DEFAULT_QUALITY;
2792 lf.lfPitchAndFamily = FIXED_PITCH | FF_DONTCARE;
9a30e26b 2793 strncpy(lf.lfFaceName, cfg.font.name,
32874aea 2794 sizeof(lf.lfFaceName) - 1);
2795 lf.lfFaceName[sizeof(lf.lfFaceName) - 1] = '\0';
2796
2797 cf.lStructSize = sizeof(cf);
2798 cf.hwndOwner = hwnd;
2799 cf.lpLogFont = &lf;
2800 cf.Flags = CF_FIXEDPITCHONLY | CF_FORCEFONTEXIST |
2801 CF_INITTOLOGFONTSTRUCT | CF_SCREENFONTS;
2802
2803 if (ChooseFont(&cf)) {
9a30e26b 2804 strncpy(cfg.font.name, lf.lfFaceName,
2805 sizeof(cfg.font.name) - 1);
2806 cfg.font.name[sizeof(cfg.font.name) - 1] = '\0';
2807 cfg.font.isbold = (lf.lfWeight == FW_BOLD);
2808 cfg.font.charset = lf.lfCharSet;
2809 cfg.font.height = cf.iPointSize / 10;
32874aea 2810 fmtfont(fontstatic);
2811 SetDlgItemText(hwnd, IDC_FONTSTATIC, fontstatic);
2812 }
2813 break;
2814 case IDC_BELL_DISABLED:
2815 case IDC_BELL_DEFAULT:
2816 case IDC_BELL_WAVEFILE:
2817 case IDC_BELL_VISUAL:
2818 if (HIWORD(wParam) == BN_CLICKED ||
2819 HIWORD(wParam) == BN_DOUBLECLICKED) {
2820 if (LOWORD(wParam) == IDC_BELL_DISABLED)
2821 cfg.beep = BELL_DISABLED;
2822 if (LOWORD(wParam) == IDC_BELL_DEFAULT)
2823 cfg.beep = BELL_DEFAULT;
2824 if (LOWORD(wParam) == IDC_BELL_WAVEFILE)
2825 cfg.beep = BELL_WAVEFILE;
2826 if (LOWORD(wParam) == IDC_BELL_VISUAL)
2827 cfg.beep = BELL_VISUAL;
2828 }
2829 break;
f8a28d1f 2830 case IDC_B_IND_DISABLED:
2831 case IDC_B_IND_FLASH:
2832 case IDC_B_IND_STEADY:
2833 if (HIWORD(wParam) == BN_CLICKED ||
2834 HIWORD(wParam) == BN_DOUBLECLICKED) {
2835 if (LOWORD(wParam) == IDC_B_IND_DISABLED)
2836 cfg.beep_ind = B_IND_DISABLED;
2837 if (LOWORD(wParam) == IDC_B_IND_FLASH)
2838 cfg.beep_ind = B_IND_FLASH;
2839 if (LOWORD(wParam) == IDC_B_IND_STEADY)
2840 cfg.beep_ind = B_IND_STEADY;
2841 }
2842 break;
32874aea 2843 case IDC_BELL_WAVEBROWSE:
2844 memset(&of, 0, sizeof(of));
03169ad0 2845#ifdef OPENFILENAME_SIZE_VERSION_400
32874aea 2846 of.lStructSize = OPENFILENAME_SIZE_VERSION_400;
03169ad0 2847#else
32874aea 2848 of.lStructSize = sizeof(of);
03169ad0 2849#endif
32874aea 2850 of.hwndOwner = hwnd;
b1ccd98e 2851 of.lpstrFilter = "Wave Files (*.wav)\0*.WAV\0"
2852 "All Files (*.*)\0*\0\0\0";
32874aea 2853 of.lpstrCustomFilter = NULL;
2854 of.nFilterIndex = 1;
2855 of.lpstrFile = filename;
9a30e26b 2856 strcpy(filename, cfg.bell_wavefile.path);
32874aea 2857 of.nMaxFile = sizeof(filename);
2858 of.lpstrFileTitle = NULL;
2859 of.lpstrInitialDir = NULL;
2860 of.lpstrTitle = "Select Bell Sound File";
2861 of.Flags = 0;
2862 if (GetOpenFileName(&of)) {
9a30e26b 2863 strcpy(cfg.bell_wavefile.path, filename);
32874aea 2864 SetDlgItemText(hwnd, IDC_BELL_WAVEEDIT,
9a30e26b 2865 cfg.bell_wavefile.path);
32874aea 2866 }
2867 break;
2868 case IDC_BELL_WAVEEDIT:
2869 if (HIWORD(wParam) == EN_CHANGE)
2870 GetDlgItemText(hwnd, IDC_BELL_WAVEEDIT,
9a30e26b 2871 cfg.bell_wavefile.path,
2872 sizeof(cfg.bell_wavefile.path) - 1);
32874aea 2873 break;
2874 case IDC_BELLOVL:
2875 if (HIWORD(wParam) == BN_CLICKED ||
2876 HIWORD(wParam) == BN_DOUBLECLICKED)
2877 cfg.bellovl =
2878 IsDlgButtonChecked(hwnd, IDC_BELLOVL);
2879 break;
2880 case IDC_BELLOVLN:
2881 if (HIWORD(wParam) == EN_CHANGE)
2882 MyGetDlgItemInt(hwnd, IDC_BELLOVLN, &cfg.bellovl_n);
2883 break;
2884 case IDC_BELLOVLT:
2885 if (HIWORD(wParam) == EN_CHANGE)
2886 MyGetDlgItemFlt(hwnd, IDC_BELLOVLT, &cfg.bellovl_t,
2887 1000);
2888 break;
2889 case IDC_BELLOVLS:
2890 if (HIWORD(wParam) == EN_CHANGE)
2891 MyGetDlgItemFlt(hwnd, IDC_BELLOVLS, &cfg.bellovl_s,
2892 1000);
2893 break;
2894 case IDC_BLINKTEXT:
2895 if (HIWORD(wParam) == BN_CLICKED ||
2896 HIWORD(wParam) == BN_DOUBLECLICKED)
2897 cfg.blinktext =
2898 IsDlgButtonChecked(hwnd, IDC_BLINKTEXT);
2899 break;
2900 case IDC_BCE:
2901 if (HIWORD(wParam) == BN_CLICKED ||
2902 HIWORD(wParam) == BN_DOUBLECLICKED)
2903 cfg.bce = IsDlgButtonChecked(hwnd, IDC_BCE);
2904 break;
2905 case IDC_WINNAME:
2906 if (HIWORD(wParam) == BN_CLICKED ||
2907 HIWORD(wParam) == BN_DOUBLECLICKED)
2908 cfg.win_name_always =
b40578c8 2909 !IsDlgButtonChecked(hwnd, IDC_WINNAME);
32874aea 2910 break;
2911 case IDC_HIDEMOUSE:
2912 if (HIWORD(wParam) == BN_CLICKED ||
2913 HIWORD(wParam) == BN_DOUBLECLICKED)
2914 cfg.hide_mouseptr =
2915 IsDlgButtonChecked(hwnd, IDC_HIDEMOUSE);
2916 break;
2917 case IDC_SUNKENEDGE:
2918 if (HIWORD(wParam) == BN_CLICKED ||
2919 HIWORD(wParam) == BN_DOUBLECLICKED)
2920 cfg.sunken_edge =
2921 IsDlgButtonChecked(hwnd, IDC_SUNKENEDGE);
2922 break;
5a73255e 2923 case IDC_WINBEDIT:
2924 if (HIWORD(wParam) == EN_CHANGE)
2925 MyGetDlgItemInt(hwnd, IDC_WINBEDIT,
2926 &cfg.window_border);
2927 if (cfg.window_border > 32)
2928 cfg.window_border = 32;
2929 break;
32874aea 2930 case IDC_CURBLOCK:
2931 if (HIWORD(wParam) == BN_CLICKED ||
2932 HIWORD(wParam) == BN_DOUBLECLICKED)
2933 cfg.cursor_type = 0;
2934 break;
2935 case IDC_CURUNDER:
2936 if (HIWORD(wParam) == BN_CLICKED ||
2937 HIWORD(wParam) == BN_DOUBLECLICKED)
2938 cfg.cursor_type = 1;
2939 break;
2940 case IDC_CURVERT:
2941 if (HIWORD(wParam) == BN_CLICKED ||
2942 HIWORD(wParam) == BN_DOUBLECLICKED)
2943 cfg.cursor_type = 2;
2944 break;
2945 case IDC_BLINKCUR:
2946 if (HIWORD(wParam) == BN_CLICKED ||
2947 HIWORD(wParam) == BN_DOUBLECLICKED)
2948 cfg.blink_cur =
2949 IsDlgButtonChecked(hwnd, IDC_BLINKCUR);
2950 break;
2951 case IDC_SCROLLBAR:
2952 if (HIWORD(wParam) == BN_CLICKED ||
2953 HIWORD(wParam) == BN_DOUBLECLICKED)
2954 cfg.scrollbar =
2955 IsDlgButtonChecked(hwnd, IDC_SCROLLBAR);
2956 break;
a401e5f3 2957 case IDC_SCROLLBARFULLSCREEN:
2958 if (HIWORD(wParam) == BN_CLICKED ||
2959 HIWORD(wParam) == BN_DOUBLECLICKED)
2960 cfg.scrollbar_in_fullscreen =
2961 IsDlgButtonChecked(hwnd, IDC_SCROLLBARFULLSCREEN);
2962 break;
ad5c93cc 2963 case IDC_RESIZETERM:
2964 case IDC_RESIZEFONT:
2965 case IDC_RESIZENONE:
0ed2f48e 2966 case IDC_RESIZEEITHER:
32874aea 2967 if (HIWORD(wParam) == BN_CLICKED ||
ad5c93cc 2968 HIWORD(wParam) == BN_DOUBLECLICKED) {
2969 cfg.resize_action =
2970 IsDlgButtonChecked(hwnd,
2971 IDC_RESIZETERM) ? RESIZE_TERM :
2972 IsDlgButtonChecked(hwnd,
2973 IDC_RESIZEFONT) ? RESIZE_FONT :
0ed2f48e 2974 IsDlgButtonChecked(hwnd,
2975 IDC_RESIZEEITHER) ? RESIZE_EITHER :
ad5c93cc 2976 RESIZE_DISABLED;
2977 }
5a73255e 2978 break;
32874aea 2979 case IDC_WINEDIT:
2980 if (HIWORD(wParam) == EN_CHANGE)
2981 GetDlgItemText(hwnd, IDC_WINEDIT, cfg.wintitle,
2982 sizeof(cfg.wintitle) - 1);
2983 break;
2984 case IDC_COEALWAYS:
2985 case IDC_COENEVER:
2986 case IDC_COENORMAL:
2987 if (HIWORD(wParam) == BN_CLICKED ||
2988 HIWORD(wParam) == BN_DOUBLECLICKED) {
2989 cfg.close_on_exit =
2990 IsDlgButtonChecked(hwnd,
5ecd7ad0 2991 IDC_COEALWAYS) ? FORCE_ON :
32874aea 2992 IsDlgButtonChecked(hwnd,
5ecd7ad0 2993 IDC_COENEVER) ? FORCE_OFF :
2994 AUTO;
32874aea 2995 }
2996 break;
2997 case IDC_CLOSEWARN:
2998 if (HIWORD(wParam) == BN_CLICKED ||
2999 HIWORD(wParam) == BN_DOUBLECLICKED)
3000 cfg.warn_on_close =
3001 IsDlgButtonChecked(hwnd, IDC_CLOSEWARN);
3002 break;
3003 case IDC_TTEDIT:
3004 if (HIWORD(wParam) == EN_CHANGE)
3005 GetDlgItemText(hwnd, IDC_TTEDIT, cfg.termtype,
3006 sizeof(cfg.termtype) - 1);
3007 break;
8eebd221 3008
3009 /* proxy config */
3010 case IDC_PROXYHOSTEDIT:
3011 if (HIWORD(wParam) == EN_CHANGE)
3012 GetDlgItemText(hwnd, IDC_PROXYHOSTEDIT, cfg.proxy_host,
3013 sizeof(cfg.proxy_host) - 1);
3014 break;
3015 case IDC_PROXYPORTEDIT:
3016 if (HIWORD(wParam) == EN_CHANGE) {
3017 GetDlgItemText(hwnd, IDC_PROXYPORTEDIT, portname, 31);
3018 if (isdigit(portname[0]))
3019 MyGetDlgItemInt(hwnd, IDC_PROXYPORTEDIT, &cfg.proxy_port);
3020 else {
3021 service = getservbyname(portname, NULL);
3022 if (service)
3023 cfg.proxy_port = ntohs(service->s_port);
3024 else
3025 cfg.proxy_port = 0;
3026 }
3027 }
3028 break;
3029 case IDC_PROXYEXCLUDEEDIT:
3030 if (HIWORD(wParam) == EN_CHANGE)
3031 GetDlgItemText(hwnd, IDC_PROXYEXCLUDEEDIT,
3032 cfg.proxy_exclude_list,
3033 sizeof(cfg.proxy_exclude_list) - 1);
3034 break;
3035 case IDC_PROXYUSEREDIT:
3036 if (HIWORD(wParam) == EN_CHANGE)
3037 GetDlgItemText(hwnd, IDC_PROXYUSEREDIT,
3038 cfg.proxy_username,
3039 sizeof(cfg.proxy_username) - 1);
3040 break;
3041 case IDC_PROXYPASSEDIT:
3042 if (HIWORD(wParam) == EN_CHANGE)
3043 GetDlgItemText(hwnd, IDC_PROXYPASSEDIT,
3044 cfg.proxy_password,
3045 sizeof(cfg.proxy_password) - 1);
3046 break;
3047 case IDC_PROXYTELNETCMDEDIT:
3048 if (HIWORD(wParam) == EN_CHANGE)
3049 GetDlgItemText(hwnd, IDC_PROXYTELNETCMDEDIT,
3050 cfg.proxy_telnet_command,
3051 sizeof(cfg.proxy_telnet_command) - 1);
3052 break;
3053 case IDC_PROXYSOCKSVER5:
3054 case IDC_PROXYSOCKSVER4:
3055 if (HIWORD(wParam) == BN_CLICKED ||
3056 HIWORD(wParam) == BN_DOUBLECLICKED) {
3057 cfg.proxy_socks_version =
3058 IsDlgButtonChecked(hwnd, IDC_PROXYSOCKSVER4) ? 4 : 5;
3059 }
3060 break;
b804e1e5 3061 case IDC_PROXYLOCALHOST:
3062 if (HIWORD(wParam) == BN_CLICKED ||
3063 HIWORD(wParam) == BN_DOUBLECLICKED)
3064 cfg.even_proxy_localhost =
3065 IsDlgButtonChecked(hwnd, IDC_PROXYLOCALHOST);
3066 break;
b7a189f3 3067 case IDC_PROXYDNSNO:
3068 case IDC_PROXYDNSAUTO:
3069 case IDC_PROXYDNSYES:
3070 if (HIWORD(wParam) == BN_CLICKED ||
3071 HIWORD(wParam) == BN_DOUBLECLICKED) {
3072 cfg.proxy_dns =
5ecd7ad0 3073 IsDlgButtonChecked(hwnd, IDC_PROXYDNSNO) ? FORCE_OFF :
3074 IsDlgButtonChecked(hwnd, IDC_PROXYDNSYES) ? FORCE_ON :
3075 AUTO;
b7a189f3 3076 }
3077 break;
8eebd221 3078 case IDC_PROXYTYPENONE:
3079 case IDC_PROXYTYPEHTTP:
3080 case IDC_PROXYTYPESOCKS:
3081 case IDC_PROXYTYPETELNET:
3082 if (HIWORD(wParam) == BN_CLICKED ||
3083 HIWORD(wParam) == BN_DOUBLECLICKED) {
3084 cfg.proxy_type =
3085 IsDlgButtonChecked(hwnd, IDC_PROXYTYPEHTTP) ? PROXY_HTTP :
3086 IsDlgButtonChecked(hwnd, IDC_PROXYTYPESOCKS) ? PROXY_SOCKS :
3087 IsDlgButtonChecked(hwnd, IDC_PROXYTYPETELNET) ? PROXY_TELNET :
3088 PROXY_NONE;
3089 }
3090 break;
3091
32874aea 3092 case IDC_LGFEDIT:
3093 if (HIWORD(wParam) == EN_CHANGE)
9a30e26b 3094 GetDlgItemText(hwnd, IDC_LGFEDIT, cfg.logfilename.path,
3095 sizeof(cfg.logfilename.path) - 1);
32874aea 3096 break;
3097 case IDC_LGFBUTTON:
3098 memset(&of, 0, sizeof(of));
e1c8e0ed 3099#ifdef OPENFILENAME_SIZE_VERSION_400
32874aea 3100 of.lStructSize = OPENFILENAME_SIZE_VERSION_400;
e1c8e0ed 3101#else
32874aea 3102 of.lStructSize = sizeof(of);
e1c8e0ed 3103#endif
32874aea 3104 of.hwndOwner = hwnd;
b1ccd98e 3105 of.lpstrFilter = "All Files (*.*)\0*\0\0\0";
32874aea 3106 of.lpstrCustomFilter = NULL;
3107 of.nFilterIndex = 1;
3108 of.lpstrFile = filename;
9a30e26b 3109 strcpy(filename, cfg.logfilename.path);
32874aea 3110 of.nMaxFile = sizeof(filename);
3111 of.lpstrFileTitle = NULL;
3112 of.lpstrInitialDir = NULL;
3113 of.lpstrTitle = "Select session log file";
3114 of.Flags = 0;
3115 if (GetSaveFileName(&of)) {
9a30e26b 3116 strcpy(cfg.logfilename.path, filename);
3117 SetDlgItemText(hwnd, IDC_LGFEDIT, cfg.logfilename.path);
374330e2 3118 }
32874aea 3119 break;
3120 case IDC_LSTATOFF:
3121 case IDC_LSTATASCII:
3122 case IDC_LSTATRAW:
00db133f 3123 case IDC_LSTATPACKET:
32874aea 3124 if (HIWORD(wParam) == BN_CLICKED ||
3125 HIWORD(wParam) == BN_DOUBLECLICKED) {
3126 if (IsDlgButtonChecked(hwnd, IDC_LSTATOFF))
00db133f 3127 cfg.logtype = LGTYP_NONE;
32874aea 3128 if (IsDlgButtonChecked(hwnd, IDC_LSTATASCII))
00db133f 3129 cfg.logtype = LGTYP_ASCII;
32874aea 3130 if (IsDlgButtonChecked(hwnd, IDC_LSTATRAW))
00db133f 3131 cfg.logtype = LGTYP_DEBUG;
3132 if (IsDlgButtonChecked(hwnd, IDC_LSTATPACKET))
3133 cfg.logtype = LGTYP_PACKETS;
374330e2 3134 }
32874aea 3135 break;
3136 case IDC_LSTATXASK:
3137 case IDC_LSTATXAPN:
3138 case IDC_LSTATXOVR:
3139 if (HIWORD(wParam) == BN_CLICKED ||
3140 HIWORD(wParam) == BN_DOUBLECLICKED) {
3141 if (IsDlgButtonChecked(hwnd, IDC_LSTATXASK))
3142 cfg.logxfovr = LGXF_ASK;
3143 if (IsDlgButtonChecked(hwnd, IDC_LSTATXAPN))
3144 cfg.logxfovr = LGXF_APN;
3145 if (IsDlgButtonChecked(hwnd, IDC_LSTATXOVR))
3146 cfg.logxfovr = LGXF_OVR;
374330e2 3147 }
32874aea 3148 break;
3149 case IDC_TSEDIT:
3150 case IDC_R_TSEDIT:
3151 if (HIWORD(wParam) == EN_CHANGE)
3152 GetDlgItemText(hwnd, LOWORD(wParam), cfg.termspeed,
3153 sizeof(cfg.termspeed) - 1);
3154 break;
3155 case IDC_LOGEDIT:
3156 if (HIWORD(wParam) == EN_CHANGE)
3157 GetDlgItemText(hwnd, IDC_LOGEDIT, cfg.username,
3158 sizeof(cfg.username) - 1);
3159 break;
3160 case IDC_RLLUSEREDIT:
3161 if (HIWORD(wParam) == EN_CHANGE)
3162 GetDlgItemText(hwnd, IDC_RLLUSEREDIT,
3163 cfg.localusername,
3164 sizeof(cfg.localusername) - 1);
3165 break;
3166 case IDC_EMBSD:
3167 case IDC_EMRFC:
3168 cfg.rfc_environ = IsDlgButtonChecked(hwnd, IDC_EMRFC);
3169 break;
8faa456c 3170 case IDC_TPASSIVE:
3171 case IDC_TACTIVE:
3172 cfg.passive_telnet =
3173 IsDlgButtonChecked(hwnd, IDC_TPASSIVE);
3174 break;
32874aea 3175 case IDC_ENVADD:
3176 if (HIWORD(wParam) == BN_CLICKED ||
3177 HIWORD(wParam) == BN_DOUBLECLICKED) {
3178 char str[sizeof(cfg.environmt)];
3179 char *p;
3180 GetDlgItemText(hwnd, IDC_VAREDIT, str,
3181 sizeof(str) - 1);
3182 if (!*str) {
3183 MessageBeep(0);
3184 break;
3185 }
3186 p = str + strlen(str);
3187 *p++ = '\t';
3188 GetDlgItemText(hwnd, IDC_VALEDIT, p,
3189 sizeof(str) - 1 - (p - str));
3190 if (!*p) {
3191 MessageBeep(0);
3192 break;
3193 }
3194 p = cfg.environmt;
3195 while (*p) {
3196 while (*p)
3197 p++;
3198 p++;
3199 }
3200 if ((p - cfg.environmt) + strlen(str) + 2 <
3201 sizeof(cfg.environmt)) {
3202 strcpy(p, str);
3203 p[strlen(str) + 1] = '\0';
3204 SendDlgItemMessage(hwnd, IDC_ENVLIST, LB_ADDSTRING,
3205 0, (LPARAM) str);
3206 SetDlgItemText(hwnd, IDC_VAREDIT, "");
3207 SetDlgItemText(hwnd, IDC_VALEDIT, "");
3208 } else {
3209 MessageBox(hwnd, "Environment too big",
3210 "PuTTY Error", MB_OK | MB_ICONERROR);
3211 }
374330e2 3212 }
32874aea 3213 break;
3214 case IDC_ENVREMOVE:
3215 if (HIWORD(wParam) != BN_CLICKED &&
3216 HIWORD(wParam) != BN_DOUBLECLICKED) break;
3217 i =
3218 SendDlgItemMessage(hwnd, IDC_ENVLIST, LB_GETCURSEL, 0,
3219 0);
3220 if (i == LB_ERR)
3221 MessageBeep(0);
3222 else {
3223 char *p, *q;
3224
3225 SendDlgItemMessage(hwnd, IDC_ENVLIST, LB_DELETESTRING,
3226 i, 0);
3227 p = cfg.environmt;
3228 while (i > 0) {
3229 if (!*p)
3230 goto disaster;
3231 while (*p)
3232 p++;
3233 p++;
3234 i--;
3235 }
3236 q = p;
374330e2 3237 if (!*p)
3238 goto disaster;
374330e2 3239 while (*p)
32874aea 3240 p++;
3241 p++;
3242 while (*p) {
3243 while (*p)
3244 *q++ = *p++;
374330e2 3245 *q++ = *p++;
32874aea 3246 }
3247 *q = '\0';
3248 disaster:;
374330e2 3249 }
32874aea 3250 break;
3251 case IDC_NOPTY:
3252 if (HIWORD(wParam) == BN_CLICKED ||
3253 HIWORD(wParam) == BN_DOUBLECLICKED)
3254 cfg.nopty = IsDlgButtonChecked(hwnd, IDC_NOPTY);
3255 break;
3256 case IDC_COMPRESS:
3257 if (HIWORD(wParam) == BN_CLICKED ||
3258 HIWORD(wParam) == BN_DOUBLECLICKED)
3259 cfg.compression =
3260 IsDlgButtonChecked(hwnd, IDC_COMPRESS);
3261 break;
cb4d4768 3262 case IDC_SSH2DES:
3263 if (HIWORD(wParam) == BN_CLICKED ||
3264 HIWORD(wParam) == BN_DOUBLECLICKED)
3265 cfg.ssh2_des_cbc =
3266 IsDlgButtonChecked(hwnd, IDC_SSH2DES);
3267 break;
32874aea 3268 case IDC_AGENTFWD:
3269 if (HIWORD(wParam) == BN_CLICKED ||
3270 HIWORD(wParam) == BN_DOUBLECLICKED)
3271 cfg.agentfwd =
3272 IsDlgButtonChecked(hwnd, IDC_AGENTFWD);
3273 break;
5bb641e1 3274 case IDC_CHANGEUSER:
3275 if (HIWORD(wParam) == BN_CLICKED ||
3276 HIWORD(wParam) == BN_DOUBLECLICKED)
3277 cfg.change_username =
3278 IsDlgButtonChecked(hwnd, IDC_CHANGEUSER);
3279 break;
ca20bfcf 3280 case IDC_CIPHERLIST:
3281 case IDC_CIPHERUP:
3282 case IDC_CIPHERDN:
3283 handle_prefslist(&cipherlist,
3284 cfg.ssh_cipherlist, CIPHER_MAX,
3285 0, hwnd, wParam, lParam);
32874aea 3286 break;
38d228a2 3287 case IDC_SSHPROT1ONLY:
32874aea 3288 case IDC_SSHPROT1:
3289 case IDC_SSHPROT2:
759712a6 3290 case IDC_SSHPROT2ONLY:
32874aea 3291 if (HIWORD(wParam) == BN_CLICKED ||
3292 HIWORD(wParam) == BN_DOUBLECLICKED) {
38d228a2 3293 if (IsDlgButtonChecked(hwnd, IDC_SSHPROT1ONLY))
3294 cfg.sshprot = 0;
32874aea 3295 if (IsDlgButtonChecked(hwnd, IDC_SSHPROT1))
3296 cfg.sshprot = 1;
3297 else if (IsDlgButtonChecked(hwnd, IDC_SSHPROT2))
3298 cfg.sshprot = 2;
759712a6 3299 else if (IsDlgButtonChecked(hwnd, IDC_SSHPROT2ONLY))
3300 cfg.sshprot = 3;
32874aea 3301 }
3302 break;
3303 case IDC_AUTHTIS:
3304 if (HIWORD(wParam) == BN_CLICKED ||
3305 HIWORD(wParam) == BN_DOUBLECLICKED)
3306 cfg.try_tis_auth =
3307 IsDlgButtonChecked(hwnd, IDC_AUTHTIS);
3308 break;
f091e308 3309 case IDC_AUTHKI:
3310 if (HIWORD(wParam) == BN_CLICKED ||
3311 HIWORD(wParam) == BN_DOUBLECLICKED)
3312 cfg.try_ki_auth =
3313 IsDlgButtonChecked(hwnd, IDC_AUTHKI);
3314 break;
32874aea 3315 case IDC_PKEDIT:
3316 if (HIWORD(wParam) == EN_CHANGE)
9a30e26b 3317 GetDlgItemText(hwnd, IDC_PKEDIT, cfg.keyfile.path,
3318 sizeof(cfg.keyfile.path) - 1);
32874aea 3319 break;
3320 case IDC_CMDEDIT:
3321 if (HIWORD(wParam) == EN_CHANGE)
3322 GetDlgItemText(hwnd, IDC_CMDEDIT, cfg.remote_cmd,
3323 sizeof(cfg.remote_cmd) - 1);
3324 break;
3325 case IDC_PKBUTTON:
3326 memset(&of, 0, sizeof(of));
7cca0d81 3327#ifdef OPENFILENAME_SIZE_VERSION_400
32874aea 3328 of.lStructSize = OPENFILENAME_SIZE_VERSION_400;
7cca0d81 3329#else
32874aea 3330 of.lStructSize = sizeof(of);
7cca0d81 3331#endif
32874aea 3332 of.hwndOwner = hwnd;
b1ccd98e 3333 of.lpstrFilter = "PuTTY Private Key Files (*.ppk)\0*.ppk\0"
3334 "All Files (*.*)\0*\0\0\0";
32874aea 3335 of.lpstrCustomFilter = NULL;
3336 of.nFilterIndex = 1;
3337 of.lpstrFile = filename;
9a30e26b 3338 strcpy(filename, cfg.keyfile.path);
32874aea 3339 of.nMaxFile = sizeof(filename);
3340 of.lpstrFileTitle = NULL;
3341 of.lpstrInitialDir = NULL;
7c0f5956 3342 of.lpstrTitle = "Select Private Key File";
32874aea 3343 of.Flags = 0;
3344 if (GetOpenFileName(&of)) {
9a30e26b 3345 strcpy(cfg.keyfile.path, filename);
3346 SetDlgItemText(hwnd, IDC_PKEDIT, cfg.keyfile.path);
374330e2 3347 }
32874aea 3348 break;
3349 case IDC_RAWCNP:
3350 cfg.rawcnp = IsDlgButtonChecked(hwnd, IDC_RAWCNP);
b90840c3 3351 break;
a7419ea4 3352 case IDC_RTFPASTE:
3353 cfg.rtf_paste = IsDlgButtonChecked(hwnd, IDC_RTFPASTE);
3354 break;
32874aea 3355 case IDC_MBWINDOWS:
3356 case IDC_MBXTERM:
3357 cfg.mouse_is_xterm = IsDlgButtonChecked(hwnd, IDC_MBXTERM);
3358 break;
6908fed7 3359 case IDC_SELTYPELEX:
3360 case IDC_SELTYPERECT:
3361 cfg.rect_select = IsDlgButtonChecked(hwnd, IDC_SELTYPERECT);
3362 break;
b90840c3 3363 case IDC_MOUSEOVERRIDE:
3364 cfg.mouse_override = IsDlgButtonChecked(hwnd, IDC_MOUSEOVERRIDE);
3365 break;
32874aea 3366 case IDC_CCSET:
3367 {
3368 BOOL ok;
3369 int i;
3370 int n = GetDlgItemInt(hwnd, IDC_CCEDIT, &ok, FALSE);
3371
3372 if (!ok)
3373 MessageBeep(0);
3374 else {
4eeb7d09 3375 for (i = 0; i < 128; i++)
32874aea 3376 if (SendDlgItemMessage
3377 (hwnd, IDC_CCLIST, LB_GETSEL, i, 0)) {
3378 char str[100];
3379 cfg.wordness[i] = n;
3380 SendDlgItemMessage(hwnd, IDC_CCLIST,
3381 LB_DELETESTRING, i, 0);
3382 sprintf(str, "%d\t(0x%02X)\t%c\t%d", i, i,
3383 (i >= 0x21 && i != 0x7F) ? i : ' ',
3384 cfg.wordness[i]);
3385 SendDlgItemMessage(hwnd, IDC_CCLIST,
3386 LB_INSERTSTRING, i,
3387 (LPARAM) str);
3388 }
3389 }
374330e2 3390 }
32874aea 3391 break;
3392 case IDC_BOLDCOLOUR:
3393 if (HIWORD(wParam) == BN_CLICKED ||
3394 HIWORD(wParam) == BN_DOUBLECLICKED) {
3395 int n, i;
3396 cfg.bold_colour =
3397 IsDlgButtonChecked(hwnd, IDC_BOLDCOLOUR);
374330e2 3398 }
32874aea 3399 break;
3400 case IDC_PALETTE:
3401 if (HIWORD(wParam) == BN_CLICKED ||
3402 HIWORD(wParam) == BN_DOUBLECLICKED)
3403 cfg.try_palette =
3404 IsDlgButtonChecked(hwnd, IDC_PALETTE);
3405 break;
3406 case IDC_COLOURLIST:
3407 if (HIWORD(wParam) == LBN_DBLCLK ||
3408 HIWORD(wParam) == LBN_SELCHANGE) {
c8d7378d 3409 int i =
3410 SendDlgItemMessage(hwnd, IDC_COLOURLIST,
3411 LB_GETCURSEL,
3412 0, 0);
32874aea 3413 if (!cfg.bold_colour)
3414 i = (i < 3 ? i * 2 : i == 3 ? 5 : i * 2 - 2);
3415 SetDlgItemInt(hwnd, IDC_RVALUE, cfg.colours[i][0],
3416 FALSE);
3417 SetDlgItemInt(hwnd, IDC_GVALUE, cfg.colours[i][1],
3418 FALSE);
3419 SetDlgItemInt(hwnd, IDC_BVALUE, cfg.colours[i][2],
3420 FALSE);
3421 }
3422 break;
3423 case IDC_CHANGE:
3424 if (HIWORD(wParam) == BN_CLICKED ||
3425 HIWORD(wParam) == BN_DOUBLECLICKED) {
3426 static CHOOSECOLOR cc;
3427 static DWORD custom[16] = { 0 }; /* zero initialisers */
c8d7378d 3428 int i =
3429 SendDlgItemMessage(hwnd, IDC_COLOURLIST,
3430 LB_GETCURSEL,
3431 0, 0);
32874aea 3432 if (!cfg.bold_colour)
3433 i = (i < 3 ? i * 2 : i == 3 ? 5 : i * 2 - 2);
3434 cc.lStructSize = sizeof(cc);
3435 cc.hwndOwner = hwnd;
3436 cc.hInstance = (HWND) hinst;
3437 cc.lpCustColors = custom;
3438 cc.rgbResult =
3439 RGB(cfg.colours[i][0], cfg.colours[i][1],
3440 cfg.colours[i][2]);
3441 cc.Flags = CC_FULLOPEN | CC_RGBINIT;
3442 if (ChooseColor(&cc)) {
3443 cfg.colours[i][0] =
3444 (unsigned char) (cc.rgbResult & 0xFF);
3445 cfg.colours[i][1] =
3446 (unsigned char) (cc.rgbResult >> 8) & 0xFF;
3447 cfg.colours[i][2] =
3448 (unsigned char) (cc.rgbResult >> 16) & 0xFF;
3449 SetDlgItemInt(hwnd, IDC_RVALUE, cfg.colours[i][0],
3450 FALSE);
3451 SetDlgItemInt(hwnd, IDC_GVALUE, cfg.colours[i][1],
3452 FALSE);
3453 SetDlgItemInt(hwnd, IDC_BVALUE, cfg.colours[i][2],
3454 FALSE);
3455 }
3456 }
3457 break;
4eeb7d09 3458 case IDC_CODEPAGE:
875b193f 3459 if (HIWORD(wParam) == CBN_SELCHANGE) {
3460 int index = SendDlgItemMessage(hwnd, IDC_CODEPAGE,
3461 CB_GETCURSEL, 0, 0);
3462 SendDlgItemMessage(hwnd, IDC_CODEPAGE, CB_GETLBTEXT,
3463 index, (LPARAM)cfg.line_codepage);
b8ae1f0f 3464 } else if (HIWORD(wParam) == CBN_EDITCHANGE) {
3465 GetDlgItemText(hwnd, IDC_CODEPAGE, cfg.line_codepage,
3466 sizeof(cfg.line_codepage) - 1);
3467 } else if (HIWORD(wParam) == CBN_KILLFOCUS) {
3468 strcpy(cfg.line_codepage,
3469 cp_name(decode_codepage(cfg.line_codepage)));
3470 SetDlgItemText(hwnd, IDC_CODEPAGE, cfg.line_codepage);
32874aea 3471 }
3472 break;
b44b307a 3473 case IDC_PRINTER:
3474 if (HIWORD(wParam) == CBN_SELCHANGE) {
3475 int index = SendDlgItemMessage(hwnd, IDC_PRINTER,
3476 CB_GETCURSEL, 0, 0);
3477 SendDlgItemMessage(hwnd, IDC_PRINTER, CB_GETLBTEXT,
3478 index, (LPARAM)cfg.printer);
3479 } else if (HIWORD(wParam) == CBN_EDITCHANGE) {
3480 GetDlgItemText(hwnd, IDC_PRINTER, cfg.printer,
3481 sizeof(cfg.printer) - 1);
3482 }
3483 if (!strcmp(cfg.printer, PRINTER_DISABLED_STRING))
3484 *cfg.printer = '\0';
3485 break;
a9c02454 3486 case IDC_CAPSLOCKCYR:
3487 if (HIWORD(wParam) == BN_CLICKED ||
3488 HIWORD(wParam) == BN_DOUBLECLICKED) {
3489 cfg.xlat_capslockcyr =
3490 IsDlgButtonChecked (hwnd, IDC_CAPSLOCKCYR);
3491 }
3492 break;
32874aea 3493 case IDC_VTXWINDOWS:
3494 case IDC_VTOEMANSI:
3495 case IDC_VTOEMONLY:
3496 case IDC_VTPOORMAN:
4eeb7d09 3497 case IDC_VTUNICODE:
32874aea 3498 cfg.vtmode =
3499 (IsDlgButtonChecked(hwnd, IDC_VTXWINDOWS) ? VT_XWINDOWS
3500 : IsDlgButtonChecked(hwnd,
3501 IDC_VTOEMANSI) ? VT_OEMANSI :
3502 IsDlgButtonChecked(hwnd,
3503 IDC_VTOEMONLY) ? VT_OEMONLY :
4eeb7d09 3504 IsDlgButtonChecked(hwnd,
3505 IDC_VTUNICODE) ? VT_UNICODE :
32874aea 3506 VT_POORMAN);
3507 break;
3508 case IDC_X11_FORWARD:
3509 if (HIWORD(wParam) == BN_CLICKED ||
3510 HIWORD(wParam) == BN_DOUBLECLICKED)
beefa433 3511 cfg.x11_forward =
3512 IsDlgButtonChecked(hwnd, IDC_X11_FORWARD);
32874aea 3513 break;
d74d141c 3514 case IDC_LPORT_ALL:
3515 if (HIWORD(wParam) == BN_CLICKED ||
3516 HIWORD(wParam) == BN_DOUBLECLICKED)
beefa433 3517 cfg.lport_acceptall =
3518 IsDlgButtonChecked(hwnd, IDC_LPORT_ALL);
3519 break;
3520 case IDC_RPORT_ALL:
3521 if (HIWORD(wParam) == BN_CLICKED ||
3522 HIWORD(wParam) == BN_DOUBLECLICKED)
3523 cfg.rport_acceptall =
3524 IsDlgButtonChecked(hwnd, IDC_RPORT_ALL);
d74d141c 3525 break;
32874aea 3526 case IDC_X11_DISPLAY:
3527 if (HIWORD(wParam) == EN_CHANGE)
3528 GetDlgItemText(hwnd, IDC_X11_DISPLAY, cfg.x11_display,
3529 sizeof(cfg.x11_display) - 1);
3530 break;
b3ebaa28 3531 case IDC_X11MIT:
3532 case IDC_X11XDM:
3533 if (HIWORD(wParam) == BN_CLICKED ||
3534 HIWORD(wParam) == BN_DOUBLECLICKED) {
3535 if (IsDlgButtonChecked(hwnd, IDC_X11MIT))
3536 cfg.x11_auth = X11_MIT;
3537 else if (IsDlgButtonChecked(hwnd, IDC_X11XDM))
3538 cfg.x11_auth = X11_XDM;
3539 }
3540 break;
d74d141c 3541 case IDC_PFWDADD:
3542 if (HIWORD(wParam) == BN_CLICKED ||
3543 HIWORD(wParam) == BN_DOUBLECLICKED) {
3544 char str[sizeof(cfg.portfwd)];
3545 char *p;
3546 if (IsDlgButtonChecked(hwnd, IDC_PFWDLOCAL))
3547 str[0] = 'L';
3548 else
3549 str[0] = 'R';
3550 GetDlgItemText(hwnd, IDC_SPORTEDIT, str+1,
3551 sizeof(str) - 2);
3552 if (!str[1]) {
3553 MessageBox(hwnd,
3554 "You need to specify a source port number",
3555 "PuTTY Error", MB_OK | MB_ICONERROR);
3556 break;
3557 }
3558 p = str + strlen(str);
3559 *p++ = '\t';
3560 GetDlgItemText(hwnd, IDC_DPORTEDIT, p,
3561 sizeof(str) - 1 - (p - str));
3562 if (!*p || !strchr(p, ':')) {
3563 MessageBox(hwnd,
3564 "You need to specify a destination address\n"
3565 "in the form \"host.name:port\"",
3566 "PuTTY Error", MB_OK | MB_ICONERROR);
3567 break;
3568 }
3569 p = cfg.portfwd;
3570 while (*p) {
3571 while (*p)
3572 p++;
3573 p++;
3574 }
3575 if ((p - cfg.portfwd) + strlen(str) + 2 <
3576 sizeof(cfg.portfwd)) {
3577 strcpy(p, str);
3578 p[strlen(str) + 1] = '\0';
3579 SendDlgItemMessage(hwnd, IDC_PFWDLIST, LB_ADDSTRING,
3580 0, (LPARAM) str);
3581 SetDlgItemText(hwnd, IDC_SPORTEDIT, "");
3582 SetDlgItemText(hwnd, IDC_DPORTEDIT, "");
3583 } else {
3584 MessageBox(hwnd, "Too many forwardings",
3585 "PuTTY Error", MB_OK | MB_ICONERROR);
3586 }
3587 }
3588 break;
3589 case IDC_PFWDREMOVE:
3590 if (HIWORD(wParam) != BN_CLICKED &&
3591 HIWORD(wParam) != BN_DOUBLECLICKED) break;
3592 i = SendDlgItemMessage(hwnd, IDC_PFWDLIST,
3593 LB_GETCURSEL, 0, 0);
3594 if (i == LB_ERR)
3595 MessageBeep(0);
3596 else {
3597 char *p, *q;
3598
3599 SendDlgItemMessage(hwnd, IDC_PFWDLIST, LB_DELETESTRING,
3600 i, 0);
3601 p = cfg.portfwd;
3602 while (i > 0) {
3603 if (!*p)
3604 goto disaster2;
3605 while (*p)
3606 p++;
3607 p++;
3608 i--;
3609 }
3610 q = p;
3611 if (!*p)
3612 goto disaster2;
3613 while (*p)
3614 p++;
3615 p++;
3616 while (*p) {
3617 while (*p)
3618 *q++ = *p++;
3619 *q++ = *p++;
3620 }
3621 *q = '\0';
3622 disaster2:;
3623 }
3624 break;
2c9c6388 3625 case IDC_BUGD_IGNORE1:
3626 if (HIWORD(wParam) == CBN_SELCHANGE) {
3627 int index = SendDlgItemMessage(hwnd, IDC_BUGD_IGNORE1,
3628 CB_GETCURSEL, 0, 0);
5ecd7ad0 3629 cfg.sshbug_ignore1 = (index == 0 ? AUTO :
3630 index == 1 ? FORCE_OFF : FORCE_ON);
2c9c6388 3631 }
3632 break;
3633 case IDC_BUGD_PLAINPW1:
3634 if (HIWORD(wParam) == CBN_SELCHANGE) {
3635 int index = SendDlgItemMessage(hwnd, IDC_BUGD_PLAINPW1,
3636 CB_GETCURSEL, 0, 0);
5ecd7ad0 3637 cfg.sshbug_plainpw1 = (index == 0 ? AUTO :
3638 index == 1 ? FORCE_OFF : FORCE_ON);
2c9c6388 3639 }
3640 break;
3641 case IDC_BUGD_RSA1:
3642 if (HIWORD(wParam) == CBN_SELCHANGE) {
3643 int index = SendDlgItemMessage(hwnd, IDC_BUGD_RSA1,
3644 CB_GETCURSEL, 0, 0);
5ecd7ad0 3645 cfg.sshbug_rsa1 = (index == 0 ? AUTO :
3646 index == 1 ? FORCE_OFF : FORCE_ON);
2c9c6388 3647 }
3648 break;
3649 case IDC_BUGD_HMAC2:
3650 if (HIWORD(wParam) == CBN_SELCHANGE) {
3651 int index = SendDlgItemMessage(hwnd, IDC_BUGD_HMAC2,
3652 CB_GETCURSEL, 0, 0);
5ecd7ad0 3653 cfg.sshbug_hmac2 = (index == 0 ? AUTO :
3654 index == 1 ? FORCE_OFF : FORCE_ON);
2c9c6388 3655 }
3656 break;
3657 case IDC_BUGD_DERIVEKEY2:
3658 if (HIWORD(wParam) == CBN_SELCHANGE) {
3659 int index = SendDlgItemMessage(hwnd, IDC_BUGD_DERIVEKEY2,
3660 CB_GETCURSEL, 0, 0);
5ecd7ad0 3661 cfg.sshbug_derivekey2 = (index == 0 ? AUTO :
3662 index == 1 ? FORCE_OFF:FORCE_ON);
2c9c6388 3663 }
3664 break;
3665 case IDC_BUGD_RSAPAD2:
3666 if (HIWORD(wParam) == CBN_SELCHANGE) {
3667 int index = SendDlgItemMessage(hwnd, IDC_BUGD_RSAPAD2,
3668 CB_GETCURSEL, 0, 0);
5ecd7ad0 3669 cfg.sshbug_rsapad2 = (index == 0 ? AUTO :
3670 index == 1 ? FORCE_OFF : FORCE_ON);
2c9c6388 3671 }
3672 break;
8e975795 3673 case IDC_BUGD_DHGEX2:
3674 if (HIWORD(wParam) == CBN_SELCHANGE) {
3675 int index = SendDlgItemMessage(hwnd, IDC_BUGD_DHGEX2,
3676 CB_GETCURSEL, 0, 0);
5ecd7ad0 3677 cfg.sshbug_dhgex2 = (index == 0 ? AUTO :
3678 index == 1 ? FORCE_OFF : FORCE_ON);
8e975795 3679 }
3680 break;
374330e2 3681 }
374330e2 3682 return 0;
70133c0e 3683 case WM_HELP:
3684 if (help_path) {
3685 int id = ((LPHELPINFO)lParam)->iCtrlId;
3686 char *cmd = help_context_cmd(id);
3687 if (cmd) {
3688 WinHelp(hwnd, help_path, HELP_COMMAND, (DWORD)cmd);
3689 requested_help = TRUE;
3690 } else {
3691 MessageBeep(0);
3692 }
3693 }
3694 break;
374330e2 3695 case WM_CLOSE:
70133c0e 3696 if (requested_help) {
3697 WinHelp(hwnd, help_path, HELP_QUIT, 0);
3698 requested_help = FALSE;
3699 }
32874aea 3700 EndDialog(hwnd, 0);
374330e2 3701 return 0;
c9def1b8 3702
3703 /* Grrr Explorer will maximize Dialogs! */
3704 case WM_SIZE:
3705 if (wParam == SIZE_MAXIMIZED)
32874aea 3706 force_normal(hwnd);
c9def1b8 3707 return 0;
ca20bfcf 3708
3709 default:
3710 /*
3711 * Handle application-defined messages eg. DragListBox
3712 */
3713 /* First find out what the number is (once). */
3714 if (draglistmsg == WM_NULL)
3715 draglistmsg = RegisterWindowMessage (DRAGLISTMSGSTRING);
3716
3717 if (msg == draglistmsg) {
3718 /* Only process once dialog is fully formed. */
3719 if (GetWindowLong(hwnd, GWL_USERDATA) == 1) switch (LOWORD(wParam)) {
3720 case IDC_CIPHERLIST:
3721 return handle_prefslist(&cipherlist,
3722 cfg.ssh_cipherlist, CIPHER_MAX,
3723 1, hwnd, wParam, lParam);
3724 }
3725 }
3726 return 0;
3727
374330e2 3728 }
3729 return 0;
3730}
3731
32874aea 3732static int CALLBACK MainDlgProc(HWND hwnd, UINT msg,
3733 WPARAM wParam, LPARAM lParam)
3734{
374330e2 3735 if (msg == WM_COMMAND && LOWORD(wParam) == IDOK) {
374330e2 3736 }
c96a8fef 3737 if (msg == WM_COMMAND && LOWORD(wParam) == IDCX_ABOUT) {
374330e2 3738 EnableWindow(hwnd, 0);
f5eca4f8 3739 DialogBox(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX), hwnd, AboutProc);
374330e2 3740 EnableWindow(hwnd, 1);
32874aea 3741 SetActiveWindow(hwnd);
374330e2 3742 }
32874aea 3743 return GenericMainDlgProc(hwnd, msg, wParam, lParam, 0);
374330e2 3744}
3745
32874aea 3746static int CALLBACK ReconfDlgProc(HWND hwnd, UINT msg,
3747 WPARAM wParam, LPARAM lParam)
3748{
3749 return GenericMainDlgProc(hwnd, msg, wParam, lParam, 1);
374330e2 3750}
3751
32874aea 3752void defuse_showwindow(void)
3753{
301b66db 3754 /*
3755 * Work around the fact that the app's first call to ShowWindow
3756 * will ignore the default in favour of the shell-provided
3757 * setting.
3758 */
3759 {
32874aea 3760 HWND hwnd;
3761 hwnd = CreateDialog(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX),
3762 NULL, NullDlgProc);
3763 ShowWindow(hwnd, SW_HIDE);
f5eca4f8 3764 SetActiveWindow(hwnd);
32874aea 3765 DestroyWindow(hwnd);
301b66db 3766 }
3767}
3768
32874aea 3769int do_config(void)
3770{
374330e2 3771 int ret;
3772
0b4f0bc0 3773 get_sesslist(&sesslist, TRUE);
6584031a 3774 savedsession[0] = '\0';
32874aea 3775 ret =
3776 DialogBox(hinst, MAKEINTRESOURCE(IDD_MAINBOX), NULL, MainDlgProc);
0b4f0bc0 3777 get_sesslist(&sesslist, FALSE);
374330e2 3778
3779 return ret;
3780}
3781
32874aea 3782int do_reconfig(HWND hwnd)
3783{
374330e2 3784 Config backup_cfg;
3785 int ret;
3786
3787 backup_cfg = cfg; /* structure copy */
32874aea 3788 ret =
3789 DialogBox(hinst, MAKEINTRESOURCE(IDD_RECONF), hwnd, ReconfDlgProc);
374330e2 3790 if (!ret)
3791 cfg = backup_cfg; /* structure copy */
c9def1b8 3792
374330e2 3793 return ret;
3794}
3795
a8327734 3796void logevent(void *frontend, char *string)
32874aea 3797{
71346075 3798 char timebuf[40];
3799 time_t t;
3800
a8327734 3801 log_eventlog(logctx, string);
fb89f7ff 3802
c5e9c988 3803 if (nevents >= negsize) {
374330e2 3804 negsize += 64;
32874aea 3805 events = srealloc(events, negsize * sizeof(*events));
374330e2 3806 }
71346075 3807
3808 time(&t);
32874aea 3809 strftime(timebuf, sizeof(timebuf), "%Y-%m-%d %H:%M:%S\t",
3810 localtime(&t));
71346075 3811
32874aea 3812 events[nevents] = smalloc(strlen(timebuf) + strlen(string) + 1);
71346075 3813 strcpy(events[nevents], timebuf);
3814 strcat(events[nevents], string);
9ad90448 3815 if (logbox) {
32874aea 3816 int count;
3817 SendDlgItemMessage(logbox, IDN_LIST, LB_ADDSTRING,
3818 0, (LPARAM) events[nevents]);
3819 count = SendDlgItemMessage(logbox, IDN_LIST, LB_GETCOUNT, 0, 0);
3820 SendDlgItemMessage(logbox, IDN_LIST, LB_SETTOPINDEX, count - 1, 0);
9ad90448 3821 }
bce816e7 3822 nevents++;
374330e2 3823}
3824
32874aea 3825void showeventlog(HWND hwnd)
3826{
374330e2 3827 if (!logbox) {
32874aea 3828 logbox = CreateDialog(hinst, MAKEINTRESOURCE(IDD_LOGBOX),
3829 hwnd, LogProc);
3830 ShowWindow(logbox, SW_SHOWNORMAL);
374330e2 3831 }
9ecf8e5a 3832 SetActiveWindow(logbox);
374330e2 3833}
3834
32874aea 3835void showabout(HWND hwnd)
3836{
3837 DialogBox(hinst, MAKEINTRESOURCE(IDD_ABOUTBOX), hwnd, AboutProc);
374330e2 3838}
3839
a8327734 3840void verify_ssh_host_key(void *frontend, char *host, int port, char *keytype,
32874aea 3841 char *keystr, char *fingerprint)
3842{
d5859615 3843 int ret;
374330e2 3844
d5859615 3845 static const char absentmsg[] =
32874aea 3846 "The server's host key is not cached in the registry. You\n"
3847 "have no guarantee that the server is the computer you\n"
3848 "think it is.\n"
3849 "The server's key fingerprint is:\n"
3850 "%s\n"
3851 "If you trust this host, hit Yes to add the key to\n"
3852 "PuTTY's cache and carry on connecting.\n"
d0718310 3853 "If you want to carry on connecting just once, without\n"
3854 "adding the key to the cache, hit No.\n"
3855 "If you do not trust this host, hit Cancel to abandon the\n"
32874aea 3856 "connection.\n";
d5859615 3857
3858 static const char wrongmsg[] =
32874aea 3859 "WARNING - POTENTIAL SECURITY BREACH!\n"
3860 "\n"
3861 "The server's host key does not match the one PuTTY has\n"
3862 "cached in the registry. This means that either the\n"
3863 "server administrator has changed the host key, or you\n"
3864 "have actually connected to another computer pretending\n"
3865 "to be the server.\n"
3866 "The new key fingerprint is:\n"
3867 "%s\n"
3868 "If you were expecting this change and trust the new key,\n"
3869 "hit Yes to update PuTTY's cache and continue connecting.\n"
3870 "If you want to carry on connecting but without updating\n"
3871 "the cache, hit No.\n"
3872 "If you want to abandon the connection completely, hit\n"
3873 "Cancel. Hitting Cancel is the ONLY guaranteed safe\n" "choice.\n";
d5859615 3874
3875 static const char mbtitle[] = "PuTTY Security Alert";
de3df031 3876
32874aea 3877 char message[160 +
c8d7378d 3878 /* sensible fingerprint max size */
32874aea 3879 (sizeof(absentmsg) > sizeof(wrongmsg) ?
3880 sizeof(absentmsg) : sizeof(wrongmsg))];
de3df031 3881
3882 /*
d5859615 3883 * Verify the key against the registry.
de3df031 3884 */
d4857987 3885 ret = verify_host_key(host, port, keytype, keystr);
d5859615 3886
32874aea 3887 if (ret == 0) /* success - key matched OK */
3888 return;
3889 if (ret == 2) { /* key was different */
3890 int mbret;
3891 sprintf(message, wrongmsg, fingerprint);
3892 mbret = MessageBox(NULL, message, mbtitle,
3893 MB_ICONWARNING | MB_YESNOCANCEL);
3894 if (mbret == IDYES)
3895 store_host_key(host, port, keytype, keystr);
3896 if (mbret == IDCANCEL)
93b581bd 3897 cleanup_exit(0);
de3df031 3898 }
32874aea 3899 if (ret == 1) { /* key was absent */
3900 int mbret;
3901 sprintf(message, absentmsg, fingerprint);
3902 mbret = MessageBox(NULL, message, mbtitle,
d0718310 3903 MB_ICONWARNING | MB_YESNOCANCEL);
3904 if (mbret == IDYES)
3905 store_host_key(host, port, keytype, keystr);
3906 if (mbret == IDCANCEL)
93b581bd 3907 cleanup_exit(0);
de3df031 3908 }
de3df031 3909}
e1c8e0ed 3910
3911/*
ca20bfcf 3912 * Ask whether the selected cipher is acceptable (since it was
3913 * below the configured 'warn' threshold).
3914 * cs: 0 = both ways, 1 = client->server, 2 = server->client
3915 */
a8327734 3916void askcipher(void *frontend, char *ciphername, int cs)
ca20bfcf 3917{
3918 static const char mbtitle[] = "PuTTY Security Alert";
3919 static const char msg[] =
3920 "The first %.35scipher supported by the server\n"
3921 "is %.64s, which is below the configured\n"
3922 "warning threshold.\n"
3923 "Do you want to continue with this connection?\n";
3924 /* guessed cipher name + type max length */
3925 char message[100 + sizeof(msg)];
3926 int mbret;
3927
3928 sprintf(message, msg,
3929 (cs == 0) ? "" :
3930 (cs == 1) ? "client-to-server " :
3931 "server-to-client ",
3932 ciphername);
3933 mbret = MessageBox(NULL, message, mbtitle,
3934 MB_ICONWARNING | MB_YESNO);
3935 if (mbret == IDYES)
3936 return;
3937 else
93b581bd 3938 cleanup_exit(0);
ca20bfcf 3939}
3940
3941/*
e1c8e0ed 3942 * Ask whether to wipe a session log file before writing to it.
3943 * Returns 2 for wipe, 1 for append, 0 for cancel (don't log).
3944 */
9a30e26b 3945int askappend(void *frontend, Filename filename)
32874aea 3946{
e1c8e0ed 3947 static const char mbtitle[] = "PuTTY Log to File";
3948 static const char msgtemplate[] =
3949 "The session log file \"%.*s\" already exists.\n"
3950 "You can overwrite it with a new session log,\n"
3951 "append your session log to the end of it,\n"
3952 "or disable session logging for this session.\n"
3953 "Hit Yes to wipe the file, No to append to it,\n"
3954 "or Cancel to disable logging.";
3955 char message[sizeof(msgtemplate) + FILENAME_MAX];
3956 int mbret;
bf61b566 3957
9a30e26b 3958 sprintf(message, msgtemplate, FILENAME_MAX, filename.path);
e1c8e0ed 3959
3960 mbret = MessageBox(NULL, message, mbtitle,
32874aea 3961 MB_ICONQUESTION | MB_YESNOCANCEL);
e1c8e0ed 3962 if (mbret == IDYES)
3963 return 2;
3964 else if (mbret == IDNO)
3965 return 1;
3966 else
3967 return 0;
3968}
7bedb13c 3969
3970/*
3971 * Warn about the obsolescent key file format.
a8327734 3972 *
3973 * Uniquely among these functions, this one does _not_ expect a
3974 * frontend handle. This means that if PuTTY is ported to a
3975 * platform which requires frontend handles, this function will be
3976 * an anomaly. Fortunately, the problem it addresses will not have
3977 * been present on that platform, so it can plausibly be
3978 * implemented as an empty function.
7bedb13c 3979 */
3980void old_keyfile_warning(void)
3981{
3982 static const char mbtitle[] = "PuTTY Key File Warning";
3983 static const char message[] =
3984 "You are loading an SSH 2 private key which has an\n"
3985 "old version of the file format. This means your key\n"
3986 "file is not fully tamperproof. Future versions of\n"
3987 "PuTTY may stop supporting this private key format,\n"
3988 "so we recommend you convert your key to the new\n"
3989 "format.\n"
3990 "\n"
3991 "You can perform this conversion by loading the key\n"
3992 "into PuTTYgen and then saving it again.";
3993
3994 MessageBox(NULL, message, mbtitle, MB_OK);
3995}