Mark Baker's raw-TCP back end (untested and experimental as yet)
[u/mdw/putty] / window.c
1 #include <windows.h>
2 #include <commctrl.h>
3 #include <winsock.h>
4 #include <stdio.h>
5 #include <stdlib.h>
6
7 #define PUTTY_DO_GLOBALS /* actually _define_ globals */
8 #include "putty.h"
9 #include "win_res.h"
10
11 #define IDM_SHOWLOG 0x0010
12 #define IDM_NEWSESS 0x0020
13 #define IDM_DUPSESS 0x0030
14 #define IDM_RECONF 0x0040
15 #define IDM_CLRSB 0x0050
16 #define IDM_RESET 0x0060
17 #define IDM_TEL_AYT 0x0070
18 #define IDM_TEL_BRK 0x0080
19 #define IDM_TEL_SYNCH 0x0090
20 #define IDM_TEL_EC 0x00a0
21 #define IDM_TEL_EL 0x00b0
22 #define IDM_TEL_GA 0x00c0
23 #define IDM_TEL_NOP 0x00d0
24 #define IDM_TEL_ABORT 0x00e0
25 #define IDM_TEL_AO 0x00f0
26 #define IDM_TEL_IP 0x0100
27 #define IDM_TEL_SUSP 0x0110
28 #define IDM_TEL_EOR 0x0120
29 #define IDM_TEL_EOF 0x0130
30 #define IDM_ABOUT 0x0140
31 #define IDM_SAVEDSESS 0x0150
32
33 #define IDM_SAVED_MIN 0x1000
34 #define IDM_SAVED_MAX 0x2000
35
36 #define WM_IGNORE_SIZE (WM_USER + 2)
37 #define WM_IGNORE_CLIP (WM_USER + 3)
38
39 static int WINAPI WndProc (HWND, UINT, WPARAM, LPARAM);
40 static int TranslateKey(WPARAM wParam, LPARAM lParam, unsigned char *output);
41 static void cfgtopalette(void);
42 static void init_palette(void);
43 static void init_fonts(void);
44
45 static int extra_width, extra_height;
46
47 #define FONT_NORMAL 0
48 #define FONT_BOLD 1
49 #define FONT_UNDERLINE 2
50 #define FONT_BOLDUND 3
51 #define FONT_OEM 4
52 #define FONT_OEMBOLD 5
53 #define FONT_OEMBOLDUND 6
54 #define FONT_OEMUND 7
55 static HFONT fonts[8];
56 static enum {
57 BOLD_COLOURS, BOLD_SHADOW, BOLD_FONT
58 } bold_mode;
59 static enum {
60 UND_LINE, UND_FONT
61 } und_mode;
62 static int descent;
63
64 #define NCOLOURS 24
65 static COLORREF colours[NCOLOURS];
66 static HPALETTE pal;
67 static LPLOGPALETTE logpal;
68 static RGBTRIPLE defpal[NCOLOURS];
69
70 static HWND hwnd;
71
72 static int dbltime, lasttime, lastact;
73 static Mouse_Button lastbtn;
74
75 static char *window_name, *icon_name;
76
77 int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) {
78 static char appname[] = "PuTTY";
79 WORD winsock_ver;
80 WSADATA wsadata;
81 WNDCLASS wndclass;
82 MSG msg;
83 int guess_width, guess_height;
84
85 winsock_ver = MAKEWORD(1, 1);
86 if (WSAStartup(winsock_ver, &wsadata)) {
87 MessageBox(NULL, "Unable to initialise WinSock", "WinSock Error",
88 MB_OK | MB_ICONEXCLAMATION);
89 return 1;
90 }
91 if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1) {
92 MessageBox(NULL, "WinSock version is incompatible with 1.1",
93 "WinSock Error", MB_OK | MB_ICONEXCLAMATION);
94 WSACleanup();
95 return 1;
96 }
97 /* WISHLIST: maybe allow config tweaking even if winsock not present? */
98
99 InitCommonControls();
100
101 /*
102 * Process the command line.
103 */
104 {
105 char *p;
106
107 default_protocol = DEFAULT_PROTOCOL;
108 default_port = DEFAULT_PORT;
109
110 do_defaults(NULL);
111
112 p = cmdline;
113 while (*p && isspace(*p)) p++;
114
115 /*
116 * Process command line options first. Yes, this can be
117 * done better, and it will be as soon as I have the
118 * energy...
119 */
120 while (*p == '-') {
121 char *q = p + strcspn(p, " \t");
122 p++;
123 if (q == p + 3 &&
124 tolower(p[0]) == 's' &&
125 tolower(p[1]) == 's' &&
126 tolower(p[2]) == 'h') {
127 default_protocol = cfg.protocol = PROT_SSH;
128 default_port = cfg.port = 22;
129 }
130 p = q + strspn(q, " \t");
131 }
132
133 /*
134 * An initial @ means to activate a saved session.
135 */
136 if (*p == '@') {
137 do_defaults (p+1);
138 if (!*cfg.host && !do_config()) {
139 WSACleanup();
140 return 0;
141 }
142 } else if (*p == '&') {
143 /*
144 * An initial & means we've been given a command line
145 * containing the hex value of a HANDLE for a file
146 * mapping object, which we must then extract as a
147 * config.
148 */
149 HANDLE filemap;
150 Config *cp;
151 if (sscanf(p+1, "%x", &filemap) == 1 &&
152 (cp = MapViewOfFile(filemap, FILE_MAP_READ,
153 0, 0, sizeof(Config))) != NULL) {
154 cfg = *cp;
155 UnmapViewOfFile(cp);
156 CloseHandle(filemap);
157 } else if (!do_config()) {
158 WSACleanup();
159 return 0;
160 }
161 } else if (*p) {
162 char *q = p;
163 while (*p && !isspace(*p)) p++;
164 if (*p)
165 *p++ = '\0';
166 strncpy (cfg.host, q, sizeof(cfg.host)-1);
167 cfg.host[sizeof(cfg.host)-1] = '\0';
168 while (*p && isspace(*p)) p++;
169 if (*p)
170 cfg.port = atoi(p);
171 else
172 cfg.port = -1;
173 } else {
174 if (!do_config()) {
175 WSACleanup();
176 return 0;
177 }
178 }
179 }
180
181 back = (cfg.protocol == PROT_SSH ? &ssh_backend :
182 cfg.protocol == PROT_TELNET ? &telnet_backend : &raw_backend );
183
184 if (!prev) {
185 wndclass.style = 0;
186 wndclass.lpfnWndProc = WndProc;
187 wndclass.cbClsExtra = 0;
188 wndclass.cbWndExtra = 0;
189 wndclass.hInstance = inst;
190 wndclass.hIcon = LoadIcon (inst,
191 MAKEINTRESOURCE(IDI_MAINICON));
192 wndclass.hCursor = LoadCursor (NULL, IDC_IBEAM);
193 wndclass.hbrBackground = GetStockObject (BLACK_BRUSH);
194 wndclass.lpszMenuName = NULL;
195 wndclass.lpszClassName = appname;
196
197 RegisterClass (&wndclass);
198 }
199
200 hwnd = NULL;
201
202 savelines = cfg.savelines;
203 term_init();
204
205 cfgtopalette();
206
207 /*
208 * Guess some defaults for the window size. This all gets
209 * updated later, so we don't really care too much. However, we
210 * do want the font width/height guesses to correspond to a
211 * large font rather than a small one...
212 */
213
214 font_width = 10;
215 font_height = 20;
216 extra_width = 25;
217 extra_height = 28;
218 term_size (cfg.height, cfg.width, cfg.savelines);
219 guess_width = extra_width + font_width * cols;
220 guess_height = extra_height + font_height * rows;
221 {
222 RECT r;
223 HWND w = GetDesktopWindow();
224 GetWindowRect (w, &r);
225 if (guess_width > r.right - r.left)
226 guess_width = r.right - r.left;
227 if (guess_height > r.bottom - r.top)
228 guess_height = r.bottom - r.top;
229 }
230
231 hwnd = CreateWindow (appname, appname,
232 WS_OVERLAPPEDWINDOW | WS_VSCROLL,
233 CW_USEDEFAULT, CW_USEDEFAULT,
234 guess_width, guess_height,
235 NULL, NULL, inst, NULL);
236
237 /*
238 * Initialise the fonts, simultaneously correcting the guesses
239 * for font_{width,height}.
240 */
241 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
242 und_mode = UND_FONT;
243 init_fonts();
244
245 /*
246 * Correct the guesses for extra_{width,height}.
247 */
248 {
249 RECT cr, wr;
250 GetWindowRect (hwnd, &wr);
251 GetClientRect (hwnd, &cr);
252 extra_width = wr.right - wr.left - cr.right + cr.left;
253 extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
254 }
255
256 /*
257 * Resize the window, now we know what size we _really_ want it
258 * to be.
259 */
260 guess_width = extra_width + font_width * cols;
261 guess_height = extra_height + font_height * rows;
262 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
263 SetWindowPos (hwnd, NULL, 0, 0, guess_width, guess_height,
264 SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER);
265
266 /*
267 * Initialise the scroll bar.
268 */
269 {
270 SCROLLINFO si;
271
272 si.cbSize = sizeof(si);
273 si.fMask = SIF_RANGE | SIF_PAGE | SIF_POS | SIF_DISABLENOSCROLL;
274 si.nMin = 0;
275 si.nMax = rows-1;
276 si.nPage = rows;
277 si.nPos = 0;
278 SetScrollInfo (hwnd, SB_VERT, &si, FALSE);
279 }
280
281 /*
282 * Start up the telnet connection.
283 */
284 {
285 char *error;
286 char msg[1024];
287 char *realhost;
288
289 error = back->init (hwnd, cfg.host, cfg.port, &realhost);
290 if (error) {
291 sprintf(msg, "Unable to open connection:\n%s", error);
292 MessageBox(NULL, msg, "PuTTY Error", MB_ICONERROR | MB_OK);
293 return 0;
294 }
295 window_name = icon_name = NULL;
296 sprintf(msg, "%s - PuTTY", realhost);
297 set_title (msg);
298 set_icon (msg);
299 }
300
301 /*
302 * Set up the input and output buffers.
303 */
304 inbuf_reap = inbuf_head = 0;
305 outbuf_reap = outbuf_head = 0;
306
307 /*
308 * Prepare the mouse handler.
309 */
310 lastact = MA_NOTHING;
311 lastbtn = MB_NOTHING;
312 dbltime = GetDoubleClickTime();
313
314 /*
315 * Set up the session-control options on the system menu.
316 */
317 {
318 HMENU m = GetSystemMenu (hwnd, FALSE);
319 HMENU p,s;
320 int i;
321
322 AppendMenu (m, MF_SEPARATOR, 0, 0);
323 if (cfg.protocol == PROT_TELNET) {
324 p = CreateMenu();
325 AppendMenu (p, MF_ENABLED, IDM_TEL_AYT, "Are You There");
326 AppendMenu (p, MF_ENABLED, IDM_TEL_BRK, "Break");
327 AppendMenu (p, MF_ENABLED, IDM_TEL_SYNCH, "Synch");
328 AppendMenu (p, MF_SEPARATOR, 0, 0);
329 AppendMenu (p, MF_ENABLED, IDM_TEL_EC, "Erase Character");
330 AppendMenu (p, MF_ENABLED, IDM_TEL_EL, "Erase Line");
331 AppendMenu (p, MF_ENABLED, IDM_TEL_GA, "Go Ahead");
332 AppendMenu (p, MF_ENABLED, IDM_TEL_NOP, "No Operation");
333 AppendMenu (p, MF_SEPARATOR, 0, 0);
334 AppendMenu (p, MF_ENABLED, IDM_TEL_ABORT, "Abort Process");
335 AppendMenu (p, MF_ENABLED, IDM_TEL_AO, "Abort Output");
336 AppendMenu (p, MF_ENABLED, IDM_TEL_IP, "Interrupt Process");
337 AppendMenu (p, MF_ENABLED, IDM_TEL_SUSP, "Suspend Process");
338 AppendMenu (p, MF_SEPARATOR, 0, 0);
339 AppendMenu (p, MF_ENABLED, IDM_TEL_EOR, "End Of Record");
340 AppendMenu (p, MF_ENABLED, IDM_TEL_EOF, "End Of File");
341 AppendMenu (m, MF_POPUP | MF_ENABLED, (UINT) p, "Telnet Command");
342 AppendMenu (m, MF_ENABLED, IDM_SHOWLOG, "Show Negotiation");
343 AppendMenu (m, MF_SEPARATOR, 0, 0);
344 }
345 AppendMenu (m, MF_ENABLED, IDM_NEWSESS, "New Session");
346 AppendMenu (m, MF_ENABLED, IDM_DUPSESS, "Duplicate Session");
347 s = CreateMenu();
348 get_sesslist(TRUE);
349 for (i = 1 ; i < ((nsessions < 256) ? nsessions : 256) ; i++)
350 AppendMenu (s, MF_ENABLED, IDM_SAVED_MIN + (16 * i) , sessions[i]);
351 AppendMenu (m, MF_POPUP | MF_ENABLED, (UINT) s, "Saved Sessions");
352 AppendMenu (m, MF_ENABLED, IDM_RECONF, "Change Settings");
353 AppendMenu (m, MF_SEPARATOR, 0, 0);
354 AppendMenu (m, MF_ENABLED, IDM_CLRSB, "Clear Scrollback");
355 AppendMenu (m, MF_ENABLED, IDM_RESET, "Reset Terminal");
356 AppendMenu (m, MF_SEPARATOR, 0, 0);
357 AppendMenu (m, MF_ENABLED, IDM_ABOUT, "About PuTTY");
358 }
359
360 /*
361 * Finally show the window!
362 */
363 ShowWindow (hwnd, show);
364
365 /*
366 * Set the palette up.
367 */
368 pal = NULL;
369 logpal = NULL;
370 init_palette();
371
372 has_focus = (GetForegroundWindow() == hwnd);
373 UpdateWindow (hwnd);
374
375 while (GetMessage (&msg, NULL, 0, 0)) {
376 DispatchMessage (&msg);
377 if (inbuf_reap != inbuf_head)
378 term_out();
379 /* In idle moments, do a full screen update */
380 if (!PeekMessage (&msg, NULL, 0, 0, PM_NOREMOVE))
381 term_update();
382 }
383
384 /*
385 * Clean up.
386 */
387 {
388 int i;
389 for (i=0; i<8; i++)
390 if (fonts[i])
391 DeleteObject(fonts[i]);
392 }
393 sfree(logpal);
394 if (pal)
395 DeleteObject(pal);
396 WSACleanup();
397
398 if (cfg.protocol == PROT_SSH)
399 random_save_seed();
400
401 return msg.wParam;
402 }
403
404 /*
405 * Copy the colour palette from the configuration data into defpal.
406 * This is non-trivial because the colour indices are different.
407 */
408 static void cfgtopalette(void) {
409 int i;
410 static const int ww[] = {
411 6, 7, 8, 9, 10, 11, 12, 13,
412 14, 15, 16, 17, 18, 19, 20, 21,
413 0, 1, 2, 3, 4, 4, 5, 5
414 };
415
416 for (i=0; i<24; i++) {
417 int w = ww[i];
418 defpal[i].rgbtRed = cfg.colours[w][0];
419 defpal[i].rgbtGreen = cfg.colours[w][1];
420 defpal[i].rgbtBlue = cfg.colours[w][2];
421 }
422 }
423
424 /*
425 * Set up the colour palette.
426 */
427 static void init_palette(void) {
428 int i;
429 HDC hdc = GetDC (hwnd);
430 if (hdc) {
431 if (cfg.try_palette &&
432 GetDeviceCaps (hdc, RASTERCAPS) & RC_PALETTE) {
433 logpal = smalloc(sizeof(*logpal)
434 - sizeof(logpal->palPalEntry)
435 + NCOLOURS * sizeof(PALETTEENTRY));
436 logpal->palVersion = 0x300;
437 logpal->palNumEntries = NCOLOURS;
438 for (i = 0; i < NCOLOURS; i++) {
439 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
440 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
441 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
442 logpal->palPalEntry[i].peFlags = PC_NOCOLLAPSE;
443 }
444 pal = CreatePalette (logpal);
445 if (pal) {
446 SelectPalette (hdc, pal, FALSE);
447 RealizePalette (hdc);
448 SelectPalette (hdc, GetStockObject (DEFAULT_PALETTE),
449 FALSE);
450 }
451 }
452 ReleaseDC (hwnd, hdc);
453 }
454 if (pal)
455 for (i=0; i<NCOLOURS; i++)
456 colours[i] = PALETTERGB(defpal[i].rgbtRed,
457 defpal[i].rgbtGreen,
458 defpal[i].rgbtBlue);
459 else
460 for(i=0; i<NCOLOURS; i++)
461 colours[i] = RGB(defpal[i].rgbtRed,
462 defpal[i].rgbtGreen,
463 defpal[i].rgbtBlue);
464 }
465
466 /*
467 * Initialise all the fonts we will need. There may be as many as
468 * eight or as few as one. We also:
469 *
470 * - check the font width and height, correcting our guesses if
471 * necessary.
472 *
473 * - verify that the bold font is the same width as the ordinary
474 * one, and engage shadow bolding if not.
475 *
476 * - verify that the underlined font is the same width as the
477 * ordinary one (manual underlining by means of line drawing can
478 * be done in a pinch).
479 *
480 * - verify, in OEM/ANSI combined mode, that the OEM and ANSI base
481 * fonts are the same size, and shift to OEM-only mode if not.
482 */
483 static void init_fonts(void) {
484 TEXTMETRIC tm;
485 int i, j;
486 int widths[5];
487 HDC hdc;
488 int fw_dontcare, fw_bold;
489
490 for (i=0; i<8; i++)
491 fonts[i] = NULL;
492
493 if (cfg.fontisbold) {
494 fw_dontcare = FW_BOLD;
495 fw_bold = FW_BLACK;
496 } else {
497 fw_dontcare = FW_DONTCARE;
498 fw_bold = FW_BOLD;
499 }
500
501 #define f(i,c,w,u) \
502 fonts[i] = CreateFont (cfg.fontheight, 0, 0, 0, w, FALSE, u, FALSE, \
503 c, OUT_DEFAULT_PRECIS, \
504 CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, \
505 FIXED_PITCH | FF_DONTCARE, cfg.font)
506 if (cfg.vtmode != VT_OEMONLY) {
507 f(FONT_NORMAL, ANSI_CHARSET, fw_dontcare, FALSE);
508 f(FONT_UNDERLINE, ANSI_CHARSET, fw_dontcare, TRUE);
509 }
510 if (cfg.vtmode == VT_OEMANSI || cfg.vtmode == VT_OEMONLY) {
511 f(FONT_OEM, OEM_CHARSET, fw_dontcare, FALSE);
512 f(FONT_OEMUND, OEM_CHARSET, fw_dontcare, TRUE);
513 }
514 if (bold_mode == BOLD_FONT) {
515 if (cfg.vtmode != VT_OEMONLY) {
516 f(FONT_BOLD, ANSI_CHARSET, fw_bold, FALSE);
517 f(FONT_BOLDUND, ANSI_CHARSET, fw_bold, TRUE);
518 }
519 if (cfg.vtmode == VT_OEMANSI || cfg.vtmode == VT_OEMONLY) {
520 f(FONT_OEMBOLD, OEM_CHARSET, fw_bold, FALSE);
521 f(FONT_OEMBOLDUND, OEM_CHARSET, fw_bold, TRUE);
522 }
523 } else {
524 fonts[FONT_BOLD] = fonts[FONT_BOLDUND] = NULL;
525 fonts[FONT_OEMBOLD] = fonts[FONT_OEMBOLDUND] = NULL;
526 }
527 #undef f
528
529 hdc = GetDC(hwnd);
530
531 if (cfg.vtmode == VT_OEMONLY)
532 j = 4;
533 else
534 j = 0;
535
536 for (i=0; i<(cfg.vtmode == VT_OEMANSI ? 5 : 4); i++) {
537 if (fonts[i+j]) {
538 SelectObject (hdc, fonts[i+j]);
539 GetTextMetrics(hdc, &tm);
540 if (i == 0 || i == 4) {
541 font_height = tm.tmHeight;
542 font_width = tm.tmAveCharWidth;
543 descent = tm.tmAscent + 1;
544 if (descent >= font_height)
545 descent = font_height - 1;
546 }
547 widths[i] = tm.tmAveCharWidth;
548 }
549 }
550
551 ReleaseDC (hwnd, hdc);
552
553 if (widths[FONT_UNDERLINE] != widths[FONT_NORMAL] ||
554 (bold_mode == BOLD_FONT &&
555 widths[FONT_BOLDUND] != widths[FONT_BOLD])) {
556 und_mode = UND_LINE;
557 DeleteObject (fonts[FONT_UNDERLINE]);
558 if (bold_mode == BOLD_FONT)
559 DeleteObject (fonts[FONT_BOLDUND]);
560 }
561
562 if (bold_mode == BOLD_FONT &&
563 widths[FONT_BOLD] != widths[FONT_NORMAL]) {
564 bold_mode = BOLD_SHADOW;
565 DeleteObject (fonts[FONT_BOLD]);
566 if (und_mode == UND_FONT)
567 DeleteObject (fonts[FONT_BOLDUND]);
568 }
569
570 if (cfg.vtmode == VT_OEMANSI && widths[FONT_OEM] != widths[FONT_NORMAL]) {
571 MessageBox(NULL, "The OEM and ANSI versions of this font are\n"
572 "different sizes. Using OEM-only mode instead",
573 "Font Size Mismatch", MB_ICONINFORMATION | MB_OK);
574 cfg.vtmode = VT_OEMONLY;
575 for (i=0; i<4; i++)
576 if (fonts[i])
577 DeleteObject (fonts[i]);
578 }
579 }
580
581 void request_resize (int w, int h) {
582 int width = extra_width + font_width * w;
583 int height = extra_height + font_height * h;
584
585 SetWindowPos (hwnd, NULL, 0, 0, width, height,
586 SWP_NOACTIVATE | SWP_NOCOPYBITS |
587 SWP_NOMOVE | SWP_NOZORDER);
588 }
589
590 static void click (Mouse_Button b, int x, int y) {
591 int thistime = GetMessageTime();
592
593 if (lastbtn == b && thistime - lasttime < dbltime) {
594 lastact = (lastact == MA_CLICK ? MA_2CLK :
595 lastact == MA_2CLK ? MA_3CLK :
596 lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
597 } else {
598 lastbtn = b;
599 lastact = MA_CLICK;
600 }
601 if (lastact != MA_NOTHING)
602 term_mouse (b, lastact, x, y);
603 lasttime = thistime;
604 }
605
606 static int WINAPI WndProc (HWND hwnd, UINT message,
607 WPARAM wParam, LPARAM lParam) {
608 HDC hdc;
609 static int ignore_size = FALSE;
610 static int ignore_clip = FALSE;
611 static int just_reconfigged = FALSE;
612
613 switch (message) {
614 case WM_CREATE:
615 break;
616 case WM_DESTROY:
617 PostQuitMessage (0);
618 return 0;
619 case WM_SYSCOMMAND:
620 switch (wParam & ~0xF) { /* low 4 bits reserved to Windows */
621 case IDM_SHOWLOG:
622 shownegot(hwnd);
623 break;
624 case IDM_NEWSESS:
625 case IDM_DUPSESS:
626 case IDM_SAVEDSESS:
627 {
628 char b[2048];
629 char c[30], *cl;
630 STARTUPINFO si;
631 PROCESS_INFORMATION pi;
632 HANDLE filemap = NULL;
633
634 if (wParam == IDM_DUPSESS) {
635 /*
636 * Allocate a file-mapping memory chunk for the
637 * config structure.
638 */
639 SECURITY_ATTRIBUTES sa;
640 Config *p;
641
642 sa.nLength = sizeof(sa);
643 sa.lpSecurityDescriptor = NULL;
644 sa.bInheritHandle = TRUE;
645 filemap = CreateFileMapping((HANDLE)0xFFFFFFFF,
646 &sa,
647 PAGE_READWRITE,
648 0,
649 sizeof(Config),
650 NULL);
651 if (filemap) {
652 p = (Config *)MapViewOfFile(filemap,
653 FILE_MAP_WRITE,
654 0, 0, sizeof(Config));
655 if (p) {
656 *p = cfg; /* structure copy */
657 UnmapViewOfFile(p);
658 }
659 }
660 sprintf(c, "putty &%08x", filemap);
661 cl = c;
662 } else if (wParam == IDM_SAVEDSESS) {
663 sprintf(c, "putty @%s",
664 sessions[(lParam - IDM_SAVED_MIN) / 16]);
665 cl = c;
666 } else
667 cl = NULL;
668
669 GetModuleFileName (NULL, b, sizeof(b)-1);
670 si.cb = sizeof(si);
671 si.lpReserved = NULL;
672 si.lpDesktop = NULL;
673 si.lpTitle = NULL;
674 si.dwFlags = 0;
675 si.cbReserved2 = 0;
676 si.lpReserved2 = NULL;
677 CreateProcess (b, cl, NULL, NULL, TRUE,
678 NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi);
679
680 if (filemap)
681 CloseHandle(filemap);
682 }
683 break;
684 case IDM_RECONF:
685 if (!do_reconfig(hwnd))
686 break;
687 just_reconfigged = TRUE;
688 {
689 int i;
690 for (i=0; i<8; i++)
691 if (fonts[i])
692 DeleteObject(fonts[i]);
693 }
694 bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
695 und_mode = UND_FONT;
696 init_fonts();
697 sfree(logpal);
698 if (pal)
699 DeleteObject(pal);
700 logpal = NULL;
701 pal = NULL;
702 cfgtopalette();
703 init_palette();
704 term_size(cfg.height, cfg.width, cfg.savelines);
705 InvalidateRect(hwnd, NULL, TRUE);
706 SetWindowPos (hwnd, NULL, 0, 0,
707 extra_width + font_width * cfg.width,
708 extra_height + font_height * cfg.height,
709 SWP_NOACTIVATE | SWP_NOCOPYBITS |
710 SWP_NOMOVE | SWP_NOZORDER);
711 if (IsIconic(hwnd)) {
712 SetWindowText (hwnd,
713 cfg.win_name_always ? window_name : icon_name);
714 }
715 break;
716 case IDM_CLRSB:
717 term_clrsb();
718 break;
719 case IDM_RESET:
720 term_pwron();
721 break;
722 case IDM_TEL_AYT: back->special (TS_AYT); break;
723 case IDM_TEL_BRK: back->special (TS_BRK); break;
724 case IDM_TEL_SYNCH: back->special (TS_SYNCH); break;
725 case IDM_TEL_EC: back->special (TS_EC); break;
726 case IDM_TEL_EL: back->special (TS_EL); break;
727 case IDM_TEL_GA: back->special (TS_GA); break;
728 case IDM_TEL_NOP: back->special (TS_NOP); break;
729 case IDM_TEL_ABORT: back->special (TS_ABORT); break;
730 case IDM_TEL_AO: back->special (TS_AO); break;
731 case IDM_TEL_IP: back->special (TS_IP); break;
732 case IDM_TEL_SUSP: back->special (TS_SUSP); break;
733 case IDM_TEL_EOR: back->special (TS_EOR); break;
734 case IDM_TEL_EOF: back->special (TS_EOF); break;
735 case IDM_ABOUT:
736 showabout (hwnd);
737 break;
738 default:
739 if (wParam >= IDM_SAVED_MIN && wParam <= IDM_SAVED_MAX) {
740 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
741 }
742 }
743 break;
744
745 #define X_POS(l) ((int)(short)LOWORD(l))
746 #define Y_POS(l) ((int)(short)HIWORD(l))
747
748 #define TO_CHR_X(x) (((x)<0 ? (x)-font_width+1 : (x)) / font_width)
749 #define TO_CHR_Y(y) (((y)<0 ? (y)-font_height+1: (y)) / font_height)
750
751 case WM_LBUTTONDOWN:
752 click (MB_SELECT, TO_CHR_X(X_POS(lParam)),
753 TO_CHR_Y(Y_POS(lParam)));
754 SetCapture(hwnd);
755 return 0;
756 case WM_LBUTTONUP:
757 term_mouse (MB_SELECT, MA_RELEASE, TO_CHR_X(X_POS(lParam)),
758 TO_CHR_Y(Y_POS(lParam)));
759 ReleaseCapture();
760 return 0;
761 case WM_MBUTTONDOWN:
762 SetCapture(hwnd);
763 click (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
764 TO_CHR_X(X_POS(lParam)),
765 TO_CHR_Y(Y_POS(lParam)));
766 return 0;
767 case WM_MBUTTONUP:
768 term_mouse (cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND,
769 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
770 TO_CHR_Y(Y_POS(lParam)));
771 ReleaseCapture();
772 return 0;
773 case WM_RBUTTONDOWN:
774 SetCapture(hwnd);
775 click (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
776 TO_CHR_X(X_POS(lParam)),
777 TO_CHR_Y(Y_POS(lParam)));
778 return 0;
779 case WM_RBUTTONUP:
780 term_mouse (cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE,
781 MA_RELEASE, TO_CHR_X(X_POS(lParam)),
782 TO_CHR_Y(Y_POS(lParam)));
783 ReleaseCapture();
784 return 0;
785 case WM_MOUSEMOVE:
786 /*
787 * Add the mouse position and message time to the random
788 * number noise, if we're using ssh.
789 */
790 if (cfg.protocol == PROT_SSH)
791 noise_ultralight(lParam);
792
793 if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON)) {
794 Mouse_Button b;
795 if (wParam & MK_LBUTTON)
796 b = MB_SELECT;
797 else if (wParam & MK_MBUTTON)
798 b = cfg.mouse_is_xterm ? MB_PASTE : MB_EXTEND;
799 else
800 b = cfg.mouse_is_xterm ? MB_EXTEND : MB_PASTE;
801 term_mouse (b, MA_DRAG, TO_CHR_X(X_POS(lParam)),
802 TO_CHR_Y(Y_POS(lParam)));
803 }
804 return 0;
805 case WM_IGNORE_CLIP:
806 ignore_clip = wParam; /* don't panic on DESTROYCLIPBOARD */
807 break;
808 case WM_DESTROYCLIPBOARD:
809 if (!ignore_clip)
810 term_deselect();
811 ignore_clip = FALSE;
812 return 0;
813 case WM_PAINT:
814 {
815 PAINTSTRUCT p;
816 hdc = BeginPaint (hwnd, &p);
817 if (pal) {
818 SelectPalette (hdc, pal, TRUE);
819 RealizePalette (hdc);
820 }
821 term_paint (hdc, p.rcPaint.left, p.rcPaint.top,
822 p.rcPaint.right, p.rcPaint.bottom);
823 SelectObject (hdc, GetStockObject(SYSTEM_FONT));
824 SelectObject (hdc, GetStockObject(WHITE_PEN));
825 EndPaint (hwnd, &p);
826 }
827 return 0;
828 case WM_NETEVENT:
829 {
830 int i = back->msg (wParam, lParam);
831 if (i < 0) {
832 char buf[1024];
833 switch (WSABASEERR + (-i) % 10000) {
834 case WSAECONNRESET:
835 sprintf(buf, "Connection reset by peer");
836 break;
837 default:
838 sprintf(buf, "Unexpected network error %d", -i);
839 break;
840 }
841 MessageBox(hwnd, buf, "PuTTY Fatal Error",
842 MB_ICONERROR | MB_OK);
843 PostQuitMessage(1);
844 } else if (i == 0) {
845 if (cfg.close_on_exit)
846 PostQuitMessage(0);
847 else {
848 MessageBox(hwnd, "Connection closed by remote host",
849 "PuTTY", MB_OK | MB_ICONINFORMATION);
850 SetWindowText (hwnd, "PuTTY (inactive)");
851 }
852 }
853 }
854 return 0;
855 case WM_SETFOCUS:
856 has_focus = TRUE;
857 term_out();
858 term_update();
859 break;
860 case WM_KILLFOCUS:
861 has_focus = FALSE;
862 term_out();
863 term_update();
864 break;
865 case WM_IGNORE_SIZE:
866 ignore_size = TRUE; /* don't panic on next WM_SIZE msg */
867 break;
868 case WM_SIZING:
869 {
870 int width, height, w, h, ew, eh;
871 LPRECT r = (LPRECT)lParam;
872
873 width = r->right - r->left - extra_width;
874 height = r->bottom - r->top - extra_height;
875 w = (width + font_width/2) / font_width; if (w < 1) w = 1;
876 h = (height + font_height/2) / font_height; if (h < 1) h = 1;
877 ew = width - w * font_width;
878 eh = height - h * font_height;
879 if (ew != 0) {
880 if (wParam == WMSZ_LEFT ||
881 wParam == WMSZ_BOTTOMLEFT ||
882 wParam == WMSZ_TOPLEFT)
883 r->left += ew;
884 else
885 r->right -= ew;
886 }
887 if (eh != 0) {
888 if (wParam == WMSZ_TOP ||
889 wParam == WMSZ_TOPRIGHT ||
890 wParam == WMSZ_TOPLEFT)
891 r->top += eh;
892 else
893 r->bottom -= eh;
894 }
895 if (ew || eh)
896 return 1;
897 else
898 return 0;
899 }
900 break;
901 case WM_SIZE:
902 if (wParam == SIZE_MINIMIZED) {
903 SetWindowText (hwnd,
904 cfg.win_name_always ? window_name : icon_name);
905 break;
906 }
907 if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
908 SetWindowText (hwnd, window_name);
909 if (!ignore_size) {
910 int width, height, w, h;
911 #if 0 /* we have fixed this using WM_SIZING now */
912 int ew, eh;
913 #endif
914
915 width = LOWORD(lParam);
916 height = HIWORD(lParam);
917 w = width / font_width; if (w < 1) w = 1;
918 h = height / font_height; if (h < 1) h = 1;
919 #if 0 /* we have fixed this using WM_SIZING now */
920 ew = width - w * font_width;
921 eh = height - h * font_height;
922 if (ew != 0 || eh != 0) {
923 RECT r;
924 GetWindowRect (hwnd, &r);
925 SendMessage (hwnd, WM_IGNORE_SIZE, 0, 0);
926 SetWindowPos (hwnd, NULL, 0, 0,
927 r.right - r.left - ew, r.bottom - r.top - eh,
928 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
929 }
930 #endif
931 if (w != cols || h != rows || just_reconfigged) {
932 term_invalidate();
933 term_size (h, w, cfg.savelines);
934 back->size();
935 just_reconfigged = FALSE;
936 }
937 }
938 ignore_size = FALSE;
939 return 0;
940 case WM_VSCROLL:
941 switch (LOWORD(wParam)) {
942 case SB_BOTTOM: term_scroll(-1, 0); break;
943 case SB_TOP: term_scroll(+1, 0); break;
944 case SB_LINEDOWN: term_scroll (0, +1); break;
945 case SB_LINEUP: term_scroll (0, -1); break;
946 case SB_PAGEDOWN: term_scroll (0, +rows/2); break;
947 case SB_PAGEUP: term_scroll (0, -rows/2); break;
948 case SB_THUMBPOSITION: case SB_THUMBTRACK:
949 term_scroll (1, HIWORD(wParam)); break;
950 }
951 break;
952 case WM_PALETTECHANGED:
953 if ((HWND) wParam != hwnd && pal != NULL) {
954 HDC hdc = get_ctx();
955 if (hdc) {
956 if (RealizePalette (hdc) > 0)
957 UpdateColors (hdc);
958 free_ctx (hdc);
959 }
960 }
961 break;
962 case WM_QUERYNEWPALETTE:
963 if (pal != NULL) {
964 HDC hdc = get_ctx();
965 if (hdc) {
966 if (RealizePalette (hdc) > 0)
967 UpdateColors (hdc);
968 free_ctx (hdc);
969 return TRUE;
970 }
971 }
972 return FALSE;
973 case WM_KEYDOWN:
974 case WM_SYSKEYDOWN:
975 /*
976 * Add the scan code and keypress timing to the random
977 * number noise, if we're using ssh.
978 */
979 if (cfg.protocol == PROT_SSH)
980 noise_ultralight(lParam);
981
982 /*
983 * We don't do TranslateMessage since it disassociates the
984 * resulting CHAR message from the KEYDOWN that sparked it,
985 * which we occasionally don't want. Instead, we process
986 * KEYDOWN, and call the Win32 translator functions so that
987 * we get the translations under _our_ control.
988 */
989 {
990 unsigned char buf[20];
991 int len;
992
993 len = TranslateKey (wParam, lParam, buf);
994 back->send (buf, len);
995 }
996 return 0;
997 case WM_KEYUP:
998 case WM_SYSKEYUP:
999 /*
1000 * We handle KEYUP ourselves in order to distinghish left
1001 * and right Alt or Control keys, which Windows won't do
1002 * right if left to itself. See also the special processing
1003 * at the top of TranslateKey.
1004 */
1005 {
1006 BYTE keystate[256];
1007 int ret = GetKeyboardState(keystate);
1008 if (ret && wParam == VK_MENU) {
1009 if (lParam & 0x1000000) keystate[VK_RMENU] = 0;
1010 else keystate[VK_LMENU] = 0;
1011 SetKeyboardState (keystate);
1012 }
1013 if (ret && wParam == VK_CONTROL) {
1014 if (lParam & 0x1000000) keystate[VK_RCONTROL] = 0;
1015 else keystate[VK_LCONTROL] = 0;
1016 SetKeyboardState (keystate);
1017 }
1018 }
1019 /*
1020 * We don't return here, in order to allow Windows to do
1021 * its own KEYUP processing as well.
1022 */
1023 break;
1024 case WM_CHAR:
1025 case WM_SYSCHAR:
1026 /*
1027 * Nevertheless, we are prepared to deal with WM_CHAR
1028 * messages, should they crop up. So if someone wants to
1029 * post the things to us as part of a macro manoeuvre,
1030 * we're ready to cope.
1031 */
1032 {
1033 char c = wParam;
1034 back->send (&c, 1);
1035 }
1036 return 0;
1037 }
1038
1039 return DefWindowProc (hwnd, message, wParam, lParam);
1040 }
1041
1042 /*
1043 * Draw a line of text in the window, at given character
1044 * coordinates, in given attributes.
1045 *
1046 * We are allowed to fiddle with the contents of `text'.
1047 */
1048 void do_text (Context ctx, int x, int y, char *text, int len,
1049 unsigned long attr) {
1050 COLORREF fg, bg, t;
1051 int nfg, nbg, nfont;
1052 HDC hdc = ctx;
1053
1054 x *= font_width;
1055 y *= font_height;
1056
1057 if (attr & ATTR_ACTCURS) {
1058 attr &= (bold_mode == BOLD_COLOURS ? 0x200 : 0x300);
1059 attr ^= ATTR_CUR_XOR;
1060 }
1061
1062 nfont = 0;
1063 if (cfg.vtmode == VT_OEMONLY)
1064 nfont |= FONT_OEM;
1065
1066 /*
1067 * Map high-half characters in order to approximate ISO using
1068 * OEM character set. Characters missing are 0xC3 (Atilde) and
1069 * 0xCC (Igrave).
1070 */
1071 if (nfont & FONT_OEM) {
1072 int i;
1073 for (i=0; i<len; i++)
1074 if (text[i] >= '\xA0' && text[i] <= '\xFF') {
1075 static const char oemhighhalf[] =
1076 "\x20\xAD\xBD\x9C\xCF\xBE\xDD\xF5" /* A0-A7 */
1077 "\xF9\xB8\xA6\xAE\xAA\xF0\xA9\xEE" /* A8-AF */
1078 "\xF8\xF1\xFD\xFC\xEF\xE6\xF4\xFA" /* B0-B7 */
1079 "\xF7\xFB\xA7\xAF\xAC\xAB\xF3\xA8" /* B8-BF */
1080 "\xB7\xB5\xB6\x41\x8E\x8F\x92\x80" /* C0-C7 */
1081 "\xD4\x90\xD2\xD3\x49\xD6\xD7\xD8" /* C8-CF */
1082 "\xD1\xA5\xE3\xE0\xE2\xE5\x99\x9E" /* D0-D7 */
1083 "\x9D\xEB\xE9\xEA\x9A\xED\xE8\xE1" /* D8-DF */
1084 "\x85\xA0\x83\xC6\x84\x86\x91\x87" /* E0-E7 */
1085 "\x8A\x82\x88\x89\x8D\xA1\x8C\x8B" /* E8-EF */
1086 "\xD0\xA4\x95\xA2\x93\xE4\x94\xF6" /* F0-F7 */
1087 "\x9B\x97\xA3\x96\x81\xEC\xE7\x98" /* F8-FF */
1088 ;
1089 text[i] = oemhighhalf[(unsigned char)text[i] - 0xA0];
1090 }
1091 }
1092
1093 if (attr & ATTR_GBCHR) {
1094 int i;
1095 /*
1096 * GB mapping: map # to pound, and everything else stays
1097 * normal.
1098 */
1099 for (i=0; i<len; i++)
1100 if (text[i] == '#')
1101 text[i] = cfg.vtmode == VT_OEMONLY ? '\x9C' : '\xA3';
1102 } else if (attr & ATTR_LINEDRW) {
1103 int i;
1104 static const char poorman[] =
1105 "*#****\xB0\xB1**+++++-----++++|****\xA3\xB7";
1106 static const char oemmap[] =
1107 "*\xB1****\xF8\xF1**\xD9\xBF\xDA\xC0\xC5"
1108 "\xC4\xC4\xC4\xC4\xC4\xC3\xB4\xC1\xC2\xB3****\x9C\xFA";
1109
1110 /*
1111 * Line drawing mapping: map ` thru ~ (0x60 thru 0x7E) to
1112 * VT100 line drawing chars; everything else stays normal.
1113 */
1114 switch (cfg.vtmode) {
1115 case VT_XWINDOWS:
1116 for (i=0; i<len; i++)
1117 if (text[i] >= '\x60' && text[i] <= '\x7E')
1118 text[i] += '\x01' - '\x60';
1119 break;
1120 case VT_OEMANSI:
1121 case VT_OEMONLY:
1122 nfont |= FONT_OEM;
1123 for (i=0; i<len; i++)
1124 if (text[i] >= '\x60' && text[i] <= '\x7E')
1125 text[i] = oemmap[(unsigned char)text[i] - 0x60];
1126 break;
1127 case VT_POORMAN:
1128 for (i=0; i<len; i++)
1129 if (text[i] >= '\x60' && text[i] <= '\x7E')
1130 text[i] = poorman[(unsigned char)text[i] - 0x60];
1131 break;
1132 }
1133 }
1134
1135 nfg = 2 * ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
1136 nbg = 2 * ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
1137 if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
1138 nfont |= FONT_BOLD;
1139 if (und_mode == UND_FONT && (attr & ATTR_UNDER))
1140 nfont |= FONT_UNDERLINE;
1141 if (attr & ATTR_REVERSE) {
1142 t = nfg; nfg = nbg; nbg = t;
1143 }
1144 if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD))
1145 nfg++;
1146 fg = colours[nfg];
1147 bg = colours[nbg];
1148 SelectObject (hdc, fonts[nfont]);
1149 SetTextColor (hdc, fg);
1150 SetBkColor (hdc, bg);
1151 SetBkMode (hdc, OPAQUE);
1152 TextOut (hdc, x, y, text, len);
1153 if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
1154 SetBkMode (hdc, TRANSPARENT);
1155 TextOut (hdc, x-1, y, text, len);
1156 }
1157 if (und_mode == UND_LINE && (attr & ATTR_UNDER)) {
1158 HPEN oldpen;
1159 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, fg));
1160 MoveToEx (hdc, x, y+descent, NULL);
1161 LineTo (hdc, x+len*font_width, y+descent);
1162 oldpen = SelectObject (hdc, oldpen);
1163 DeleteObject (oldpen);
1164 }
1165 if (attr & ATTR_PASCURS) {
1166 POINT pts[5];
1167 HPEN oldpen;
1168 pts[0].x = pts[1].x = pts[4].x = x;
1169 pts[2].x = pts[3].x = x+font_width-1;
1170 pts[0].y = pts[3].y = pts[4].y = y;
1171 pts[1].y = pts[2].y = y+font_height-1;
1172 oldpen = SelectObject (hdc, CreatePen(PS_SOLID, 0, colours[23]));
1173 Polyline (hdc, pts, 5);
1174 oldpen = SelectObject (hdc, oldpen);
1175 DeleteObject (oldpen);
1176 }
1177 }
1178
1179 /*
1180 * Translate a WM_(SYS)?KEYDOWN message into a string of ASCII
1181 * codes. Returns number of bytes used.
1182 */
1183 static int TranslateKey(WPARAM wParam, LPARAM lParam, unsigned char *output) {
1184 unsigned char *p = output;
1185 BYTE keystate[256];
1186 int ret, code;
1187 int cancel_alt = FALSE;
1188
1189 /*
1190 * Get hold of the keyboard state, because we'll need it a few
1191 * times shortly.
1192 */
1193 ret = GetKeyboardState(keystate);
1194
1195 /*
1196 * Windows does not always want to distinguish left and right
1197 * Alt or Control keys. Thus we keep track of them ourselves.
1198 * See also the WM_KEYUP handler.
1199 */
1200 if (wParam == VK_MENU) {
1201 if (lParam & 0x1000000) keystate[VK_RMENU] = 0x80;
1202 else keystate[VK_LMENU] = 0x80;
1203 SetKeyboardState (keystate);
1204 return 0;
1205 }
1206 if (wParam == VK_CONTROL) {
1207 if (lParam & 0x1000000) keystate[VK_RCONTROL] = 0x80;
1208 else keystate[VK_LCONTROL] = 0x80;
1209 SetKeyboardState (keystate);
1210 return 0;
1211 }
1212
1213 /*
1214 * Prepend ESC, and cancel ALT, if ALT was pressed at the time
1215 * and it wasn't AltGr.
1216 */
1217 if (lParam & 0x20000000 && (keystate[VK_LMENU] & 0x80)) {
1218 *p++ = 0x1B;
1219 cancel_alt = TRUE;
1220 }
1221
1222 /*
1223 * Shift-PgUp, Shift-PgDn, and Alt-F4 all produce window
1224 * events: we'll deal with those now.
1225 */
1226 if (ret && (keystate[VK_SHIFT] & 0x80) && wParam == VK_PRIOR) {
1227 SendMessage (hwnd, WM_VSCROLL, SB_PAGEUP, 0);
1228 return 0;
1229 }
1230 if (ret && (keystate[VK_SHIFT] & 0x80) && wParam == VK_NEXT) {
1231 SendMessage (hwnd, WM_VSCROLL, SB_PAGEDOWN, 0);
1232 return 0;
1233 }
1234 if ((lParam & 0x20000000) && wParam == VK_F4) {
1235 SendMessage (hwnd, WM_DESTROY, 0, 0);
1236 return 0;
1237 }
1238
1239 /*
1240 * In general, the strategy is to see what the Windows keymap
1241 * translation has to say for itself, and then process function
1242 * keys and suchlike ourselves if that fails. But first we must
1243 * deal with the small number of special cases which the
1244 * Windows keymap translator thinks it can do but gets wrong.
1245 *
1246 * First special case: we might want the Backspace key to send
1247 * 0x7F not 0x08.
1248 */
1249 if (wParam == VK_BACK) {
1250 *p++ = (cfg.bksp_is_delete ? 0x7F : 0x08);
1251 return p - output;
1252 }
1253
1254 /*
1255 * Control-Space should send ^@ (0x00), not Space.
1256 */
1257 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == VK_SPACE) {
1258 *p++ = 0x00;
1259 return p - output;
1260 }
1261
1262 /*
1263 * If we're in applications keypad mode, we have to process it
1264 * before char-map translation, because it will pre-empt lots
1265 * of stuff, even if NumLock is off.
1266 */
1267 if (app_keypad_keys) {
1268 if (ret) {
1269 /*
1270 * Hack to ensure NumLock doesn't interfere with
1271 * perception of Shift for Keypad Plus. I don't pretend
1272 * to understand this, but it seems to work as is.
1273 * Leave it alone, or die.
1274 */
1275 keystate[VK_NUMLOCK] = 0;
1276 SetKeyboardState (keystate);
1277 GetKeyboardState (keystate);
1278 }
1279 switch ( (lParam >> 16) & 0x1FF ) {
1280 case 0x145: p += sprintf((char *)p, "\x1BOP"); return p - output;
1281 case 0x135: p += sprintf((char *)p, "\x1BOQ"); return p - output;
1282 case 0x037: p += sprintf((char *)p, "\x1BOR"); return p - output;
1283 case 0x047: p += sprintf((char *)p, "\x1BOw"); return p - output;
1284 case 0x048: p += sprintf((char *)p, "\x1BOx"); return p - output;
1285 case 0x049: p += sprintf((char *)p, "\x1BOy"); return p - output;
1286 case 0x04A: p += sprintf((char *)p, "\x1BOS"); return p - output;
1287 case 0x04B: p += sprintf((char *)p, "\x1BOt"); return p - output;
1288 case 0x04C: p += sprintf((char *)p, "\x1BOu"); return p - output;
1289 case 0x04D: p += sprintf((char *)p, "\x1BOv"); return p - output;
1290 case 0x04E: /* keypad + is ^[Ol, but ^[Om with Shift */
1291 p += sprintf((char *)p,
1292 (ret && (keystate[VK_SHIFT] & 0x80)) ?
1293 "\x1BOm" : "\x1BOl");
1294 return p - output;
1295 case 0x04F: p += sprintf((char *)p, "\x1BOq"); return p - output;
1296 case 0x050: p += sprintf((char *)p, "\x1BOr"); return p - output;
1297 case 0x051: p += sprintf((char *)p, "\x1BOs"); return p - output;
1298 case 0x052: p += sprintf((char *)p, "\x1BOp"); return p - output;
1299 case 0x053: p += sprintf((char *)p, "\x1BOn"); return p - output;
1300 case 0x11C: p += sprintf((char *)p, "\x1BOM"); return p - output;
1301 }
1302 }
1303
1304 /*
1305 * Before doing Windows charmap translation, remove LeftALT
1306 * from the keymap, since its sole effect should be to prepend
1307 * ESC, which we've already done. Note that removal of LeftALT
1308 * has to happen _after_ the above call to SetKeyboardState, or
1309 * dire things will befall.
1310 */
1311 if (cancel_alt) {
1312 keystate[VK_MENU] = keystate[VK_RMENU];
1313 keystate[VK_LMENU] = 0;
1314 }
1315
1316 /*
1317 * Attempt the Windows char-map translation.
1318 */
1319 if (ret) {
1320 WORD chr;
1321 int r = ToAscii (wParam, (lParam >> 16) & 0xFF,
1322 keystate, &chr, 0);
1323 if (r == 1) {
1324 *p++ = chr & 0xFF;
1325 return p - output;
1326 }
1327 }
1328
1329 /*
1330 * OK, we haven't had a key code from the keymap translation.
1331 * We'll try our various special cases and function keys, and
1332 * then give up. (There's nothing wrong with giving up:
1333 * Scrollock, Pause/Break, and of course the various buckybit
1334 * keys all produce KEYDOWN events that we really _do_ want to
1335 * ignore.)
1336 */
1337
1338 /*
1339 * Control-2 should return ^@ (0x00), Control-6 should return
1340 * ^^ (0x1E), and Control-Minus should return ^_ (0x1F). Since
1341 * the DOS keyboard handling did it, and we have nothing better
1342 * to do with the key combo in question, we'll also map
1343 * Control-Backquote to ^\ (0x1C).
1344 */
1345 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == '2') {
1346 *p++ = 0x00;
1347 return p - output;
1348 }
1349 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == '6') {
1350 *p++ = 0x1E;
1351 return p - output;
1352 }
1353 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == 0xBD) {
1354 *p++ = 0x1F;
1355 return p - output;
1356 }
1357 if (ret && (keystate[VK_CONTROL] & 0x80) && wParam == 0xDF) {
1358 *p++ = 0x1C;
1359 return p - output;
1360 }
1361
1362 /*
1363 * First, all the keys that do tilde codes. (ESC '[' nn '~',
1364 * for integer decimal nn.)
1365 *
1366 * We also deal with the weird ones here. Linux VCs replace F1
1367 * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
1368 * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
1369 * respectively.
1370 */
1371 code = 0;
1372 switch (wParam) {
1373 case VK_F1: code = (keystate[VK_SHIFT] & 0x80 ? 23 : 11); break;
1374 case VK_F2: code = (keystate[VK_SHIFT] & 0x80 ? 24 : 12); break;
1375 case VK_F3: code = (keystate[VK_SHIFT] & 0x80 ? 25 : 13); break;
1376 case VK_F4: code = (keystate[VK_SHIFT] & 0x80 ? 26 : 14); break;
1377 case VK_F5: code = (keystate[VK_SHIFT] & 0x80 ? 28 : 15); break;
1378 case VK_F6: code = (keystate[VK_SHIFT] & 0x80 ? 29 : 17); break;
1379 case VK_F7: code = (keystate[VK_SHIFT] & 0x80 ? 31 : 18); break;
1380 case VK_F8: code = (keystate[VK_SHIFT] & 0x80 ? 32 : 19); break;
1381 case VK_F9: code = (keystate[VK_SHIFT] & 0x80 ? 33 : 20); break;
1382 case VK_F10: code = (keystate[VK_SHIFT] & 0x80 ? 34 : 21); break;
1383 case VK_F11: code = 23; break;
1384 case VK_F12: code = 24; break;
1385 case VK_HOME: code = 1; break;
1386 case VK_INSERT: code = 2; break;
1387 case VK_DELETE: code = 3; break;
1388 case VK_END: code = 4; break;
1389 case VK_PRIOR: code = 5; break;
1390 case VK_NEXT: code = 6; break;
1391 }
1392 if (cfg.linux_funkeys && code >= 11 && code <= 15) {
1393 p += sprintf((char *)p, "\x1B[[%c", code + 'A' - 11);
1394 return p - output;
1395 }
1396 if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
1397 p += sprintf((char *)p, code == 1 ? "\x1B[H" : "\x1BOw");
1398 return p - output;
1399 }
1400 if (code) {
1401 p += sprintf((char *)p, "\x1B[%d~", code);
1402 return p - output;
1403 }
1404
1405 /*
1406 * Now the remaining keys (arrows and Keypad 5. Keypad 5 for
1407 * some reason seems to send VK_CLEAR to Windows...).
1408 */
1409 switch (wParam) {
1410 case VK_UP:
1411 p += sprintf((char *)p, app_cursor_keys ? "\x1BOA" : "\x1B[A");
1412 return p - output;
1413 case VK_DOWN:
1414 p += sprintf((char *)p, app_cursor_keys ? "\x1BOB" : "\x1B[B");
1415 return p - output;
1416 case VK_RIGHT:
1417 p += sprintf((char *)p, app_cursor_keys ? "\x1BOC" : "\x1B[C");
1418 return p - output;
1419 case VK_LEFT:
1420 p += sprintf((char *)p, app_cursor_keys ? "\x1BOD" : "\x1B[D");
1421 return p - output;
1422 case VK_CLEAR: p += sprintf((char *)p, "\x1B[G"); return p - output;
1423 }
1424
1425 return 0;
1426 }
1427
1428 void set_title (char *title) {
1429 sfree (window_name);
1430 window_name = smalloc(1+strlen(title));
1431 strcpy (window_name, title);
1432 if (cfg.win_name_always || !IsIconic(hwnd))
1433 SetWindowText (hwnd, title);
1434 }
1435
1436 void set_icon (char *title) {
1437 sfree (icon_name);
1438 icon_name = smalloc(1+strlen(title));
1439 strcpy (icon_name, title);
1440 if (!cfg.win_name_always && IsIconic(hwnd))
1441 SetWindowText (hwnd, title);
1442 }
1443
1444 void set_sbar (int total, int start, int page) {
1445 SCROLLINFO si;
1446 si.cbSize = sizeof(si);
1447 si.fMask = SIF_RANGE | SIF_PAGE | SIF_POS | SIF_DISABLENOSCROLL;
1448 si.nMin = 0;
1449 si.nMax = total - 1;
1450 si.nPage = page;
1451 si.nPos = start;
1452 if (hwnd)
1453 SetScrollInfo (hwnd, SB_VERT, &si, TRUE);
1454 }
1455
1456 Context get_ctx(void) {
1457 HDC hdc;
1458 if (hwnd) {
1459 hdc = GetDC (hwnd);
1460 if (hdc && pal)
1461 SelectPalette (hdc, pal, FALSE);
1462 return hdc;
1463 } else
1464 return NULL;
1465 }
1466
1467 void free_ctx (Context ctx) {
1468 SelectPalette (ctx, GetStockObject (DEFAULT_PALETTE), FALSE);
1469 ReleaseDC (hwnd, ctx);
1470 }
1471
1472 static void real_palette_set (int n, int r, int g, int b) {
1473 if (pal) {
1474 logpal->palPalEntry[n].peRed = r;
1475 logpal->palPalEntry[n].peGreen = g;
1476 logpal->palPalEntry[n].peBlue = b;
1477 logpal->palPalEntry[n].peFlags = PC_NOCOLLAPSE;
1478 colours[n] = PALETTERGB(r, g, b);
1479 SetPaletteEntries (pal, 0, NCOLOURS, logpal->palPalEntry);
1480 } else
1481 colours[n] = RGB(r, g, b);
1482 }
1483
1484 void palette_set (int n, int r, int g, int b) {
1485 static const int first[21] = {
1486 0, 2, 4, 6, 8, 10, 12, 14,
1487 1, 3, 5, 7, 9, 11, 13, 15,
1488 16, 17, 18, 20, 22
1489 };
1490 real_palette_set (first[n], r, g, b);
1491 if (first[n] >= 18)
1492 real_palette_set (first[n]+1, r, g, b);
1493 if (pal) {
1494 HDC hdc = get_ctx();
1495 UnrealizeObject (pal);
1496 RealizePalette (hdc);
1497 free_ctx (hdc);
1498 }
1499 }
1500
1501 void palette_reset (void) {
1502 int i;
1503
1504 for (i = 0; i < NCOLOURS; i++) {
1505 if (pal) {
1506 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
1507 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
1508 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
1509 logpal->palPalEntry[i].peFlags = 0;
1510 colours[i] = PALETTERGB(defpal[i].rgbtRed,
1511 defpal[i].rgbtGreen,
1512 defpal[i].rgbtBlue);
1513 } else
1514 colours[i] = RGB(defpal[i].rgbtRed,
1515 defpal[i].rgbtGreen,
1516 defpal[i].rgbtBlue);
1517 }
1518
1519 if (pal) {
1520 HDC hdc;
1521 SetPaletteEntries (pal, 0, NCOLOURS, logpal->palPalEntry);
1522 hdc = get_ctx();
1523 RealizePalette (hdc);
1524 free_ctx (hdc);
1525 }
1526 }
1527
1528 void write_clip (void *data, int len) {
1529 HGLOBAL clipdata;
1530 void *lock;
1531
1532 clipdata = GlobalAlloc (GMEM_DDESHARE | GMEM_MOVEABLE, len + 1);
1533 if (!clipdata)
1534 return;
1535 lock = GlobalLock (clipdata);
1536 if (!lock)
1537 return;
1538 memcpy (lock, data, len);
1539 ((unsigned char *) lock) [len] = 0;
1540 GlobalUnlock (clipdata);
1541
1542 SendMessage (hwnd, WM_IGNORE_CLIP, TRUE, 0);
1543 if (OpenClipboard (hwnd)) {
1544 EmptyClipboard();
1545 SetClipboardData (CF_TEXT, clipdata);
1546 CloseClipboard();
1547 } else
1548 GlobalFree (clipdata);
1549 SendMessage (hwnd, WM_IGNORE_CLIP, FALSE, 0);
1550 }
1551
1552 void get_clip (void **p, int *len) {
1553 static HGLOBAL clipdata = NULL;
1554
1555 if (!p) {
1556 if (clipdata)
1557 GlobalUnlock (clipdata);
1558 clipdata = NULL;
1559 return;
1560 } else {
1561 if (OpenClipboard (NULL)) {
1562 clipdata = GetClipboardData (CF_TEXT);
1563 CloseClipboard();
1564 if (clipdata) {
1565 *p = GlobalLock (clipdata);
1566 if (*p) {
1567 *len = strlen(*p);
1568 return;
1569 }
1570 }
1571 }
1572 }
1573
1574 *p = NULL;
1575 *len = 0;
1576 }
1577
1578 /*
1579 * Move `lines' lines from position `from' to position `to' in the
1580 * window.
1581 */
1582 void optimised_move (int to, int from, int lines) {
1583 RECT r;
1584 int min, max;
1585
1586 min = (to < from ? to : from);
1587 max = to + from - min;
1588
1589 r.left = 0; r.right = cols * font_width;
1590 r.top = min * font_height; r.bottom = (max+lines) * font_height;
1591 ScrollWindow (hwnd, 0, (to - from) * font_height, &r, &r);
1592 }
1593
1594 /*
1595 * Print a message box and perform a fatal exit.
1596 */
1597 void fatalbox(char *fmt, ...) {
1598 va_list ap;
1599 char stuff[200];
1600
1601 va_start(ap, fmt);
1602 vsprintf(stuff, fmt, ap);
1603 va_end(ap);
1604 MessageBox(hwnd, stuff, "PuTTY Fatal Error", MB_ICONERROR | MB_OK);
1605 exit(1);
1606 }
1607
1608 /*
1609 * Beep.
1610 */
1611 void beep(void) {
1612 MessageBeep(MB_OK);
1613 }