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