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