]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - window.c
Now that we have `appname', make much wider use of it. In
[PuTTY.git] / window.c
1 #include <windows.h>
2 #include <imm.h>
3 #include <commctrl.h>
4 #include <richedit.h>
5 #include <mmsystem.h>
6 #ifndef AUTO_WINSOCK
7 #ifdef WINSOCK_TWO
8 #include <winsock2.h>
9 #else
10 #include <winsock.h>
11 #endif
12 #endif
13
14 #ifndef NO_MULTIMON
15 #if WINVER < 0x0500
16 #define COMPILE_MULTIMON_STUBS
17 #include <multimon.h>
18 #endif
19 #endif
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <ctype.h>
24 #include <time.h>
25 #include <assert.h>
26
27 #define PUTTY_DO_GLOBALS               /* actually _define_ globals */
28 #include "putty.h"
29 #include "terminal.h"
30 #include "winstuff.h"
31 #include "storage.h"
32 #include "win_res.h"
33
34 #define IDM_SHOWLOG   0x0010
35 #define IDM_NEWSESS   0x0020
36 #define IDM_DUPSESS   0x0030
37 #define IDM_RECONF    0x0040
38 #define IDM_CLRSB     0x0050
39 #define IDM_RESET     0x0060
40 #define IDM_HELP      0x0140
41 #define IDM_ABOUT     0x0150
42 #define IDM_SAVEDSESS 0x0160
43 #define IDM_COPYALL   0x0170
44 #define IDM_FULLSCREEN  0x0180
45
46 #define IDM_SESSLGP   0x0250           /* log type printable */
47 #define IDM_SESSLGA   0x0260           /* log type all chars */
48 #define IDM_SESSLGE   0x0270           /* log end */
49
50 #define IDM_SPECIAL_MIN 0x0400
51 #define IDM_SPECIAL_MAX 0x0800
52
53 #define IDM_SAVED_MIN 0x1000
54 #define IDM_SAVED_MAX 0x2000
55
56 #define WM_IGNORE_CLIP (WM_XUSER + 2)
57 #define WM_FULLSCR_ON_MAX (WM_XUSER + 3)
58
59 /* Needed for Chinese support and apparently not always defined. */
60 #ifndef VK_PROCESSKEY
61 #define VK_PROCESSKEY 0xE5
62 #endif
63
64 /* Mouse wheel support. */
65 #ifndef WM_MOUSEWHEEL
66 #define WM_MOUSEWHEEL 0x020A           /* not defined in earlier SDKs */
67 #endif
68 #ifndef WHEEL_DELTA
69 #define WHEEL_DELTA 120
70 #endif
71
72 static Mouse_Button translate_button(Mouse_Button button);
73 static LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
74 static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam,
75                         unsigned char *output);
76 static void cfgtopalette(void);
77 static void init_palette(void);
78 static void init_fonts(int, int);
79 static void another_font(int);
80 static void deinit_fonts(void);
81 static void set_input_locale(HKL);
82
83 static int is_full_screen(void);
84 static void make_full_screen(void);
85 static void clear_full_screen(void);
86 static void flip_full_screen(void);
87
88 /* Window layout information */
89 static void reset_window(int);
90 static int extra_width, extra_height;
91 static int font_width, font_height, font_dualwidth;
92 static int offset_width, offset_height;
93 static int was_zoomed = 0;
94 static int prev_rows, prev_cols;
95   
96 static int pending_netevent = 0;
97 static WPARAM pend_netevent_wParam = 0;
98 static LPARAM pend_netevent_lParam = 0;
99 static void enact_pending_netevent(void);
100 static void flash_window(int mode);
101 static void sys_cursor_update(void);
102 static int is_shift_pressed(void);
103 static int get_fullscreen_rect(RECT * ss);
104
105 static time_t last_movement = 0;
106
107 static int caret_x = -1, caret_y = -1;
108
109 static int kbd_codepage;
110
111 static void *ldisc;
112 static Backend *back;
113 static void *backhandle;
114
115 static struct unicode_data ucsdata;
116 static int session_closed;
117
118 static const struct telnet_special *specials;
119 static int specials_menu_position;
120
121 Config cfg;                            /* exported to windlg.c */
122
123 extern struct sesslist sesslist;       /* imported from windlg.c */
124
125 #define FONT_NORMAL 0
126 #define FONT_BOLD 1
127 #define FONT_UNDERLINE 2
128 #define FONT_BOLDUND 3
129 #define FONT_WIDE       0x04
130 #define FONT_HIGH       0x08
131 #define FONT_NARROW     0x10
132
133 #define FONT_OEM        0x20
134 #define FONT_OEMBOLD    0x21
135 #define FONT_OEMUND     0x22
136 #define FONT_OEMBOLDUND 0x23
137
138 #define FONT_MAXNO      0x2F
139 #define FONT_SHIFT      5
140 static HFONT fonts[FONT_MAXNO];
141 static LOGFONT lfont;
142 static int fontflag[FONT_MAXNO];
143 static enum {
144     BOLD_COLOURS, BOLD_SHADOW, BOLD_FONT
145 } bold_mode;
146 static enum {
147     UND_LINE, UND_FONT
148 } und_mode;
149 static int descent;
150
151 #define NCOLOURS 24
152 static COLORREF colours[NCOLOURS];
153 static HPALETTE pal;
154 static LPLOGPALETTE logpal;
155 static RGBTRIPLE defpal[NCOLOURS];
156
157 static HWND hwnd;
158
159 static HBITMAP caretbm;
160
161 static int dbltime, lasttime, lastact;
162 static Mouse_Button lastbtn;
163
164 /* this allows xterm-style mouse handling. */
165 static int send_raw_mouse = 0;
166 static int wheel_accumulator = 0;
167
168 static char *window_name, *icon_name;
169
170 static int compose_state = 0;
171
172 static int wsa_started = 0;
173
174 static OSVERSIONINFO osVersion;
175
176 static UINT wm_mousewheel = WM_MOUSEWHEEL;
177
178 /* Dummy routine, only required in plink. */
179 void ldisc_update(void *frontend, int echo, int edit)
180 {
181 }
182
183 int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
184 {
185     WORD winsock_ver;
186     WSADATA wsadata;
187     WNDCLASS wndclass;
188     MSG msg;
189     int guess_width, guess_height;
190
191     hinst = inst;
192     flags = FLAG_VERBOSE | FLAG_INTERACTIVE;
193
194     winsock_ver = MAKEWORD(1, 1);
195     if (WSAStartup(winsock_ver, &wsadata)) {
196         MessageBox(NULL, "Unable to initialise WinSock", "WinSock Error",
197                    MB_OK | MB_ICONEXCLAMATION);
198         return 1;
199     }
200     if (LOBYTE(wsadata.wVersion) != 1 || HIBYTE(wsadata.wVersion) != 1) {
201         MessageBox(NULL, "WinSock version is incompatible with 1.1",
202                    "WinSock Error", MB_OK | MB_ICONEXCLAMATION);
203         WSACleanup();
204         return 1;
205     }
206     wsa_started = 1;
207     /* WISHLIST: maybe allow config tweaking even if winsock not present? */
208     sk_init();
209
210     InitCommonControls();
211
212     /* Ensure a Maximize setting in Explorer doesn't maximise the
213      * config box. */
214     defuse_showwindow();
215
216     {
217         ZeroMemory(&osVersion, sizeof(osVersion));
218         osVersion.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
219         if (!GetVersionEx ( (OSVERSIONINFO *) &osVersion)) {
220             char *str = dupprintf("%s Fatal Error", appname);
221             MessageBox(NULL, "Windows refuses to report a version",
222                        str, MB_OK | MB_ICONEXCLAMATION);
223             sfree(str);
224             return 1;
225         }
226     }
227
228     /*
229      * If we're running a version of Windows that doesn't support
230      * WM_MOUSEWHEEL, find out what message number we should be
231      * using instead.
232      */
233     if (osVersion.dwMajorVersion < 4 ||
234         (osVersion.dwMajorVersion == 4 && 
235          osVersion.dwPlatformId != VER_PLATFORM_WIN32_NT))
236         wm_mousewheel = RegisterWindowMessage("MSWHEEL_ROLLMSG");
237
238     /*
239      * See if we can find our Help file.
240      */
241     {
242         char b[2048], *p, *q, *r;
243         FILE *fp;
244         GetModuleFileName(NULL, b, sizeof(b) - 1);
245         r = b;
246         p = strrchr(b, '\\');
247         if (p && p >= r) r = p+1;
248         q = strrchr(b, ':');
249         if (q && q >= r) r = q+1;
250         strcpy(r, "putty.hlp");
251         if ( (fp = fopen(b, "r")) != NULL) {
252             help_path = dupstr(b);
253             fclose(fp);
254         } else
255             help_path = NULL;
256         strcpy(r, "putty.cnt");
257         if ( (fp = fopen(b, "r")) != NULL) {
258             help_has_contents = TRUE;
259             fclose(fp);
260         } else
261             help_has_contents = FALSE;
262     }
263
264     /*
265      * Process the command line.
266      */
267     {
268         char *p;
269         int got_host = 0;
270
271         default_protocol = be_default_protocol;
272         /* Find the appropriate default port. */
273         {
274             int i;
275             default_port = 0; /* illegal */
276             for (i = 0; backends[i].backend != NULL; i++)
277                 if (backends[i].protocol == default_protocol) {
278                     default_port = backends[i].backend->default_port;
279                     break;
280                 }
281         }
282         cfg.logtype = LGTYP_NONE;
283
284         do_defaults(NULL, &cfg);
285
286         p = cmdline;
287
288         /*
289          * Process a couple of command-line options which are more
290          * easily dealt with before the line is broken up into
291          * words. These are the soon-to-be-defunct @sessionname and
292          * the internal-use-only &sharedmemoryhandle, neither of
293          * which are combined with anything else.
294          */
295         while (*p && isspace(*p))
296             p++;
297         if (*p == '@') {
298             int i = strlen(p);
299             while (i > 1 && isspace(p[i - 1]))
300                 i--;
301             p[i] = '\0';
302             do_defaults(p + 1, &cfg);
303             if (!*cfg.host && !do_config()) {
304                 WSACleanup();
305                 return 0;
306             }
307         } else if (*p == '&') {
308             /*
309              * An initial & means we've been given a command line
310              * containing the hex value of a HANDLE for a file
311              * mapping object, which we must then extract as a
312              * config.
313              */
314             HANDLE filemap;
315             Config *cp;
316             if (sscanf(p + 1, "%p", &filemap) == 1 &&
317                 (cp = MapViewOfFile(filemap, FILE_MAP_READ,
318                                     0, 0, sizeof(Config))) != NULL) {
319                 cfg = *cp;
320                 UnmapViewOfFile(cp);
321                 CloseHandle(filemap);
322             } else if (!do_config()) {
323                 WSACleanup();
324                 return 0;
325             }
326         } else {
327             /*
328              * Otherwise, break up the command line and deal with
329              * it sensibly.
330              */
331             int argc, i;
332             char **argv;
333             
334             split_into_argv(cmdline, &argc, &argv, NULL);
335
336             for (i = 0; i < argc; i++) {
337                 char *p = argv[i];
338                 int ret;
339
340                 ret = cmdline_process_param(p, i+1<argc?argv[i+1]:NULL,
341                                             1, &cfg);
342                 if (ret == -2) {
343                     cmdline_error("option \"%s\" requires an argument", p);
344                 } else if (ret == 2) {
345                     i++;               /* skip next argument */
346                 } else if (ret == 1) {
347                     continue;          /* nothing further needs doing */
348                 } else if (!strcmp(p, "-cleanup")) {
349                     /*
350                      * `putty -cleanup'. Remove all registry
351                      * entries associated with PuTTY, and also find
352                      * and delete the random seed file.
353                      */
354                     char *s1, *s2;
355                     s1 = dupprintf("This procedure will remove ALL Registry\n"
356                                    "entries associated with %s, and will\n"
357                                    "also remove the random seed file.\n"
358                                    "\n"
359                                    "THIS PROCESS WILL DESTROY YOUR SAVED\n"
360                                    "SESSIONS. Are you really sure you want\n"
361                                    "to continue?", appname);
362                     s2 = dupprintf("%s Warning", appname);
363                     if (MessageBox(NULL, s1, s2,
364                                    MB_YESNO | MB_ICONWARNING) == IDYES) {
365                         cleanup_all();
366                     }
367                     sfree(s1);
368                     sfree(s2);
369                     exit(0);
370                 } else if (*p != '-') {
371                     char *q = p;
372                     if (got_host) {
373                         /*
374                          * If we already have a host name, treat
375                          * this argument as a port number. NB we
376                          * have to treat this as a saved -P
377                          * argument, so that it will be deferred
378                          * until it's a good moment to run it.
379                          */
380                         int ret = cmdline_process_param("-P", p, 1, &cfg);
381                         assert(ret == 2);
382                     } else if (!strncmp(q, "telnet:", 7)) {
383                         /*
384                          * If the hostname starts with "telnet:",
385                          * set the protocol to Telnet and process
386                          * the string as a Telnet URL.
387                          */
388                         char c;
389
390                         q += 7;
391                         if (q[0] == '/' && q[1] == '/')
392                             q += 2;
393                         cfg.protocol = PROT_TELNET;
394                         p = q;
395                         while (*p && *p != ':' && *p != '/')
396                             p++;
397                         c = *p;
398                         if (*p)
399                             *p++ = '\0';
400                         if (c == ':')
401                             cfg.port = atoi(p);
402                         else
403                             cfg.port = -1;
404                         strncpy(cfg.host, q, sizeof(cfg.host) - 1);
405                         cfg.host[sizeof(cfg.host) - 1] = '\0';
406                         got_host = 1;
407                     } else {
408                         /*
409                          * Otherwise, treat this argument as a host
410                          * name.
411                          */
412                         while (*p && !isspace(*p))
413                             p++;
414                         if (*p)
415                             *p++ = '\0';
416                         strncpy(cfg.host, q, sizeof(cfg.host) - 1);
417                         cfg.host[sizeof(cfg.host) - 1] = '\0';
418                         got_host = 1;
419                     }
420                 } else {
421                     cmdline_error("unknown option \"%s\"", p);
422                 }
423             }
424         }
425
426         cmdline_run_saved(&cfg);
427
428         if (!*cfg.host && !do_config()) {
429             WSACleanup();
430             return 0;
431         }
432
433         /*
434          * Trim leading whitespace off the hostname if it's there.
435          */
436         {
437             int space = strspn(cfg.host, " \t");
438             memmove(cfg.host, cfg.host+space, 1+strlen(cfg.host)-space);
439         }
440
441         /* See if host is of the form user@host */
442         if (cfg.host[0] != '\0') {
443             char *atsign = strchr(cfg.host, '@');
444             /* Make sure we're not overflowing the user field */
445             if (atsign) {
446                 if (atsign - cfg.host < sizeof cfg.username) {
447                     strncpy(cfg.username, cfg.host, atsign - cfg.host);
448                     cfg.username[atsign - cfg.host] = '\0';
449                 }
450                 memmove(cfg.host, atsign + 1, 1 + strlen(atsign + 1));
451             }
452         }
453
454         /*
455          * Trim a colon suffix off the hostname if it's there.
456          */
457         cfg.host[strcspn(cfg.host, ":")] = '\0';
458
459         /*
460          * Remove any remaining whitespace from the hostname.
461          */
462         {
463             int p1 = 0, p2 = 0;
464             while (cfg.host[p2] != '\0') {
465                 if (cfg.host[p2] != ' ' && cfg.host[p2] != '\t') {
466                     cfg.host[p1] = cfg.host[p2];
467                     p1++;
468                 }
469                 p2++;
470             }
471             cfg.host[p1] = '\0';
472         }
473     }
474
475     /*
476      * Select protocol. This is farmed out into a table in a
477      * separate file to enable an ssh-free variant.
478      */
479     {
480         int i;
481         back = NULL;
482         for (i = 0; backends[i].backend != NULL; i++)
483             if (backends[i].protocol == cfg.protocol) {
484                 back = backends[i].backend;
485                 break;
486             }
487         if (back == NULL) {
488             char *str = dupprintf("%s Internal Error", appname);
489             MessageBox(NULL, "Unsupported protocol number found",
490                        str, MB_OK | MB_ICONEXCLAMATION);
491             sfree(str);
492             WSACleanup();
493             return 1;
494         }
495     }
496
497     /* Check for invalid Port number (i.e. zero) */
498     if (cfg.port == 0) {
499         char *str = dupprintf("%s Internal Error", appname);
500         MessageBox(NULL, "Invalid Port Number",
501                    str, MB_OK | MB_ICONEXCLAMATION);
502         sfree(str);
503         WSACleanup();
504         return 1;
505     }
506
507     if (!prev) {
508         wndclass.style = 0;
509         wndclass.lpfnWndProc = WndProc;
510         wndclass.cbClsExtra = 0;
511         wndclass.cbWndExtra = 0;
512         wndclass.hInstance = inst;
513         wndclass.hIcon = LoadIcon(inst, MAKEINTRESOURCE(IDI_MAINICON));
514         wndclass.hCursor = LoadCursor(NULL, IDC_IBEAM);
515         wndclass.hbrBackground = NULL;
516         wndclass.lpszMenuName = NULL;
517         wndclass.lpszClassName = appname;
518
519         RegisterClass(&wndclass);
520     }
521
522     hwnd = NULL;
523
524     memset(&ucsdata, 0, sizeof(ucsdata));
525
526     term = term_init(&cfg, &ucsdata, NULL);
527     logctx = log_init(NULL, &cfg);
528     term_provide_logctx(term, logctx);
529
530     cfgtopalette();
531
532     /*
533      * Guess some defaults for the window size. This all gets
534      * updated later, so we don't really care too much. However, we
535      * do want the font width/height guesses to correspond to a
536      * large font rather than a small one...
537      */
538
539     font_width = 10;
540     font_height = 20;
541     extra_width = 25;
542     extra_height = 28;
543     term_size(term, cfg.height, cfg.width, cfg.savelines);
544     guess_width = extra_width + font_width * term->cols;
545     guess_height = extra_height + font_height * term->rows;
546     {
547         RECT r;
548                 get_fullscreen_rect(&r);
549         if (guess_width > r.right - r.left)
550             guess_width = r.right - r.left;
551         if (guess_height > r.bottom - r.top)
552             guess_height = r.bottom - r.top;
553     }
554
555     {
556         int winmode = WS_OVERLAPPEDWINDOW | WS_VSCROLL;
557         int exwinmode = 0;
558         if (!cfg.scrollbar)
559             winmode &= ~(WS_VSCROLL);
560         if (cfg.resize_action == RESIZE_DISABLED)
561             winmode &= ~(WS_THICKFRAME | WS_MAXIMIZEBOX);
562         if (cfg.alwaysontop)
563             exwinmode |= WS_EX_TOPMOST;
564         if (cfg.sunken_edge)
565             exwinmode |= WS_EX_CLIENTEDGE;
566         hwnd = CreateWindowEx(exwinmode, appname, appname,
567                               winmode, CW_USEDEFAULT, CW_USEDEFAULT,
568                               guess_width, guess_height,
569                               NULL, NULL, inst, NULL);
570     }
571
572     /*
573      * Initialise the fonts, simultaneously correcting the guesses
574      * for font_{width,height}.
575      */
576     init_fonts(0,0);
577
578     /*
579      * Correct the guesses for extra_{width,height}.
580      */
581     {
582         RECT cr, wr;
583         GetWindowRect(hwnd, &wr);
584         GetClientRect(hwnd, &cr);
585         offset_width = offset_height = cfg.window_border;
586         extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
587         extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
588     }
589
590     /*
591      * Resize the window, now we know what size we _really_ want it
592      * to be.
593      */
594     guess_width = extra_width + font_width * term->cols;
595     guess_height = extra_height + font_height * term->rows;
596     SetWindowPos(hwnd, NULL, 0, 0, guess_width, guess_height,
597                  SWP_NOMOVE | SWP_NOREDRAW | SWP_NOZORDER);
598
599     /*
600      * Set up a caret bitmap, with no content.
601      */
602     {
603         char *bits;
604         int size = (font_width + 15) / 16 * 2 * font_height;
605         bits = snewn(size, char);
606         memset(bits, 0, size);
607         caretbm = CreateBitmap(font_width, font_height, 1, 1, bits);
608         sfree(bits);
609     }
610     CreateCaret(hwnd, caretbm, font_width, font_height);
611
612     /*
613      * Initialise the scroll bar.
614      */
615     {
616         SCROLLINFO si;
617
618         si.cbSize = sizeof(si);
619         si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
620         si.nMin = 0;
621         si.nMax = term->rows - 1;
622         si.nPage = term->rows;
623         si.nPos = 0;
624         SetScrollInfo(hwnd, SB_VERT, &si, FALSE);
625     }
626
627     /*
628      * Start up the telnet connection.
629      */
630     {
631         char *error;
632         char msg[1024], *title;
633         char *realhost;
634
635         error = back->init((void *)term, &backhandle, &cfg,
636                            cfg.host, cfg.port, &realhost, cfg.tcp_nodelay);
637         back->provide_logctx(backhandle, logctx);
638         if (error) {
639             char *str = dupprintf("%s Error", appname);
640             sprintf(msg, "Unable to open connection to\n"
641                     "%.800s\n" "%s", cfg.host, error);
642             MessageBox(NULL, msg, str, MB_ICONERROR | MB_OK);
643             sfree(str);
644             return 0;
645         }
646         window_name = icon_name = NULL;
647         if (*cfg.wintitle) {
648             title = cfg.wintitle;
649         } else {
650             sprintf(msg, "%s - %s", realhost, appname);
651             title = msg;
652         }
653         sfree(realhost);
654         set_title(NULL, title);
655         set_icon(NULL, title);
656     }
657
658     /*
659      * Connect the terminal to the backend for resize purposes.
660      */
661     term_provide_resize_fn(term, back->size, backhandle);
662
663     /*
664      * Set up a line discipline.
665      */
666     ldisc = ldisc_create(&cfg, term, back, backhandle, NULL);
667
668     session_closed = FALSE;
669
670     /*
671      * Prepare the mouse handler.
672      */
673     lastact = MA_NOTHING;
674     lastbtn = MBT_NOTHING;
675     dbltime = GetDoubleClickTime();
676
677     /*
678      * Set up the session-control options on the system menu.
679      */
680     {
681         HMENU m = GetSystemMenu(hwnd, FALSE);
682         HMENU s;
683         int i;
684         char *str;
685
686         AppendMenu(m, MF_SEPARATOR, 0, 0);
687         specials_menu_position = GetMenuItemCount(m);
688         AppendMenu(m, MF_ENABLED, IDM_SHOWLOG, "&Event Log");
689         AppendMenu(m, MF_SEPARATOR, 0, 0);
690         AppendMenu(m, MF_ENABLED, IDM_NEWSESS, "Ne&w Session...");
691         AppendMenu(m, MF_ENABLED, IDM_DUPSESS, "&Duplicate Session");
692         s = CreateMenu();
693         get_sesslist(&sesslist, TRUE);
694         for (i = 1;
695              i < ((sesslist.nsessions < 256) ? sesslist.nsessions : 256);
696              i++)
697             AppendMenu(s, MF_ENABLED, IDM_SAVED_MIN + (16 * i),
698                        sesslist.sessions[i]);
699         AppendMenu(m, MF_POPUP | MF_ENABLED, (UINT) s, "Sa&ved Sessions");
700         AppendMenu(m, MF_ENABLED, IDM_RECONF, "Chan&ge Settings...");
701         AppendMenu(m, MF_SEPARATOR, 0, 0);
702         AppendMenu(m, MF_ENABLED, IDM_COPYALL, "C&opy All to Clipboard");
703         AppendMenu(m, MF_ENABLED, IDM_CLRSB, "C&lear Scrollback");
704         AppendMenu(m, MF_ENABLED, IDM_RESET, "Rese&t Terminal");
705         AppendMenu(m, MF_SEPARATOR, 0, 0);
706         AppendMenu(m, (cfg.resize_action == RESIZE_DISABLED) ?
707                    MF_GRAYED : MF_ENABLED, IDM_FULLSCREEN, "&Full Screen");
708         AppendMenu(m, MF_SEPARATOR, 0, 0);
709         if (help_path)
710             AppendMenu(m, MF_ENABLED, IDM_HELP, "&Help");
711         str = dupprintf("&About %s", appname);
712         AppendMenu(m, MF_ENABLED, IDM_ABOUT, str);
713         sfree(str);
714     }
715
716     update_specials_menu(NULL);
717
718     /*
719      * Set up the initial input locale.
720      */
721     set_input_locale(GetKeyboardLayout(0));
722
723     /*
724      * Open the initial log file if there is one.
725      */
726     logfopen(logctx);
727
728     /*
729      * Finally show the window!
730      */
731     ShowWindow(hwnd, show);
732     SetForegroundWindow(hwnd);
733
734     /*
735      * Set the palette up.
736      */
737     pal = NULL;
738     logpal = NULL;
739     init_palette();
740
741     term->has_focus = (GetForegroundWindow() == hwnd);
742     UpdateWindow(hwnd);
743
744     if (GetMessage(&msg, NULL, 0, 0) == 1) {
745         int timer_id = 0, long_timer = 0;
746
747         while (msg.message != WM_QUIT) {
748             /* Sometimes DispatchMessage calls routines that use their own
749              * GetMessage loop, setup this timer so we get some control back.
750              *
751              * Also call term_update() from the timer so that if the host
752              * is sending data flat out we still do redraws.
753              */
754             if (timer_id && long_timer) {
755                 KillTimer(hwnd, timer_id);
756                 long_timer = timer_id = 0;
757             }
758             if (!timer_id)
759                 timer_id = SetTimer(hwnd, 1, 20, NULL);
760             if (!(IsWindow(logbox) && IsDialogMessage(logbox, &msg)))
761                 DispatchMessage(&msg);
762
763             /* Make sure we blink everything that needs it. */
764             term_blink(term, 0);
765
766             /* Send the paste buffer if there's anything to send */
767             term_paste(term);
768
769             /* If there's nothing new in the queue then we can do everything
770              * we've delayed, reading the socket, writing, and repainting
771              * the window.
772              */
773             if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
774                 continue;
775
776             if (pending_netevent) {
777                 enact_pending_netevent();
778
779                 if (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE))
780                     continue;
781             }
782
783             /* Okay there is now nothing to do so we make sure the screen is
784              * completely up to date then tell windows to call us in a little 
785              * while.
786              */
787             if (timer_id) {
788                 KillTimer(hwnd, timer_id);
789                 timer_id = 0;
790             }
791             HideCaret(hwnd);
792             if (GetCapture() != hwnd || 
793                 (send_raw_mouse &&
794                  !(cfg.mouse_override && is_shift_pressed())))
795                 term_out(term);
796             term_update(term);
797             ShowCaret(hwnd);
798
799             flash_window(1);           /* maintain */
800
801             /* The messages seem unreliable; especially if we're being tricky */
802             term->has_focus = (GetForegroundWindow() == hwnd);
803
804             if (term->in_vbell)
805                 /* Hmm, term_update didn't want to do an update too soon ... */
806                 timer_id = SetTimer(hwnd, 1, 50, NULL);
807             else if (!term->has_focus)
808                 timer_id = SetTimer(hwnd, 1, 500, NULL);
809             else
810                 timer_id = SetTimer(hwnd, 1, 100, NULL);
811             long_timer = 1;
812
813             /* There's no point rescanning everything in the message queue
814              * so we do an apparently unnecessary wait here
815              */
816             WaitMessage();
817             if (GetMessage(&msg, NULL, 0, 0) != 1)
818                 break;
819         }
820     }
821
822     cleanup_exit(msg.wParam);          /* this doesn't return... */
823     return msg.wParam;                 /* ... but optimiser doesn't know */
824 }
825
826 /*
827  * Clean up and exit.
828  */
829 void cleanup_exit(int code)
830 {
831     /*
832      * Clean up.
833      */
834     deinit_fonts();
835     sfree(logpal);
836     if (pal)
837         DeleteObject(pal);
838     sk_cleanup();
839     if (wsa_started)
840         WSACleanup();
841
842     if (cfg.protocol == PROT_SSH) {
843         random_save_seed();
844 #ifdef MSCRYPTOAPI
845         crypto_wrapup();
846 #endif
847     }
848
849     exit(code);
850 }
851
852 /*
853  * Set up, or shut down, an AsyncSelect. Called from winnet.c.
854  */
855 char *do_select(SOCKET skt, int startup)
856 {
857     int msg, events;
858     if (startup) {
859         msg = WM_NETEVENT;
860         events = (FD_CONNECT | FD_READ | FD_WRITE |
861                   FD_OOB | FD_CLOSE | FD_ACCEPT);
862     } else {
863         msg = events = 0;
864     }
865     if (!hwnd)
866         return "do_select(): internal error (hwnd==NULL)";
867     if (WSAAsyncSelect(skt, hwnd, msg, events) == SOCKET_ERROR) {
868         switch (WSAGetLastError()) {
869           case WSAENETDOWN:
870             return "Network is down";
871           default:
872             return "WSAAsyncSelect(): unknown error";
873         }
874     }
875     return NULL;
876 }
877
878 /*
879  * Update the Special Commands submenu.
880  */
881 void update_specials_menu(void *frontend)
882 {
883     HMENU m = GetSystemMenu(hwnd, FALSE);
884     int menu_already_exists = (specials != NULL);
885     int i;
886
887     specials = back->get_specials(backhandle);
888     if (specials) {
889         HMENU p = CreateMenu();
890         for (i = 0; specials[i].name; i++) {
891             assert(IDM_SPECIAL_MIN + 0x10 * i < IDM_SPECIAL_MAX);
892             if (*specials[i].name)
893                 AppendMenu(p, MF_ENABLED, IDM_SPECIAL_MIN + 0x10 * i,
894                            specials[i].name);
895             else
896                 AppendMenu(p, MF_SEPARATOR, 0, 0);
897         }
898         if (menu_already_exists)
899             DeleteMenu(m, specials_menu_position, MF_BYPOSITION);
900         else
901             InsertMenu(m, specials_menu_position,
902                        MF_BYPOSITION | MF_SEPARATOR, 0, 0);
903         InsertMenu(m, specials_menu_position,
904                    MF_BYPOSITION | MF_POPUP | MF_ENABLED,
905                    (UINT) p, "Special Command");
906     }
907 }
908
909 /*
910  * set or clear the "raw mouse message" mode
911  */
912 void set_raw_mouse_mode(void *frontend, int activate)
913 {
914     activate = activate && !cfg.no_mouse_rep;
915     send_raw_mouse = activate;
916     SetCursor(LoadCursor(NULL, activate ? IDC_ARROW : IDC_IBEAM));
917 }
918
919 /*
920  * Print a message box and close the connection.
921  */
922 void connection_fatal(void *frontend, char *fmt, ...)
923 {
924     va_list ap;
925     char stuff[200], morestuff[100];
926
927     va_start(ap, fmt);
928     vsprintf(stuff, fmt, ap);
929     va_end(ap);
930     sprintf(morestuff, "%.70s Fatal Error", appname);
931     MessageBox(hwnd, stuff, morestuff, MB_ICONERROR | MB_OK);
932     if (cfg.close_on_exit == FORCE_ON)
933         PostQuitMessage(1);
934     else {
935         session_closed = TRUE;
936         sprintf(morestuff, "%.70s (inactive)", appname);
937         set_icon(NULL, morestuff);
938         set_title(NULL, morestuff);
939     }
940 }
941
942 /*
943  * Report an error at the command-line parsing stage.
944  */
945 void cmdline_error(char *fmt, ...)
946 {
947     va_list ap;
948     char stuff[200], morestuff[100];
949
950     va_start(ap, fmt);
951     vsprintf(stuff, fmt, ap);
952     va_end(ap);
953     sprintf(morestuff, "%.70s Command Line Error", appname);
954     MessageBox(hwnd, stuff, morestuff, MB_ICONERROR | MB_OK);
955     exit(1);
956 }
957
958 /*
959  * Actually do the job requested by a WM_NETEVENT
960  */
961 static void enact_pending_netevent(void)
962 {
963     static int reentering = 0;
964     extern int select_result(WPARAM, LPARAM);
965     int ret;
966
967     if (reentering)
968         return;                        /* don't unpend the pending */
969
970     pending_netevent = FALSE;
971
972     reentering = 1;
973     ret = select_result(pend_netevent_wParam, pend_netevent_lParam);
974     reentering = 0;
975
976     if (ret == 0 && !session_closed) {
977         /* Abnormal exits will already have set session_closed and taken
978          * appropriate action. */
979         if (cfg.close_on_exit == FORCE_ON ||
980             cfg.close_on_exit == AUTO) PostQuitMessage(0);
981         else {
982             char morestuff[100];
983             session_closed = TRUE;
984             sprintf(morestuff, "%.70s (inactive)", appname);
985             set_icon(NULL, morestuff);
986             set_title(NULL, morestuff);
987             MessageBox(hwnd, "Connection closed by remote host",
988                        appname, MB_OK | MB_ICONINFORMATION);
989         }
990     }
991 }
992
993 /*
994  * Copy the colour palette from the configuration data into defpal.
995  * This is non-trivial because the colour indices are different.
996  */
997 static void cfgtopalette(void)
998 {
999     int i;
1000     static const int ww[] = {
1001         6, 7, 8, 9, 10, 11, 12, 13,
1002         14, 15, 16, 17, 18, 19, 20, 21,
1003         0, 1, 2, 3, 4, 4, 5, 5
1004     };
1005
1006     for (i = 0; i < 24; i++) {
1007         int w = ww[i];
1008         defpal[i].rgbtRed = cfg.colours[w][0];
1009         defpal[i].rgbtGreen = cfg.colours[w][1];
1010         defpal[i].rgbtBlue = cfg.colours[w][2];
1011     }
1012 }
1013
1014 /*
1015  * Set up the colour palette.
1016  */
1017 static void init_palette(void)
1018 {
1019     int i;
1020     HDC hdc = GetDC(hwnd);
1021     if (hdc) {
1022         if (cfg.try_palette && GetDeviceCaps(hdc, RASTERCAPS) & RC_PALETTE) {
1023             /*
1024              * This is a genuine case where we must use smalloc
1025              * because the snew macros can't cope.
1026              */
1027             logpal = smalloc(sizeof(*logpal)
1028                              - sizeof(logpal->palPalEntry)
1029                              + NCOLOURS * sizeof(PALETTEENTRY));
1030             logpal->palVersion = 0x300;
1031             logpal->palNumEntries = NCOLOURS;
1032             for (i = 0; i < NCOLOURS; i++) {
1033                 logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
1034                 logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
1035                 logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
1036                 logpal->palPalEntry[i].peFlags = PC_NOCOLLAPSE;
1037             }
1038             pal = CreatePalette(logpal);
1039             if (pal) {
1040                 SelectPalette(hdc, pal, FALSE);
1041                 RealizePalette(hdc);
1042                 SelectPalette(hdc, GetStockObject(DEFAULT_PALETTE), FALSE);
1043             }
1044         }
1045         ReleaseDC(hwnd, hdc);
1046     }
1047     if (pal)
1048         for (i = 0; i < NCOLOURS; i++)
1049             colours[i] = PALETTERGB(defpal[i].rgbtRed,
1050                                     defpal[i].rgbtGreen,
1051                                     defpal[i].rgbtBlue);
1052     else
1053         for (i = 0; i < NCOLOURS; i++)
1054             colours[i] = RGB(defpal[i].rgbtRed,
1055                              defpal[i].rgbtGreen, defpal[i].rgbtBlue);
1056 }
1057
1058 /*
1059  * Initialise all the fonts we will need initially. There may be as many as
1060  * three or as few as one.  The other (poentially) twentyone fonts are done
1061  * if/when they are needed.
1062  *
1063  * We also:
1064  *
1065  * - check the font width and height, correcting our guesses if
1066  *   necessary.
1067  *
1068  * - verify that the bold font is the same width as the ordinary
1069  *   one, and engage shadow bolding if not.
1070  * 
1071  * - verify that the underlined font is the same width as the
1072  *   ordinary one (manual underlining by means of line drawing can
1073  *   be done in a pinch).
1074  */
1075 static void init_fonts(int pick_width, int pick_height)
1076 {
1077     TEXTMETRIC tm;
1078     CPINFO cpinfo;
1079     int fontsize[3];
1080     int i;
1081     HDC hdc;
1082     int fw_dontcare, fw_bold;
1083
1084     for (i = 0; i < FONT_MAXNO; i++)
1085         fonts[i] = NULL;
1086
1087     bold_mode = cfg.bold_colour ? BOLD_COLOURS : BOLD_FONT;
1088     und_mode = UND_FONT;
1089
1090     if (cfg.font.isbold) {
1091         fw_dontcare = FW_BOLD;
1092         fw_bold = FW_HEAVY;
1093     } else {
1094         fw_dontcare = FW_DONTCARE;
1095         fw_bold = FW_BOLD;
1096     }
1097
1098     hdc = GetDC(hwnd);
1099
1100     if (pick_height)
1101         font_height = pick_height;
1102     else {
1103         font_height = cfg.font.height;
1104         if (font_height > 0) {
1105             font_height =
1106                 -MulDiv(font_height, GetDeviceCaps(hdc, LOGPIXELSY), 72);
1107         }
1108     }
1109     font_width = pick_width;
1110
1111 #define f(i,c,w,u) \
1112     fonts[i] = CreateFont (font_height, font_width, 0, 0, w, FALSE, u, FALSE, \
1113                            c, OUT_DEFAULT_PRECIS, \
1114                            CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY, \
1115                            FIXED_PITCH | FF_DONTCARE, cfg.font.name)
1116
1117     f(FONT_NORMAL, cfg.font.charset, fw_dontcare, FALSE);
1118
1119     lfont.lfHeight = font_height;
1120     lfont.lfWidth = font_width;
1121     lfont.lfEscapement = 0;
1122     lfont.lfOrientation  = 0;
1123     lfont.lfWeight  = fw_dontcare;
1124     lfont.lfItalic = FALSE;
1125     lfont.lfUnderline = FALSE;
1126     lfont.lfStrikeOut = FALSE;
1127     lfont.lfCharSet = cfg.font.charset;
1128     lfont.lfOutPrecision = OUT_DEFAULT_PRECIS;
1129     lfont.lfClipPrecision = CLIP_DEFAULT_PRECIS;
1130     lfont.lfQuality = DEFAULT_QUALITY;
1131     lfont.lfPitchAndFamily = FIXED_PITCH | FF_DONTCARE;
1132     strncpy(lfont.lfFaceName, cfg.font.name, LF_FACESIZE);
1133
1134     SelectObject(hdc, fonts[FONT_NORMAL]);
1135     GetTextMetrics(hdc, &tm);
1136
1137     if (pick_width == 0 || pick_height == 0) {
1138         font_height = tm.tmHeight;
1139         font_width = tm.tmAveCharWidth;
1140     }
1141     font_dualwidth = (tm.tmAveCharWidth != tm.tmMaxCharWidth);
1142
1143 #ifdef RDB_DEBUG_PATCH
1144     debug(23, "Primary font H=%d, AW=%d, MW=%d",
1145             tm.tmHeight, tm.tmAveCharWidth, tm.tmMaxCharWidth);
1146 #endif
1147
1148     {
1149         CHARSETINFO info;
1150         DWORD cset = tm.tmCharSet;
1151         memset(&info, 0xFF, sizeof(info));
1152
1153         /* !!! Yes the next line is right */
1154         if (cset == OEM_CHARSET)
1155             ucsdata.font_codepage = GetOEMCP();
1156         else
1157             if (TranslateCharsetInfo ((DWORD *) cset, &info, TCI_SRCCHARSET))
1158                 ucsdata.font_codepage = info.ciACP;
1159         else
1160             ucsdata.font_codepage = -1;
1161
1162         GetCPInfo(ucsdata.font_codepage, &cpinfo);
1163         ucsdata.dbcs_screenfont = (cpinfo.MaxCharSize > 1);
1164     }
1165
1166     f(FONT_UNDERLINE, cfg.font.charset, fw_dontcare, TRUE);
1167
1168     /*
1169      * Some fonts, e.g. 9-pt Courier, draw their underlines
1170      * outside their character cell. We successfully prevent
1171      * screen corruption by clipping the text output, but then
1172      * we lose the underline completely. Here we try to work
1173      * out whether this is such a font, and if it is, we set a
1174      * flag that causes underlines to be drawn by hand.
1175      *
1176      * Having tried other more sophisticated approaches (such
1177      * as examining the TEXTMETRIC structure or requesting the
1178      * height of a string), I think we'll do this the brute
1179      * force way: we create a small bitmap, draw an underlined
1180      * space on it, and test to see whether any pixels are
1181      * foreground-coloured. (Since we expect the underline to
1182      * go all the way across the character cell, we only search
1183      * down a single column of the bitmap, half way across.)
1184      */
1185     {
1186         HDC und_dc;
1187         HBITMAP und_bm, und_oldbm;
1188         int i, gotit;
1189         COLORREF c;
1190
1191         und_dc = CreateCompatibleDC(hdc);
1192         und_bm = CreateCompatibleBitmap(hdc, font_width, font_height);
1193         und_oldbm = SelectObject(und_dc, und_bm);
1194         SelectObject(und_dc, fonts[FONT_UNDERLINE]);
1195         SetTextAlign(und_dc, TA_TOP | TA_LEFT | TA_NOUPDATECP);
1196         SetTextColor(und_dc, RGB(255, 255, 255));
1197         SetBkColor(und_dc, RGB(0, 0, 0));
1198         SetBkMode(und_dc, OPAQUE);
1199         ExtTextOut(und_dc, 0, 0, ETO_OPAQUE, NULL, " ", 1, NULL);
1200         gotit = FALSE;
1201         for (i = 0; i < font_height; i++) {
1202             c = GetPixel(und_dc, font_width / 2, i);
1203             if (c != RGB(0, 0, 0))
1204                 gotit = TRUE;
1205         }
1206         SelectObject(und_dc, und_oldbm);
1207         DeleteObject(und_bm);
1208         DeleteDC(und_dc);
1209         if (!gotit) {
1210             und_mode = UND_LINE;
1211             DeleteObject(fonts[FONT_UNDERLINE]);
1212             fonts[FONT_UNDERLINE] = 0;
1213         }
1214     }
1215
1216     if (bold_mode == BOLD_FONT) {
1217         f(FONT_BOLD, cfg.font.charset, fw_bold, FALSE);
1218     }
1219 #undef f
1220
1221     descent = tm.tmAscent + 1;
1222     if (descent >= font_height)
1223         descent = font_height - 1;
1224
1225     for (i = 0; i < 3; i++) {
1226         if (fonts[i]) {
1227             if (SelectObject(hdc, fonts[i]) && GetTextMetrics(hdc, &tm))
1228                 fontsize[i] = tm.tmAveCharWidth + 256 * tm.tmHeight;
1229             else
1230                 fontsize[i] = -i;
1231         } else
1232             fontsize[i] = -i;
1233     }
1234
1235     ReleaseDC(hwnd, hdc);
1236
1237     if (fontsize[FONT_UNDERLINE] != fontsize[FONT_NORMAL]) {
1238         und_mode = UND_LINE;
1239         DeleteObject(fonts[FONT_UNDERLINE]);
1240         fonts[FONT_UNDERLINE] = 0;
1241     }
1242
1243     if (bold_mode == BOLD_FONT &&
1244         fontsize[FONT_BOLD] != fontsize[FONT_NORMAL]) {
1245         bold_mode = BOLD_SHADOW;
1246         DeleteObject(fonts[FONT_BOLD]);
1247         fonts[FONT_BOLD] = 0;
1248     }
1249     fontflag[0] = fontflag[1] = fontflag[2] = 1;
1250
1251     init_ucs(&cfg, &ucsdata);
1252 }
1253
1254 static void another_font(int fontno)
1255 {
1256     int basefont;
1257     int fw_dontcare, fw_bold;
1258     int c, u, w, x;
1259     char *s;
1260
1261     if (fontno < 0 || fontno >= FONT_MAXNO || fontflag[fontno])
1262         return;
1263
1264     basefont = (fontno & ~(FONT_BOLDUND));
1265     if (basefont != fontno && !fontflag[basefont])
1266         another_font(basefont);
1267
1268     if (cfg.font.isbold) {
1269         fw_dontcare = FW_BOLD;
1270         fw_bold = FW_HEAVY;
1271     } else {
1272         fw_dontcare = FW_DONTCARE;
1273         fw_bold = FW_BOLD;
1274     }
1275
1276     c = cfg.font.charset;
1277     w = fw_dontcare;
1278     u = FALSE;
1279     s = cfg.font.name;
1280     x = font_width;
1281
1282     if (fontno & FONT_WIDE)
1283         x *= 2;
1284     if (fontno & FONT_NARROW)
1285         x = (x+1)/2;
1286     if (fontno & FONT_OEM)
1287         c = OEM_CHARSET;
1288     if (fontno & FONT_BOLD)
1289         w = fw_bold;
1290     if (fontno & FONT_UNDERLINE)
1291         u = TRUE;
1292
1293     fonts[fontno] =
1294         CreateFont(font_height * (1 + !!(fontno & FONT_HIGH)), x, 0, 0, w,
1295                    FALSE, u, FALSE, c, OUT_DEFAULT_PRECIS,
1296                    CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY,
1297                    FIXED_PITCH | FF_DONTCARE, s);
1298
1299     fontflag[fontno] = 1;
1300 }
1301
1302 static void deinit_fonts(void)
1303 {
1304     int i;
1305     for (i = 0; i < FONT_MAXNO; i++) {
1306         if (fonts[i])
1307             DeleteObject(fonts[i]);
1308         fonts[i] = 0;
1309         fontflag[i] = 0;
1310     }
1311 }
1312
1313 void request_resize(void *frontend, int w, int h)
1314 {
1315     int width, height;
1316
1317     /* If the window is maximized supress resizing attempts */
1318     if (IsZoomed(hwnd)) {
1319         if (cfg.resize_action == RESIZE_TERM)
1320             return;
1321     }
1322
1323     if (cfg.resize_action == RESIZE_DISABLED) return;
1324     if (h == term->rows && w == term->cols) return;
1325
1326     /* Sanity checks ... */
1327     {
1328         static int first_time = 1;
1329         static RECT ss;
1330
1331         switch (first_time) {
1332           case 1:
1333             /* Get the size of the screen */
1334             if (get_fullscreen_rect(&ss))
1335                 /* first_time = 0 */ ;
1336             else {
1337                 first_time = 2;
1338                 break;
1339             }
1340           case 0:
1341             /* Make sure the values are sane */
1342             width = (ss.right - ss.left - extra_width) / 4;
1343             height = (ss.bottom - ss.top - extra_height) / 6;
1344
1345             if (w > width || h > height)
1346                 return;
1347             if (w < 15)
1348                 w = 15;
1349             if (h < 1)
1350                 h = 1;
1351         }
1352     }
1353
1354     term_size(term, h, w, cfg.savelines);
1355
1356     if (cfg.resize_action != RESIZE_FONT && !IsZoomed(hwnd)) {
1357         width = extra_width + font_width * w;
1358         height = extra_height + font_height * h;
1359
1360         SetWindowPos(hwnd, NULL, 0, 0, width, height,
1361             SWP_NOACTIVATE | SWP_NOCOPYBITS |
1362             SWP_NOMOVE | SWP_NOZORDER);
1363     } else
1364         reset_window(0);
1365
1366     InvalidateRect(hwnd, NULL, TRUE);
1367 }
1368
1369 static void reset_window(int reinit) {
1370     /*
1371      * This function decides how to resize or redraw when the 
1372      * user changes something. 
1373      *
1374      * This function doesn't like to change the terminal size but if the
1375      * font size is locked that may be it's only soluion.
1376      */
1377     int win_width, win_height;
1378     RECT cr, wr;
1379
1380 #ifdef RDB_DEBUG_PATCH
1381     debug((27, "reset_window()"));
1382 #endif
1383
1384     /* Current window sizes ... */
1385     GetWindowRect(hwnd, &wr);
1386     GetClientRect(hwnd, &cr);
1387
1388     win_width  = cr.right - cr.left;
1389     win_height = cr.bottom - cr.top;
1390
1391     if (cfg.resize_action == RESIZE_DISABLED) reinit = 2;
1392
1393     /* Are we being forced to reload the fonts ? */
1394     if (reinit>1) {
1395 #ifdef RDB_DEBUG_PATCH
1396         debug((27, "reset_window() -- Forced deinit"));
1397 #endif
1398         deinit_fonts();
1399         init_fonts(0,0);
1400     }
1401
1402     /* Oh, looks like we're minimised */
1403     if (win_width == 0 || win_height == 0)
1404         return;
1405
1406     /* Is the window out of position ? */
1407     if ( !reinit && 
1408             (offset_width != (win_width-font_width*term->cols)/2 ||
1409              offset_height != (win_height-font_height*term->rows)/2) ){
1410         offset_width = (win_width-font_width*term->cols)/2;
1411         offset_height = (win_height-font_height*term->rows)/2;
1412         InvalidateRect(hwnd, NULL, TRUE);
1413 #ifdef RDB_DEBUG_PATCH
1414         debug((27, "reset_window() -> Reposition terminal"));
1415 #endif
1416     }
1417
1418     if (IsZoomed(hwnd)) {
1419         /* We're fullscreen, this means we must not change the size of
1420          * the window so it's the font size or the terminal itself.
1421          */
1422
1423         extra_width = wr.right - wr.left - cr.right + cr.left;
1424         extra_height = wr.bottom - wr.top - cr.bottom + cr.top;
1425
1426         if (cfg.resize_action != RESIZE_TERM) {
1427             if (  font_width != win_width/term->cols || 
1428                   font_height != win_height/term->rows) {
1429                 deinit_fonts();
1430                 init_fonts(win_width/term->cols, win_height/term->rows);
1431                 offset_width = (win_width-font_width*term->cols)/2;
1432                 offset_height = (win_height-font_height*term->rows)/2;
1433                 InvalidateRect(hwnd, NULL, TRUE);
1434 #ifdef RDB_DEBUG_PATCH
1435                 debug((25, "reset_window() -> Z font resize to (%d, %d)",
1436                         font_width, font_height));
1437 #endif
1438             }
1439         } else {
1440             if (  font_width != win_width/term->cols || 
1441                   font_height != win_height/term->rows) {
1442                 /* Our only choice at this point is to change the 
1443                  * size of the terminal; Oh well.
1444                  */
1445                 term_size(term, win_height/font_height, win_width/font_width,
1446                           cfg.savelines);
1447                 offset_width = (win_width-font_width*term->cols)/2;
1448                 offset_height = (win_height-font_height*term->rows)/2;
1449                 InvalidateRect(hwnd, NULL, TRUE);
1450 #ifdef RDB_DEBUG_PATCH
1451                 debug((27, "reset_window() -> Zoomed term_size"));
1452 #endif
1453             }
1454         }
1455         return;
1456     }
1457
1458     /* Hmm, a force re-init means we should ignore the current window
1459      * so we resize to the default font size.
1460      */
1461     if (reinit>0) {
1462 #ifdef RDB_DEBUG_PATCH
1463         debug((27, "reset_window() -> Forced re-init"));
1464 #endif
1465
1466         offset_width = offset_height = cfg.window_border;
1467         extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
1468         extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
1469
1470         if (win_width != font_width*term->cols + offset_width*2 ||
1471             win_height != font_height*term->rows + offset_height*2) {
1472
1473             /* If this is too large windows will resize it to the maximum
1474              * allowed window size, we will then be back in here and resize
1475              * the font or terminal to fit.
1476              */
1477             SetWindowPos(hwnd, NULL, 0, 0, 
1478                          font_width*term->cols + extra_width, 
1479                          font_height*term->rows + extra_height,
1480                          SWP_NOMOVE | SWP_NOZORDER);
1481         }
1482
1483         InvalidateRect(hwnd, NULL, TRUE);
1484         return;
1485     }
1486
1487     /* Okay the user doesn't want us to change the font so we try the 
1488      * window. But that may be too big for the screen which forces us
1489      * to change the terminal.
1490      */
1491     if ((cfg.resize_action == RESIZE_TERM && reinit<=0) ||
1492         (cfg.resize_action == RESIZE_EITHER && reinit<0) ||
1493             reinit>0) {
1494         offset_width = offset_height = cfg.window_border;
1495         extra_width = wr.right - wr.left - cr.right + cr.left + offset_width*2;
1496         extra_height = wr.bottom - wr.top - cr.bottom + cr.top +offset_height*2;
1497
1498         if (win_width != font_width*term->cols + offset_width*2 ||
1499             win_height != font_height*term->rows + offset_height*2) {
1500
1501             static RECT ss;
1502             int width, height;
1503                 
1504                 get_fullscreen_rect(&ss);
1505
1506             width = (ss.right - ss.left - extra_width) / font_width;
1507             height = (ss.bottom - ss.top - extra_height) / font_height;
1508
1509             /* Grrr too big */
1510             if ( term->rows > height || term->cols > width ) {
1511                 if (cfg.resize_action == RESIZE_EITHER) {
1512                     /* Make the font the biggest we can */
1513                     if (term->cols > width)
1514                         font_width = (ss.right - ss.left - extra_width)
1515                             / term->cols;
1516                     if (term->rows > height)
1517                         font_height = (ss.bottom - ss.top - extra_height)
1518                             / term->rows;
1519
1520                     deinit_fonts();
1521                     init_fonts(font_width, font_height);
1522
1523                     width = (ss.right - ss.left - extra_width) / font_width;
1524                     height = (ss.bottom - ss.top - extra_height) / font_height;
1525                 } else {
1526                     if ( height > term->rows ) height = term->rows;
1527                     if ( width > term->cols )  width = term->cols;
1528                     term_size(term, height, width, cfg.savelines);
1529 #ifdef RDB_DEBUG_PATCH
1530                     debug((27, "reset_window() -> term resize to (%d,%d)",
1531                                height, width));
1532 #endif
1533                 }
1534             }
1535             
1536             SetWindowPos(hwnd, NULL, 0, 0, 
1537                          font_width*term->cols + extra_width, 
1538                          font_height*term->rows + extra_height,
1539                          SWP_NOMOVE | SWP_NOZORDER);
1540
1541             InvalidateRect(hwnd, NULL, TRUE);
1542 #ifdef RDB_DEBUG_PATCH
1543             debug((27, "reset_window() -> window resize to (%d,%d)",
1544                         font_width*term->cols + extra_width,
1545                         font_height*term->rows + extra_height));
1546 #endif
1547         }
1548         return;
1549     }
1550
1551     /* We're allowed to or must change the font but do we want to ?  */
1552
1553     if (font_width != (win_width-cfg.window_border*2)/term->cols || 
1554         font_height != (win_height-cfg.window_border*2)/term->rows) {
1555
1556         deinit_fonts();
1557         init_fonts((win_width-cfg.window_border*2)/term->cols, 
1558                    (win_height-cfg.window_border*2)/term->rows);
1559         offset_width = (win_width-font_width*term->cols)/2;
1560         offset_height = (win_height-font_height*term->rows)/2;
1561
1562         extra_width = wr.right - wr.left - cr.right + cr.left +offset_width*2;
1563         extra_height = wr.bottom - wr.top - cr.bottom + cr.top+offset_height*2;
1564
1565         InvalidateRect(hwnd, NULL, TRUE);
1566 #ifdef RDB_DEBUG_PATCH
1567         debug((25, "reset_window() -> font resize to (%d,%d)", 
1568                    font_width, font_height));
1569 #endif
1570     }
1571 }
1572
1573 static void set_input_locale(HKL kl)
1574 {
1575     char lbuf[20];
1576
1577     GetLocaleInfo(LOWORD(kl), LOCALE_IDEFAULTANSICODEPAGE,
1578                   lbuf, sizeof(lbuf));
1579
1580     kbd_codepage = atoi(lbuf);
1581 }
1582
1583 static void click(Mouse_Button b, int x, int y, int shift, int ctrl, int alt)
1584 {
1585     int thistime = GetMessageTime();
1586
1587     if (send_raw_mouse && !(cfg.mouse_override && shift)) {
1588         lastbtn = MBT_NOTHING;
1589         term_mouse(term, b, translate_button(b), MA_CLICK,
1590                    x, y, shift, ctrl, alt);
1591         return;
1592     }
1593
1594     if (lastbtn == b && thistime - lasttime < dbltime) {
1595         lastact = (lastact == MA_CLICK ? MA_2CLK :
1596                    lastact == MA_2CLK ? MA_3CLK :
1597                    lastact == MA_3CLK ? MA_CLICK : MA_NOTHING);
1598     } else {
1599         lastbtn = b;
1600         lastact = MA_CLICK;
1601     }
1602     if (lastact != MA_NOTHING)
1603         term_mouse(term, b, translate_button(b), lastact,
1604                    x, y, shift, ctrl, alt);
1605     lasttime = thistime;
1606 }
1607
1608 /*
1609  * Translate a raw mouse button designation (LEFT, MIDDLE, RIGHT)
1610  * into a cooked one (SELECT, EXTEND, PASTE).
1611  */
1612 static Mouse_Button translate_button(Mouse_Button button)
1613 {
1614     if (button == MBT_LEFT)
1615         return MBT_SELECT;
1616     if (button == MBT_MIDDLE)
1617         return cfg.mouse_is_xterm ? MBT_PASTE : MBT_EXTEND;
1618     if (button == MBT_RIGHT)
1619         return cfg.mouse_is_xterm ? MBT_EXTEND : MBT_PASTE;
1620     return 0;                          /* shouldn't happen */
1621 }
1622
1623 static void show_mouseptr(int show)
1624 {
1625     static int cursor_visible = 1;
1626     if (!cfg.hide_mouseptr)            /* override if this feature disabled */
1627         show = 1;
1628     if (cursor_visible && !show)
1629         ShowCursor(FALSE);
1630     else if (!cursor_visible && show)
1631         ShowCursor(TRUE);
1632     cursor_visible = show;
1633 }
1634
1635 static int is_alt_pressed(void)
1636 {
1637     BYTE keystate[256];
1638     int r = GetKeyboardState(keystate);
1639     if (!r)
1640         return FALSE;
1641     if (keystate[VK_MENU] & 0x80)
1642         return TRUE;
1643     if (keystate[VK_RMENU] & 0x80)
1644         return TRUE;
1645     return FALSE;
1646 }
1647
1648 static int is_shift_pressed(void)
1649 {
1650     BYTE keystate[256];
1651     int r = GetKeyboardState(keystate);
1652     if (!r)
1653         return FALSE;
1654     if (keystate[VK_SHIFT] & 0x80)
1655         return TRUE;
1656     return FALSE;
1657 }
1658
1659 static int resizing;
1660
1661 static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
1662                                 WPARAM wParam, LPARAM lParam)
1663 {
1664     HDC hdc;
1665     static int ignore_clip = FALSE;
1666     static int need_backend_resize = FALSE;
1667     static int fullscr_on_max = FALSE;
1668
1669     switch (message) {
1670       case WM_TIMER:
1671         if (pending_netevent)
1672             enact_pending_netevent();
1673         if (GetCapture() != hwnd || 
1674             (send_raw_mouse && !(cfg.mouse_override && is_shift_pressed())))
1675             term_out(term);
1676         noise_regular();
1677         HideCaret(hwnd);
1678         term_update(term);
1679         ShowCaret(hwnd);
1680         if (cfg.ping_interval > 0) {
1681             time_t now;
1682             time(&now);
1683             if (now - last_movement > cfg.ping_interval) {
1684                 back->special(backhandle, TS_PING);
1685                 last_movement = now;
1686             }
1687         }
1688         net_pending_errors();
1689         return 0;
1690       case WM_CREATE:
1691         break;
1692       case WM_CLOSE:
1693         {
1694             char *str;
1695             show_mouseptr(1);
1696             str = dupprintf("%s Exit Confirmation", appname);
1697             if (!cfg.warn_on_close || session_closed ||
1698                 MessageBox(hwnd,
1699                            "Are you sure you want to close this session?",
1700                            str, MB_ICONWARNING | MB_OKCANCEL) == IDOK)
1701                 DestroyWindow(hwnd);
1702             sfree(str);
1703         }
1704         return 0;
1705       case WM_DESTROY:
1706         show_mouseptr(1);
1707         PostQuitMessage(0);
1708         return 0;
1709       case WM_SYSCOMMAND:
1710         switch (wParam & ~0xF) {       /* low 4 bits reserved to Windows */
1711           case IDM_SHOWLOG:
1712             showeventlog(hwnd);
1713             break;
1714           case IDM_NEWSESS:
1715           case IDM_DUPSESS:
1716           case IDM_SAVEDSESS:
1717             {
1718                 char b[2048];
1719                 char c[30], *cl;
1720                 int freecl = FALSE;
1721                 STARTUPINFO si;
1722                 PROCESS_INFORMATION pi;
1723                 HANDLE filemap = NULL;
1724
1725                 if (wParam == IDM_DUPSESS) {
1726                     /*
1727                      * Allocate a file-mapping memory chunk for the
1728                      * config structure.
1729                      */
1730                     SECURITY_ATTRIBUTES sa;
1731                     Config *p;
1732
1733                     sa.nLength = sizeof(sa);
1734                     sa.lpSecurityDescriptor = NULL;
1735                     sa.bInheritHandle = TRUE;
1736                     filemap = CreateFileMapping((HANDLE) 0xFFFFFFFF,
1737                                                 &sa,
1738                                                 PAGE_READWRITE,
1739                                                 0, sizeof(Config), NULL);
1740                     if (filemap) {
1741                         p = (Config *) MapViewOfFile(filemap,
1742                                                      FILE_MAP_WRITE,
1743                                                      0, 0, sizeof(Config));
1744                         if (p) {
1745                             *p = cfg;  /* structure copy */
1746                             UnmapViewOfFile(p);
1747                         }
1748                     }
1749                     sprintf(c, "putty &%p", filemap);
1750                     cl = c;
1751                 } else if (wParam == IDM_SAVEDSESS) {
1752                     if ((lParam - IDM_SAVED_MIN) / 16 < sesslist.nsessions) {
1753                         char *session =
1754                             sesslist.sessions[(lParam - IDM_SAVED_MIN) / 16];
1755                         cl = snewn(16 + strlen(session), char);
1756                                        /* 8, but play safe */
1757                         if (!cl)
1758                             cl = NULL;    
1759                                        /* not a very important failure mode */
1760                         else {
1761                             sprintf(cl, "putty @%s", session);
1762                             freecl = TRUE;
1763                         }
1764                     } else
1765                         break;
1766                 } else
1767                     cl = NULL;
1768
1769                 GetModuleFileName(NULL, b, sizeof(b) - 1);
1770                 si.cb = sizeof(si);
1771                 si.lpReserved = NULL;
1772                 si.lpDesktop = NULL;
1773                 si.lpTitle = NULL;
1774                 si.dwFlags = 0;
1775                 si.cbReserved2 = 0;
1776                 si.lpReserved2 = NULL;
1777                 CreateProcess(b, cl, NULL, NULL, TRUE,
1778                               NORMAL_PRIORITY_CLASS, NULL, NULL, &si, &pi);
1779
1780                 if (filemap)
1781                     CloseHandle(filemap);
1782                 if (freecl)
1783                     sfree(cl);
1784             }
1785             break;
1786           case IDM_RECONF:
1787             {
1788                 Config prev_cfg;
1789                 int init_lvl = 1;
1790
1791                 GetWindowText(hwnd, cfg.wintitle, sizeof(cfg.wintitle));
1792                 prev_cfg = cfg;
1793
1794                 if (!do_reconfig(hwnd))
1795                     break;
1796
1797                 {
1798                     /* Disable full-screen if resizing forbidden */
1799                     HMENU m = GetSystemMenu (hwnd, FALSE);
1800                     EnableMenuItem(m, IDM_FULLSCREEN, MF_BYCOMMAND | 
1801                                    (cfg.resize_action == RESIZE_DISABLED)
1802                                    ? MF_GRAYED : MF_ENABLED);
1803                     /* Gracefully unzoom if necessary */
1804                     if (IsZoomed(hwnd) &&
1805                         (cfg.resize_action == RESIZE_DISABLED)) {
1806                         ShowWindow(hwnd, SW_RESTORE);
1807                     }
1808                 }
1809
1810                 /* Pass new config data to the logging module */
1811                 log_reconfig(logctx, &cfg);
1812
1813                 sfree(logpal);
1814                 /*
1815                  * Flush the line discipline's edit buffer in the
1816                  * case where local editing has just been disabled.
1817                  */
1818                 ldisc_send(ldisc, NULL, 0, 0);
1819                 if (pal)
1820                     DeleteObject(pal);
1821                 logpal = NULL;
1822                 pal = NULL;
1823                 cfgtopalette();
1824                 init_palette();
1825
1826                 /* Pass new config data to the terminal */
1827                 term_reconfig(term, &cfg);
1828
1829                 /* Pass new config data to the back end */
1830                 back->reconfig(backhandle, &cfg);
1831
1832                 /* Screen size changed ? */
1833                 if (cfg.height != prev_cfg.height ||
1834                     cfg.width != prev_cfg.width ||
1835                     cfg.savelines != prev_cfg.savelines ||
1836                     cfg.resize_action == RESIZE_FONT ||
1837                     (cfg.resize_action == RESIZE_EITHER && IsZoomed(hwnd)) ||
1838                     cfg.resize_action == RESIZE_DISABLED)
1839                     term_size(term, cfg.height, cfg.width, cfg.savelines);
1840
1841                 /* Enable or disable the scroll bar, etc */
1842                 {
1843                     LONG nflg, flag = GetWindowLong(hwnd, GWL_STYLE);
1844                     LONG nexflag, exflag =
1845                         GetWindowLong(hwnd, GWL_EXSTYLE);
1846
1847                     nexflag = exflag;
1848                     if (cfg.alwaysontop != prev_cfg.alwaysontop) {
1849                         if (cfg.alwaysontop) {
1850                             nexflag |= WS_EX_TOPMOST;
1851                             SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0,
1852                                          SWP_NOMOVE | SWP_NOSIZE);
1853                         } else {
1854                             nexflag &= ~(WS_EX_TOPMOST);
1855                             SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0,
1856                                          SWP_NOMOVE | SWP_NOSIZE);
1857                         }
1858                     }
1859                     if (cfg.sunken_edge)
1860                         nexflag |= WS_EX_CLIENTEDGE;
1861                     else
1862                         nexflag &= ~(WS_EX_CLIENTEDGE);
1863
1864                     nflg = flag;
1865                     if (is_full_screen() ?
1866                         cfg.scrollbar_in_fullscreen : cfg.scrollbar)
1867                         nflg |= WS_VSCROLL;
1868                     else
1869                         nflg &= ~WS_VSCROLL;
1870
1871                     if (cfg.resize_action == RESIZE_DISABLED ||
1872                         is_full_screen())
1873                         nflg &= ~WS_THICKFRAME;
1874                     else
1875                         nflg |= WS_THICKFRAME;
1876
1877                     if (cfg.resize_action == RESIZE_DISABLED)
1878                         nflg &= ~WS_MAXIMIZEBOX;
1879                     else
1880                         nflg |= WS_MAXIMIZEBOX;
1881
1882                     if (nflg != flag || nexflag != exflag) {
1883                         if (nflg != flag)
1884                             SetWindowLong(hwnd, GWL_STYLE, nflg);
1885                         if (nexflag != exflag)
1886                             SetWindowLong(hwnd, GWL_EXSTYLE, nexflag);
1887
1888                         SetWindowPos(hwnd, NULL, 0, 0, 0, 0,
1889                                      SWP_NOACTIVATE | SWP_NOCOPYBITS |
1890                                      SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
1891                                      SWP_FRAMECHANGED);
1892
1893                         init_lvl = 2;
1894                     }
1895                 }
1896
1897                 /* Oops */
1898                 if (cfg.resize_action == RESIZE_DISABLED && IsZoomed(hwnd)) {
1899                     force_normal(hwnd);
1900                     init_lvl = 2;
1901                 }
1902
1903                 set_title(NULL, cfg.wintitle);
1904                 if (IsIconic(hwnd)) {
1905                     SetWindowText(hwnd,
1906                                   cfg.win_name_always ? window_name :
1907                                   icon_name);
1908                 }
1909
1910                 if (strcmp(cfg.font.name, prev_cfg.font.name) != 0 ||
1911                     strcmp(cfg.line_codepage, prev_cfg.line_codepage) != 0 ||
1912                     cfg.font.isbold != prev_cfg.font.isbold ||
1913                     cfg.font.height != prev_cfg.font.height ||
1914                     cfg.font.charset != prev_cfg.font.charset ||
1915                     cfg.vtmode != prev_cfg.vtmode ||
1916                     cfg.bold_colour != prev_cfg.bold_colour ||
1917                     cfg.resize_action == RESIZE_DISABLED ||
1918                     cfg.resize_action == RESIZE_EITHER ||
1919                     (cfg.resize_action != prev_cfg.resize_action))
1920                     init_lvl = 2;
1921
1922                 InvalidateRect(hwnd, NULL, TRUE);
1923                 reset_window(init_lvl);
1924                 net_pending_errors();
1925             }
1926             break;
1927           case IDM_COPYALL:
1928             term_copyall(term);
1929             break;
1930           case IDM_CLRSB:
1931             term_clrsb(term);
1932             break;
1933           case IDM_RESET:
1934             term_pwron(term);
1935             ldisc_send(ldisc, NULL, 0, 0);
1936             break;
1937           case IDM_ABOUT:
1938             showabout(hwnd);
1939             break;
1940           case IDM_HELP:
1941             WinHelp(hwnd, help_path,
1942                     help_has_contents ? HELP_FINDER : HELP_CONTENTS, 0);
1943             break;
1944           case SC_MOUSEMENU:
1945             /*
1946              * We get this if the System menu has been activated
1947              * using the mouse.
1948              */
1949             show_mouseptr(1);
1950             break;
1951           case SC_KEYMENU:
1952             /*
1953              * We get this if the System menu has been activated
1954              * using the keyboard. This might happen from within
1955              * TranslateKey, in which case it really wants to be
1956              * followed by a `space' character to actually _bring
1957              * the menu up_ rather than just sitting there in
1958              * `ready to appear' state.
1959              */
1960             show_mouseptr(1);          /* make sure pointer is visible */
1961             if( lParam == 0 )
1962                 PostMessage(hwnd, WM_CHAR, ' ', 0);
1963             break;
1964           case IDM_FULLSCREEN:
1965             flip_full_screen();
1966             break;
1967           default:
1968             if (wParam >= IDM_SAVED_MIN && wParam <= IDM_SAVED_MAX) {
1969                 SendMessage(hwnd, WM_SYSCOMMAND, IDM_SAVEDSESS, wParam);
1970             }
1971             if (wParam >= IDM_SPECIAL_MIN && wParam <= IDM_SPECIAL_MAX) {
1972                 int i = (wParam - IDM_SPECIAL_MIN) / 0x10;
1973                 int j;
1974                 /*
1975                  * Ensure we haven't been sent a bogus SYSCOMMAND
1976                  * which would cause us to reference invalid memory
1977                  * and crash. Perhaps I'm just too paranoid here.
1978                  */
1979                 for (j = 0; j < i; j++)
1980                     if (!specials || !specials[j].name)
1981                         break;
1982                 if (j == i) {
1983                     back->special(backhandle, specials[i].code);
1984                     net_pending_errors();
1985                 }
1986             }
1987         }
1988         break;
1989
1990 #define X_POS(l) ((int)(short)LOWORD(l))
1991 #define Y_POS(l) ((int)(short)HIWORD(l))
1992
1993 #define TO_CHR_X(x) ((((x)<0 ? (x)-font_width+1 : (x))-offset_width) / font_width)
1994 #define TO_CHR_Y(y) ((((y)<0 ? (y)-font_height+1: (y))-offset_height) / font_height)
1995       case WM_LBUTTONDOWN:
1996       case WM_MBUTTONDOWN:
1997       case WM_RBUTTONDOWN:
1998       case WM_LBUTTONUP:
1999       case WM_MBUTTONUP:
2000       case WM_RBUTTONUP:
2001         {
2002             int button, press;
2003
2004             switch (message) {
2005               case WM_LBUTTONDOWN:
2006                 button = MBT_LEFT;
2007                 press = 1;
2008                 break;
2009               case WM_MBUTTONDOWN:
2010                 button = MBT_MIDDLE;
2011                 press = 1;
2012                 break;
2013               case WM_RBUTTONDOWN:
2014                 button = MBT_RIGHT;
2015                 press = 1;
2016                 break;
2017               case WM_LBUTTONUP:
2018                 button = MBT_LEFT;
2019                 press = 0;
2020                 break;
2021               case WM_MBUTTONUP:
2022                 button = MBT_MIDDLE;
2023                 press = 0;
2024                 break;
2025               case WM_RBUTTONUP:
2026                 button = MBT_RIGHT;
2027                 press = 0;
2028                 break;
2029               default:
2030                 button = press = 0;    /* shouldn't happen */
2031             }
2032             show_mouseptr(1);
2033             /*
2034              * Special case: in full-screen mode, if the left
2035              * button is clicked in the very top left corner of the
2036              * window, we put up the System menu instead of doing
2037              * selection.
2038              */
2039             if (is_full_screen() && press && button == MBT_LEFT &&
2040                 X_POS(lParam) == 0 && Y_POS(lParam) == 0) {
2041                 SendMessage(hwnd, WM_SYSCOMMAND, SC_MOUSEMENU, 0);
2042                 return 0;
2043             }
2044             if (press) {
2045                 click(button,
2046                       TO_CHR_X(X_POS(lParam)), TO_CHR_Y(Y_POS(lParam)),
2047                       wParam & MK_SHIFT, wParam & MK_CONTROL,
2048                       is_alt_pressed());
2049                 SetCapture(hwnd);
2050             } else {
2051                 term_mouse(term, button, translate_button(button), MA_RELEASE,
2052                            TO_CHR_X(X_POS(lParam)),
2053                            TO_CHR_Y(Y_POS(lParam)), wParam & MK_SHIFT,
2054                            wParam & MK_CONTROL, is_alt_pressed());
2055                 ReleaseCapture();
2056             }
2057         }
2058         return 0;
2059       case WM_MOUSEMOVE:
2060         show_mouseptr(1);
2061         /*
2062          * Add the mouse position and message time to the random
2063          * number noise.
2064          */
2065         noise_ultralight(lParam);
2066
2067         if (wParam & (MK_LBUTTON | MK_MBUTTON | MK_RBUTTON) &&
2068             GetCapture() == hwnd) {
2069             Mouse_Button b;
2070             if (wParam & MK_LBUTTON)
2071                 b = MBT_LEFT;
2072             else if (wParam & MK_MBUTTON)
2073                 b = MBT_MIDDLE;
2074             else
2075                 b = MBT_RIGHT;
2076             term_mouse(term, b, translate_button(b), MA_DRAG,
2077                        TO_CHR_X(X_POS(lParam)),
2078                        TO_CHR_Y(Y_POS(lParam)), wParam & MK_SHIFT,
2079                        wParam & MK_CONTROL, is_alt_pressed());
2080         }
2081         return 0;
2082       case WM_NCMOUSEMOVE:
2083         show_mouseptr(1);
2084         noise_ultralight(lParam);
2085         return 0;
2086       case WM_IGNORE_CLIP:
2087         ignore_clip = wParam;          /* don't panic on DESTROYCLIPBOARD */
2088         break;
2089       case WM_DESTROYCLIPBOARD:
2090         if (!ignore_clip)
2091             term_deselect(term);
2092         ignore_clip = FALSE;
2093         return 0;
2094       case WM_PAINT:
2095         {
2096             PAINTSTRUCT p;
2097             HideCaret(hwnd);
2098             hdc = BeginPaint(hwnd, &p);
2099             if (pal) {
2100                 SelectPalette(hdc, pal, TRUE);
2101                 RealizePalette(hdc);
2102             }
2103             term_paint(term, hdc, 
2104                        (p.rcPaint.left-offset_width)/font_width,
2105                        (p.rcPaint.top-offset_height)/font_height,
2106                        (p.rcPaint.right-offset_width-1)/font_width,
2107                        (p.rcPaint.bottom-offset_height-1)/font_height,
2108                        is_alt_pressed());
2109
2110             if (p.fErase ||
2111                 p.rcPaint.left  < offset_width  ||
2112                 p.rcPaint.top   < offset_height ||
2113                 p.rcPaint.right >= offset_width + font_width*term->cols ||
2114                 p.rcPaint.bottom>= offset_height + font_height*term->rows)
2115             {
2116                 HBRUSH fillcolour, oldbrush;
2117                 HPEN   edge, oldpen;
2118                 fillcolour = CreateSolidBrush (
2119                                     colours[(ATTR_DEFBG>>ATTR_BGSHIFT)*2]);
2120                 oldbrush = SelectObject(hdc, fillcolour);
2121                 edge = CreatePen(PS_SOLID, 0, 
2122                                     colours[(ATTR_DEFBG>>ATTR_BGSHIFT)*2]);
2123                 oldpen = SelectObject(hdc, edge);
2124
2125                 /*
2126                  * Jordan Russell reports that this apparently
2127                  * ineffectual IntersectClipRect() call masks a
2128                  * Windows NT/2K bug causing strange display
2129                  * problems when the PuTTY window is taller than
2130                  * the primary monitor. It seems harmless enough...
2131                  */
2132                 IntersectClipRect(hdc,
2133                         p.rcPaint.left, p.rcPaint.top,
2134                         p.rcPaint.right, p.rcPaint.bottom);
2135
2136                 ExcludeClipRect(hdc, 
2137                         offset_width, offset_height,
2138                         offset_width+font_width*term->cols,
2139                         offset_height+font_height*term->rows);
2140
2141                 Rectangle(hdc, p.rcPaint.left, p.rcPaint.top, 
2142                           p.rcPaint.right, p.rcPaint.bottom);
2143
2144                 // SelectClipRgn(hdc, NULL);
2145
2146                 SelectObject(hdc, oldbrush);
2147                 DeleteObject(fillcolour);
2148                 SelectObject(hdc, oldpen);
2149                 DeleteObject(edge);
2150             }
2151             SelectObject(hdc, GetStockObject(SYSTEM_FONT));
2152             SelectObject(hdc, GetStockObject(WHITE_PEN));
2153             EndPaint(hwnd, &p);
2154             ShowCaret(hwnd);
2155         }
2156         return 0;
2157       case WM_NETEVENT:
2158         /* Notice we can get multiple netevents, FD_READ, FD_WRITE etc
2159          * but the only one that's likely to try to overload us is FD_READ.
2160          * This means buffering just one is fine.
2161          */
2162         if (pending_netevent)
2163             enact_pending_netevent();
2164
2165         pending_netevent = TRUE;
2166         pend_netevent_wParam = wParam;
2167         pend_netevent_lParam = lParam;
2168         if (WSAGETSELECTEVENT(lParam) != FD_READ)
2169             enact_pending_netevent();
2170
2171         time(&last_movement);
2172         return 0;
2173       case WM_SETFOCUS:
2174         term->has_focus = TRUE;
2175         CreateCaret(hwnd, caretbm, font_width, font_height);
2176         ShowCaret(hwnd);
2177         flash_window(0);               /* stop */
2178         compose_state = 0;
2179         term_out(term);
2180         term_update(term);
2181         break;
2182       case WM_KILLFOCUS:
2183         show_mouseptr(1);
2184         term->has_focus = FALSE;
2185         DestroyCaret();
2186         caret_x = caret_y = -1;        /* ensure caret is replaced next time */
2187         term_out(term);
2188         term_update(term);
2189         break;
2190       case WM_ENTERSIZEMOVE:
2191 #ifdef RDB_DEBUG_PATCH
2192         debug((27, "WM_ENTERSIZEMOVE"));
2193 #endif
2194         EnableSizeTip(1);
2195         resizing = TRUE;
2196         need_backend_resize = FALSE;
2197         break;
2198       case WM_EXITSIZEMOVE:
2199         EnableSizeTip(0);
2200         resizing = FALSE;
2201 #ifdef RDB_DEBUG_PATCH
2202         debug((27, "WM_EXITSIZEMOVE"));
2203 #endif
2204         if (need_backend_resize) {
2205             term_size(term, cfg.height, cfg.width, cfg.savelines);
2206             InvalidateRect(hwnd, NULL, TRUE);
2207         }
2208         break;
2209       case WM_SIZING:
2210         /*
2211          * This does two jobs:
2212          * 1) Keep the sizetip uptodate
2213          * 2) Make sure the window size is _stepped_ in units of the font size.
2214          */
2215         if (cfg.resize_action != RESIZE_FONT && !is_alt_pressed()) {
2216             int width, height, w, h, ew, eh;
2217             LPRECT r = (LPRECT) lParam;
2218
2219             if ( !need_backend_resize && cfg.resize_action == RESIZE_EITHER &&
2220                     (cfg.height != term->rows || cfg.width != term->cols )) {
2221                 /* 
2222                  * Great! It seems that both the terminal size and the
2223                  * font size have been changed and the user is now dragging.
2224                  * 
2225                  * It will now be difficult to get back to the configured
2226                  * font size!
2227                  *
2228                  * This would be easier but it seems to be too confusing.
2229
2230                 term_size(term, cfg.height, cfg.width, cfg.savelines);
2231                 reset_window(2);
2232                  */
2233                 cfg.height=term->rows; cfg.width=term->cols;
2234
2235                 InvalidateRect(hwnd, NULL, TRUE);
2236                 need_backend_resize = TRUE;
2237             }
2238
2239             width = r->right - r->left - extra_width;
2240             height = r->bottom - r->top - extra_height;
2241             w = (width + font_width / 2) / font_width;
2242             if (w < 1)
2243                 w = 1;
2244             h = (height + font_height / 2) / font_height;
2245             if (h < 1)
2246                 h = 1;
2247             UpdateSizeTip(hwnd, w, h);
2248             ew = width - w * font_width;
2249             eh = height - h * font_height;
2250             if (ew != 0) {
2251                 if (wParam == WMSZ_LEFT ||
2252                     wParam == WMSZ_BOTTOMLEFT || wParam == WMSZ_TOPLEFT)
2253                     r->left += ew;
2254                 else
2255                     r->right -= ew;
2256             }
2257             if (eh != 0) {
2258                 if (wParam == WMSZ_TOP ||
2259                     wParam == WMSZ_TOPRIGHT || wParam == WMSZ_TOPLEFT)
2260                     r->top += eh;
2261                 else
2262                     r->bottom -= eh;
2263             }
2264             if (ew || eh)
2265                 return 1;
2266             else
2267                 return 0;
2268         } else {
2269             int width, height, w, h, rv = 0;
2270             int ex_width = extra_width + (cfg.window_border - offset_width) * 2;
2271             int ex_height = extra_height + (cfg.window_border - offset_height) * 2;
2272             LPRECT r = (LPRECT) lParam;
2273
2274             width = r->right - r->left - ex_width;
2275             height = r->bottom - r->top - ex_height;
2276
2277             w = (width + term->cols/2)/term->cols;
2278             h = (height + term->rows/2)/term->rows;
2279             if ( r->right != r->left + w*term->cols + ex_width)
2280                 rv = 1;
2281
2282             if (wParam == WMSZ_LEFT ||
2283                 wParam == WMSZ_BOTTOMLEFT || wParam == WMSZ_TOPLEFT)
2284                 r->left = r->right - w*term->cols - ex_width;
2285             else
2286                 r->right = r->left + w*term->cols + ex_width;
2287
2288             if (r->bottom != r->top + h*term->rows + ex_height)
2289                 rv = 1;
2290
2291             if (wParam == WMSZ_TOP ||
2292                 wParam == WMSZ_TOPRIGHT || wParam == WMSZ_TOPLEFT)
2293                 r->top = r->bottom - h*term->rows - ex_height;
2294             else
2295                 r->bottom = r->top + h*term->rows + ex_height;
2296
2297             return rv;
2298         }
2299         /* break;  (never reached) */
2300       case WM_FULLSCR_ON_MAX:
2301         fullscr_on_max = TRUE;
2302         break;
2303       case WM_MOVE:
2304         sys_cursor_update();
2305         break;
2306       case WM_SIZE:
2307 #ifdef RDB_DEBUG_PATCH
2308         debug((27, "WM_SIZE %s (%d,%d)",
2309                 (wParam == SIZE_MINIMIZED) ? "SIZE_MINIMIZED":
2310                 (wParam == SIZE_MAXIMIZED) ? "SIZE_MAXIMIZED":
2311                 (wParam == SIZE_RESTORED && resizing) ? "to":
2312                 (wParam == SIZE_RESTORED) ? "SIZE_RESTORED":
2313                 "...",
2314             LOWORD(lParam), HIWORD(lParam)));
2315 #endif
2316         if (wParam == SIZE_MINIMIZED)
2317             SetWindowText(hwnd,
2318                           cfg.win_name_always ? window_name : icon_name);
2319         if (wParam == SIZE_RESTORED || wParam == SIZE_MAXIMIZED)
2320             SetWindowText(hwnd, window_name);
2321         if (wParam == SIZE_RESTORED)
2322             clear_full_screen();
2323         if (wParam == SIZE_MAXIMIZED && fullscr_on_max) {
2324             fullscr_on_max = FALSE;
2325             make_full_screen();
2326         }
2327
2328         if (cfg.resize_action == RESIZE_DISABLED) {
2329             /* A resize, well it better be a minimize. */
2330             reset_window(-1);
2331         } else {
2332
2333             int width, height, w, h;
2334
2335             width = LOWORD(lParam);
2336             height = HIWORD(lParam);
2337
2338             if (!resizing) {
2339                 if (wParam == SIZE_MAXIMIZED && !was_zoomed) {
2340                     was_zoomed = 1;
2341                     prev_rows = term->rows;
2342                     prev_cols = term->cols;
2343                     if (cfg.resize_action == RESIZE_TERM) {
2344                         w = width / font_width;
2345                         if (w < 1) w = 1;
2346                         h = height / font_height;
2347                         if (h < 1) h = 1;
2348
2349                         term_size(term, h, w, cfg.savelines);
2350                     }
2351                     reset_window(0);
2352                 } else if (wParam == SIZE_RESTORED && was_zoomed) {
2353                     was_zoomed = 0;
2354                     if (cfg.resize_action == RESIZE_TERM)
2355                         term_size(term, prev_rows, prev_cols, cfg.savelines);
2356                     if (cfg.resize_action != RESIZE_FONT)
2357                         reset_window(2);
2358                     else
2359                         reset_window(0);
2360                 }
2361                 /* This is an unexpected resize, these will normally happen
2362                  * if the window is too large. Probably either the user
2363                  * selected a huge font or the screen size has changed.
2364                  *
2365                  * This is also called with minimize.
2366                  */
2367                 else reset_window(-1);
2368             }
2369
2370             /*
2371              * Don't call back->size in mid-resize. (To prevent
2372              * massive numbers of resize events getting sent
2373              * down the connection during an NT opaque drag.)
2374              */
2375             if (resizing) {
2376                 if (cfg.resize_action != RESIZE_FONT && !is_alt_pressed()) {
2377                     need_backend_resize = TRUE;
2378                     w = (width-cfg.window_border*2) / font_width;
2379                     if (w < 1) w = 1;
2380                     h = (height-cfg.window_border*2) / font_height;
2381                     if (h < 1) h = 1;
2382
2383                     cfg.height = h;
2384                     cfg.width = w;
2385                 } else 
2386                     reset_window(0);
2387             }
2388         }
2389         sys_cursor_update();
2390         return 0;
2391       case WM_VSCROLL:
2392         switch (LOWORD(wParam)) {
2393           case SB_BOTTOM:
2394             term_scroll(term, -1, 0);
2395             break;
2396           case SB_TOP:
2397             term_scroll(term, +1, 0);
2398             break;
2399           case SB_LINEDOWN:
2400             term_scroll(term, 0, +1);
2401             break;
2402           case SB_LINEUP:
2403             term_scroll(term, 0, -1);
2404             break;
2405           case SB_PAGEDOWN:
2406             term_scroll(term, 0, +term->rows / 2);
2407             break;
2408           case SB_PAGEUP:
2409             term_scroll(term, 0, -term->rows / 2);
2410             break;
2411           case SB_THUMBPOSITION:
2412           case SB_THUMBTRACK:
2413             term_scroll(term, 1, HIWORD(wParam));
2414             break;
2415         }
2416         break;
2417       case WM_PALETTECHANGED:
2418         if ((HWND) wParam != hwnd && pal != NULL) {
2419             HDC hdc = get_ctx(NULL);
2420             if (hdc) {
2421                 if (RealizePalette(hdc) > 0)
2422                     UpdateColors(hdc);
2423                 free_ctx(hdc);
2424             }
2425         }
2426         break;
2427       case WM_QUERYNEWPALETTE:
2428         if (pal != NULL) {
2429             HDC hdc = get_ctx(NULL);
2430             if (hdc) {
2431                 if (RealizePalette(hdc) > 0)
2432                     UpdateColors(hdc);
2433                 free_ctx(hdc);
2434                 return TRUE;
2435             }
2436         }
2437         return FALSE;
2438       case WM_KEYDOWN:
2439       case WM_SYSKEYDOWN:
2440       case WM_KEYUP:
2441       case WM_SYSKEYUP:
2442         /*
2443          * Add the scan code and keypress timing to the random
2444          * number noise.
2445          */
2446         noise_ultralight(lParam);
2447
2448         /*
2449          * We don't do TranslateMessage since it disassociates the
2450          * resulting CHAR message from the KEYDOWN that sparked it,
2451          * which we occasionally don't want. Instead, we process
2452          * KEYDOWN, and call the Win32 translator functions so that
2453          * we get the translations under _our_ control.
2454          */
2455         {
2456             unsigned char buf[20];
2457             int len;
2458
2459             if (wParam == VK_PROCESSKEY) {
2460                 MSG m;
2461                 m.hwnd = hwnd;
2462                 m.message = WM_KEYDOWN;
2463                 m.wParam = wParam;
2464                 m.lParam = lParam & 0xdfff;
2465                 TranslateMessage(&m);
2466             } else {
2467                 len = TranslateKey(message, wParam, lParam, buf);
2468                 if (len == -1)
2469                     return DefWindowProc(hwnd, message, wParam, lParam);
2470
2471                 if (len != 0) {
2472                     /*
2473                      * Interrupt an ongoing paste. I'm not sure
2474                      * this is sensible, but for the moment it's
2475                      * preferable to having to faff about buffering
2476                      * things.
2477                      */
2478                     term_nopaste(term);
2479
2480                     /*
2481                      * We need not bother about stdin backlogs
2482                      * here, because in GUI PuTTY we can't do
2483                      * anything about it anyway; there's no means
2484                      * of asking Windows to hold off on KEYDOWN
2485                      * messages. We _have_ to buffer everything
2486                      * we're sent.
2487                      */
2488                     term_seen_key_event(term);
2489                     ldisc_send(ldisc, buf, len, 1);
2490                     show_mouseptr(0);
2491                 }
2492             }
2493         }
2494         net_pending_errors();
2495         return 0;
2496       case WM_INPUTLANGCHANGE:
2497         /* wParam == Font number */
2498         /* lParam == Locale */
2499         set_input_locale((HKL)lParam);
2500         sys_cursor_update();
2501         break;
2502       case WM_IME_NOTIFY:
2503         if(wParam == IMN_SETOPENSTATUS) {
2504             HIMC hImc = ImmGetContext(hwnd);
2505             ImmSetCompositionFont(hImc, &lfont);
2506             ImmReleaseContext(hwnd, hImc);
2507             return 0;
2508         }
2509         break;
2510       case WM_IME_COMPOSITION:
2511         {
2512             HIMC hIMC;
2513             int n;
2514             char *buff;
2515
2516             if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS || 
2517                 osVersion.dwPlatformId == VER_PLATFORM_WIN32s) break; /* no Unicode */
2518
2519             if ((lParam & GCS_RESULTSTR) == 0) /* Composition unfinished. */
2520                 break; /* fall back to DefWindowProc */
2521
2522             hIMC = ImmGetContext(hwnd);
2523             n = ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, NULL, 0);
2524
2525             if (n > 0) {
2526                 int i;
2527                 buff = snewn(n, char);
2528                 ImmGetCompositionStringW(hIMC, GCS_RESULTSTR, buff, n);
2529                 /*
2530                  * Jaeyoun Chung reports that Korean character
2531                  * input doesn't work correctly if we do a single
2532                  * luni_send() covering the whole of buff. So
2533                  * instead we luni_send the characters one by one.
2534                  */
2535                 term_seen_key_event(term);
2536                 for (i = 0; i < n; i += 2) {
2537                     luni_send(ldisc, (unsigned short *)(buff+i), 1, 1);
2538                 }
2539                 free(buff);
2540             }
2541             ImmReleaseContext(hwnd, hIMC);
2542             return 1;
2543         }
2544
2545       case WM_IME_CHAR:
2546         if (wParam & 0xFF00) {
2547             unsigned char buf[2];
2548
2549             buf[1] = wParam;
2550             buf[0] = wParam >> 8;
2551             term_seen_key_event(term);
2552             lpage_send(ldisc, kbd_codepage, buf, 2, 1);
2553         } else {
2554             char c = (unsigned char) wParam;
2555             term_seen_key_event(term);
2556             lpage_send(ldisc, kbd_codepage, &c, 1, 1);
2557         }
2558         return (0);
2559       case WM_CHAR:
2560       case WM_SYSCHAR:
2561         /*
2562          * Nevertheless, we are prepared to deal with WM_CHAR
2563          * messages, should they crop up. So if someone wants to
2564          * post the things to us as part of a macro manoeuvre,
2565          * we're ready to cope.
2566          */
2567         {
2568             char c = (unsigned char)wParam;
2569             term_seen_key_event(term);
2570             lpage_send(ldisc, CP_ACP, &c, 1, 1);
2571         }
2572         return 0;
2573       case WM_SETCURSOR:
2574         if (send_raw_mouse && LOWORD(lParam) == HTCLIENT) {
2575             SetCursor(LoadCursor(NULL, IDC_ARROW));
2576             return TRUE;
2577         }
2578       default:
2579         if (message == wm_mousewheel || message == WM_MOUSEWHEEL) {
2580             int shift_pressed=0, control_pressed=0;
2581
2582             if (message == WM_MOUSEWHEEL) {
2583                 wheel_accumulator += (short)HIWORD(wParam);
2584                 shift_pressed=LOWORD(wParam) & MK_SHIFT;
2585                 control_pressed=LOWORD(wParam) & MK_CONTROL;
2586             } else {
2587                 BYTE keys[256];
2588                 wheel_accumulator += (int)wParam;
2589                 if (GetKeyboardState(keys)!=0) {
2590                     shift_pressed=keys[VK_SHIFT]&0x80;
2591                     control_pressed=keys[VK_CONTROL]&0x80;
2592                 }
2593             }
2594
2595             /* process events when the threshold is reached */
2596             while (abs(wheel_accumulator) >= WHEEL_DELTA) {
2597                 int b;
2598
2599                 /* reduce amount for next time */
2600                 if (wheel_accumulator > 0) {
2601                     b = MBT_WHEEL_UP;
2602                     wheel_accumulator -= WHEEL_DELTA;
2603                 } else if (wheel_accumulator < 0) {
2604                     b = MBT_WHEEL_DOWN;
2605                     wheel_accumulator += WHEEL_DELTA;
2606                 } else
2607                     break;
2608
2609                 if (send_raw_mouse &&
2610                     !(cfg.mouse_override && shift_pressed)) {
2611                     /* send a mouse-down followed by a mouse up */
2612                     term_mouse(term, b, translate_button(b),
2613                                MA_CLICK,
2614                                TO_CHR_X(X_POS(lParam)),
2615                                TO_CHR_Y(Y_POS(lParam)), shift_pressed,
2616                                control_pressed, is_alt_pressed());
2617                     term_mouse(term, b, translate_button(b),
2618                                MA_RELEASE, TO_CHR_X(X_POS(lParam)),
2619                                TO_CHR_Y(Y_POS(lParam)), shift_pressed,
2620                                control_pressed, is_alt_pressed());
2621                 } else {
2622                     /* trigger a scroll */
2623                     term_scroll(term, 0,
2624                                 b == MBT_WHEEL_UP ?
2625                                 -term->rows / 2 : term->rows / 2);
2626                 }
2627             }
2628             return 0;
2629         }
2630     }
2631
2632     return DefWindowProc(hwnd, message, wParam, lParam);
2633 }
2634
2635 /*
2636  * Move the system caret. (We maintain one, even though it's
2637  * invisible, for the benefit of blind people: apparently some
2638  * helper software tracks the system caret, so we should arrange to
2639  * have one.)
2640  */
2641 void sys_cursor(void *frontend, int x, int y)
2642 {
2643     int cx, cy;
2644
2645     if (!term->has_focus) return;
2646
2647     /*
2648      * Avoid gratuitously re-updating the cursor position and IMM
2649      * window if there's no actual change required.
2650      */
2651     cx = x * font_width + offset_width;
2652     cy = y * font_height + offset_height;
2653     if (cx == caret_x && cy == caret_y)
2654         return;
2655     caret_x = cx;
2656     caret_y = cy;
2657
2658     sys_cursor_update();
2659 }
2660
2661 static void sys_cursor_update(void)
2662 {
2663     COMPOSITIONFORM cf;
2664     HIMC hIMC;
2665
2666     if (!term->has_focus) return;
2667
2668     if (caret_x < 0 || caret_y < 0)
2669         return;
2670
2671     SetCaretPos(caret_x, caret_y);
2672
2673     /* IMM calls on Win98 and beyond only */
2674     if(osVersion.dwPlatformId == VER_PLATFORM_WIN32s) return; /* 3.11 */
2675     
2676     if(osVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS &&
2677             osVersion.dwMinorVersion == 0) return; /* 95 */
2678
2679     /* we should have the IMM functions */
2680     hIMC = ImmGetContext(hwnd);
2681     cf.dwStyle = CFS_POINT;
2682     cf.ptCurrentPos.x = caret_x;
2683     cf.ptCurrentPos.y = caret_y;
2684     ImmSetCompositionWindow(hIMC, &cf);
2685
2686     ImmReleaseContext(hwnd, hIMC);
2687 }
2688
2689 /*
2690  * Draw a line of text in the window, at given character
2691  * coordinates, in given attributes.
2692  *
2693  * We are allowed to fiddle with the contents of `text'.
2694  */
2695 void do_text(Context ctx, int x, int y, char *text, int len,
2696              unsigned long attr, int lattr)
2697 {
2698     COLORREF fg, bg, t;
2699     int nfg, nbg, nfont;
2700     HDC hdc = ctx;
2701     RECT line_box;
2702     int force_manual_underline = 0;
2703     int fnt_width = font_width * (1 + (lattr != LATTR_NORM));
2704     int char_width = fnt_width;
2705     int text_adjust = 0;
2706     static int *IpDx = 0, IpDxLEN = 0;
2707
2708     if (attr & ATTR_WIDE)
2709         char_width *= 2;
2710
2711     if (len > IpDxLEN || IpDx[0] != char_width) {
2712         int i;
2713         if (len > IpDxLEN) {
2714             sfree(IpDx);
2715             IpDx = snewn(len + 16, int);
2716             IpDxLEN = (len + 16);
2717         }
2718         for (i = 0; i < IpDxLEN; i++)
2719             IpDx[i] = char_width;
2720     }
2721
2722     /* Only want the left half of double width lines */
2723     if (lattr != LATTR_NORM && x*2 >= term->cols)
2724         return;
2725
2726     x *= fnt_width;
2727     y *= font_height;
2728     x += offset_width;
2729     y += offset_height;
2730
2731     if ((attr & TATTR_ACTCURS) && (cfg.cursor_type == 0 || term->big_cursor)) {
2732         attr &= ATTR_CUR_AND | (bold_mode != BOLD_COLOURS ? ATTR_BOLD : 0);
2733         attr ^= ATTR_CUR_XOR;
2734     }
2735
2736     nfont = 0;
2737     if (cfg.vtmode == VT_POORMAN && lattr != LATTR_NORM) {
2738         /* Assume a poorman font is borken in other ways too. */
2739         lattr = LATTR_WIDE;
2740     } else
2741         switch (lattr) {
2742           case LATTR_NORM:
2743             break;
2744           case LATTR_WIDE:
2745             nfont |= FONT_WIDE;
2746             break;
2747           default:
2748             nfont |= FONT_WIDE + FONT_HIGH;
2749             break;
2750         }
2751     if (attr & ATTR_NARROW)
2752         nfont |= FONT_NARROW;
2753
2754     /* Special hack for the VT100 linedraw glyphs. */
2755     if ((attr & CSET_MASK) == 0x2300) {
2756         if (text[0] >= (char) 0xBA && text[0] <= (char) 0xBD) {
2757             switch ((unsigned char) (text[0])) {
2758               case 0xBA:
2759                 text_adjust = -2 * font_height / 5;
2760                 break;
2761               case 0xBB:
2762                 text_adjust = -1 * font_height / 5;
2763                 break;
2764               case 0xBC:
2765                 text_adjust = font_height / 5;
2766                 break;
2767               case 0xBD:
2768                 text_adjust = 2 * font_height / 5;
2769                 break;
2770             }
2771             if (lattr == LATTR_TOP || lattr == LATTR_BOT)
2772                 text_adjust *= 2;
2773             attr &= ~CSET_MASK;
2774             text[0] = (char) (ucsdata.unitab_xterm['q'] & CHAR_MASK);
2775             attr |= (ucsdata.unitab_xterm['q'] & CSET_MASK);
2776             if (attr & ATTR_UNDER) {
2777                 attr &= ~ATTR_UNDER;
2778                 force_manual_underline = 1;
2779             }
2780         }
2781     }
2782
2783     /* Anything left as an original character set is unprintable. */
2784     if (DIRECT_CHAR(attr)) {
2785         attr &= ~CSET_MASK;
2786         attr |= 0xFF00;
2787         memset(text, 0xFD, len);
2788     }
2789
2790     /* OEM CP */
2791     if ((attr & CSET_MASK) == ATTR_OEMCP)
2792         nfont |= FONT_OEM;
2793
2794     nfg = ((attr & ATTR_FGMASK) >> ATTR_FGSHIFT);
2795     nfg = 2 * (nfg & 0xF) + (nfg & 0x10 ? 1 : 0);
2796     nbg = ((attr & ATTR_BGMASK) >> ATTR_BGSHIFT);
2797     nbg = 2 * (nbg & 0xF) + (nbg & 0x10 ? 1 : 0);
2798     if (bold_mode == BOLD_FONT && (attr & ATTR_BOLD))
2799         nfont |= FONT_BOLD;
2800     if (und_mode == UND_FONT && (attr & ATTR_UNDER))
2801         nfont |= FONT_UNDERLINE;
2802     another_font(nfont);
2803     if (!fonts[nfont]) {
2804         if (nfont & FONT_UNDERLINE)
2805             force_manual_underline = 1;
2806         /* Don't do the same for manual bold, it could be bad news. */
2807
2808         nfont &= ~(FONT_BOLD | FONT_UNDERLINE);
2809     }
2810     another_font(nfont);
2811     if (!fonts[nfont])
2812         nfont = FONT_NORMAL;
2813     if (attr & ATTR_REVERSE) {
2814         t = nfg;
2815         nfg = nbg;
2816         nbg = t;
2817     }
2818     if (bold_mode == BOLD_COLOURS && (attr & ATTR_BOLD))
2819         nfg |= 1;
2820     if (bold_mode == BOLD_COLOURS && (attr & ATTR_BLINK))
2821         nbg |= 1;
2822     fg = colours[nfg];
2823     bg = colours[nbg];
2824     SelectObject(hdc, fonts[nfont]);
2825     SetTextColor(hdc, fg);
2826     SetBkColor(hdc, bg);
2827     SetBkMode(hdc, OPAQUE);
2828     line_box.left = x;
2829     line_box.top = y;
2830     line_box.right = x + char_width * len;
2831     line_box.bottom = y + font_height;
2832
2833     /* Only want the left half of double width lines */
2834     if (line_box.right > font_width*term->cols+offset_width)
2835         line_box.right = font_width*term->cols+offset_width;
2836
2837     /* We're using a private area for direct to font. (512 chars.) */
2838     if (ucsdata.dbcs_screenfont && (attr & CSET_MASK) == ATTR_ACP) {
2839         /* Ho Hum, dbcs fonts are a PITA! */
2840         /* To display on W9x I have to convert to UCS */
2841         static wchar_t *uni_buf = 0;
2842         static int uni_len = 0;
2843         int nlen, mptr;
2844         if (len > uni_len) {
2845             sfree(uni_buf);
2846             uni_len = len;
2847             uni_buf = snewn(uni_len, wchar_t);
2848         }
2849
2850         for(nlen = mptr = 0; mptr<len; mptr++) {
2851             uni_buf[nlen] = 0xFFFD;
2852             if (IsDBCSLeadByteEx(ucsdata.font_codepage, (BYTE) text[mptr])) {
2853                 IpDx[nlen] += char_width;
2854                 MultiByteToWideChar(ucsdata.font_codepage, MB_USEGLYPHCHARS,
2855                                    text+mptr, 2, uni_buf+nlen, 1);
2856                 mptr++;
2857             }
2858             else
2859             {
2860                 MultiByteToWideChar(ucsdata.font_codepage, MB_USEGLYPHCHARS,
2861                                    text+mptr, 1, uni_buf+nlen, 1);
2862             }
2863             nlen++;
2864         }
2865         if (nlen <= 0)
2866             return;                    /* Eeek! */
2867
2868         ExtTextOutW(hdc, x,
2869                     y - font_height * (lattr == LATTR_BOT) + text_adjust,
2870                     ETO_CLIPPED | ETO_OPAQUE, &line_box, uni_buf, nlen, IpDx);
2871         if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
2872             SetBkMode(hdc, TRANSPARENT);
2873             ExtTextOutW(hdc, x - 1,
2874                         y - font_height * (lattr ==
2875                                            LATTR_BOT) + text_adjust,
2876                         ETO_CLIPPED, &line_box, uni_buf, nlen, IpDx);
2877         }
2878
2879         IpDx[0] = -1;
2880     } else if (DIRECT_FONT(attr)) {
2881         ExtTextOut(hdc, x,
2882                    y - font_height * (lattr == LATTR_BOT) + text_adjust,
2883                    ETO_CLIPPED | ETO_OPAQUE, &line_box, text, len, IpDx);
2884         if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
2885             SetBkMode(hdc, TRANSPARENT);
2886
2887             /* GRR: This draws the character outside it's box and can leave
2888              * 'droppings' even with the clip box! I suppose I could loop it
2889              * one character at a time ... yuk. 
2890              * 
2891              * Or ... I could do a test print with "W", and use +1 or -1 for this
2892              * shift depending on if the leftmost column is blank...
2893              */
2894             ExtTextOut(hdc, x - 1,
2895                        y - font_height * (lattr ==
2896                                           LATTR_BOT) + text_adjust,
2897                        ETO_CLIPPED, &line_box, text, len, IpDx);
2898         }
2899     } else {
2900         /* And 'normal' unicode characters */
2901         static WCHAR *wbuf = NULL;
2902         static int wlen = 0;
2903         int i;
2904         if (wlen < len) {
2905             sfree(wbuf);
2906             wlen = len;
2907             wbuf = snewn(wlen, WCHAR);
2908         }
2909         for (i = 0; i < len; i++)
2910             wbuf[i] = (WCHAR) ((attr & CSET_MASK) + (text[i] & CHAR_MASK));
2911
2912         ExtTextOutW(hdc, x,
2913                     y - font_height * (lattr == LATTR_BOT) + text_adjust,
2914                     ETO_CLIPPED | ETO_OPAQUE, &line_box, wbuf, len, IpDx);
2915
2916         /* And the shadow bold hack. */
2917         if (bold_mode == BOLD_SHADOW && (attr & ATTR_BOLD)) {
2918             SetBkMode(hdc, TRANSPARENT);
2919             ExtTextOutW(hdc, x - 1,
2920                         y - font_height * (lattr ==
2921                                            LATTR_BOT) + text_adjust,
2922                         ETO_CLIPPED, &line_box, wbuf, len, IpDx);
2923         }
2924     }
2925     if (lattr != LATTR_TOP && (force_manual_underline ||
2926                                (und_mode == UND_LINE
2927                                 && (attr & ATTR_UNDER)))) {
2928         HPEN oldpen;
2929         int dec = descent;
2930         if (lattr == LATTR_BOT)
2931             dec = dec * 2 - font_height;
2932
2933         oldpen = SelectObject(hdc, CreatePen(PS_SOLID, 0, fg));
2934         MoveToEx(hdc, x, y + dec, NULL);
2935         LineTo(hdc, x + len * char_width, y + dec);
2936         oldpen = SelectObject(hdc, oldpen);
2937         DeleteObject(oldpen);
2938     }
2939 }
2940
2941 void do_cursor(Context ctx, int x, int y, char *text, int len,
2942                unsigned long attr, int lattr)
2943 {
2944
2945     int fnt_width;
2946     int char_width;
2947     HDC hdc = ctx;
2948     int ctype = cfg.cursor_type;
2949
2950     if ((attr & TATTR_ACTCURS) && (ctype == 0 || term->big_cursor)) {
2951         if (((attr & CSET_MASK) | (unsigned char) *text) != UCSWIDE) {
2952             do_text(ctx, x, y, text, len, attr, lattr);
2953             return;
2954         }
2955         ctype = 2;
2956         attr |= TATTR_RIGHTCURS;
2957     }
2958
2959     fnt_width = char_width = font_width * (1 + (lattr != LATTR_NORM));
2960     if (attr & ATTR_WIDE)
2961         char_width *= 2;
2962     x *= fnt_width;
2963     y *= font_height;
2964     x += offset_width;
2965     y += offset_height;
2966
2967     if ((attr & TATTR_PASCURS) && (ctype == 0 || term->big_cursor)) {
2968         POINT pts[5];
2969         HPEN oldpen;
2970         pts[0].x = pts[1].x = pts[4].x = x;
2971         pts[2].x = pts[3].x = x + char_width - 1;
2972         pts[0].y = pts[3].y = pts[4].y = y;
2973         pts[1].y = pts[2].y = y + font_height - 1;
2974         oldpen = SelectObject(hdc, CreatePen(PS_SOLID, 0, colours[23]));
2975         Polyline(hdc, pts, 5);
2976         oldpen = SelectObject(hdc, oldpen);
2977         DeleteObject(oldpen);
2978     } else if ((attr & (TATTR_ACTCURS | TATTR_PASCURS)) && ctype != 0) {
2979         int startx, starty, dx, dy, length, i;
2980         if (ctype == 1) {
2981             startx = x;
2982             starty = y + descent;
2983             dx = 1;
2984             dy = 0;
2985             length = char_width;
2986         } else {
2987             int xadjust = 0;
2988             if (attr & TATTR_RIGHTCURS)
2989                 xadjust = char_width - 1;
2990             startx = x + xadjust;
2991             starty = y;
2992             dx = 0;
2993             dy = 1;
2994             length = font_height;
2995         }
2996         if (attr & TATTR_ACTCURS) {
2997             HPEN oldpen;
2998             oldpen =
2999                 SelectObject(hdc, CreatePen(PS_SOLID, 0, colours[23]));
3000             MoveToEx(hdc, startx, starty, NULL);
3001             LineTo(hdc, startx + dx * length, starty + dy * length);
3002             oldpen = SelectObject(hdc, oldpen);
3003             DeleteObject(oldpen);
3004         } else {
3005             for (i = 0; i < length; i++) {
3006                 if (i % 2 == 0) {
3007                     SetPixel(hdc, startx, starty, colours[23]);
3008                 }
3009                 startx += dx;
3010                 starty += dy;
3011             }
3012         }
3013     }
3014 }
3015
3016 /* This function gets the actual width of a character in the normal font.
3017  */
3018 int char_width(Context ctx, int uc) {
3019     HDC hdc = ctx;
3020     int ibuf = 0;
3021
3022     /* If the font max is the same as the font ave width then this
3023      * function is a no-op.
3024      */
3025     if (!font_dualwidth) return 1;
3026
3027     switch (uc & CSET_MASK) {
3028       case ATTR_ASCII:
3029         uc = ucsdata.unitab_line[uc & 0xFF];
3030         break;
3031       case ATTR_LINEDRW:
3032         uc = ucsdata.unitab_xterm[uc & 0xFF];
3033         break;
3034       case ATTR_SCOACS:
3035         uc = ucsdata.unitab_scoacs[uc & 0xFF];
3036         break;
3037     }
3038     if (DIRECT_FONT(uc)) {
3039         if (ucsdata.dbcs_screenfont) return 1;
3040
3041         /* Speedup, I know of no font where ascii is the wrong width */
3042         if ((uc&CHAR_MASK) >= ' ' && (uc&CHAR_MASK)<= '~') 
3043             return 1;
3044
3045         if ( (uc & CSET_MASK) == ATTR_ACP ) {
3046             SelectObject(hdc, fonts[FONT_NORMAL]);
3047         } else if ( (uc & CSET_MASK) == ATTR_OEMCP ) {
3048             another_font(FONT_OEM);
3049             if (!fonts[FONT_OEM]) return 0;
3050
3051             SelectObject(hdc, fonts[FONT_OEM]);
3052         } else
3053             return 0;
3054
3055         if ( GetCharWidth32(hdc, uc&CHAR_MASK, uc&CHAR_MASK, &ibuf) != 1 && 
3056              GetCharWidth(hdc, uc&CHAR_MASK, uc&CHAR_MASK, &ibuf) != 1)
3057             return 0;
3058     } else {
3059         /* Speedup, I know of no font where ascii is the wrong width */
3060         if (uc >= ' ' && uc <= '~') return 1;
3061
3062         SelectObject(hdc, fonts[FONT_NORMAL]);
3063         if ( GetCharWidth32W(hdc, uc, uc, &ibuf) == 1 )
3064             /* Okay that one worked */ ;
3065         else if ( GetCharWidthW(hdc, uc, uc, &ibuf) == 1 )
3066             /* This should work on 9x too, but it's "less accurate" */ ;
3067         else
3068             return 0;
3069     }
3070
3071     ibuf += font_width / 2 -1;
3072     ibuf /= font_width;
3073
3074     return ibuf;
3075 }
3076
3077 /*
3078  * Translate a WM_(SYS)?KEY(UP|DOWN) message into a string of ASCII
3079  * codes. Returns number of bytes used or zero to drop the message
3080  * or -1 to forward the message to windows.
3081  */
3082 static int TranslateKey(UINT message, WPARAM wParam, LPARAM lParam,
3083                         unsigned char *output)
3084 {
3085     BYTE keystate[256];
3086     int scan, left_alt = 0, key_down, shift_state;
3087     int r, i, code;
3088     unsigned char *p = output;
3089     static int alt_sum = 0;
3090
3091     HKL kbd_layout = GetKeyboardLayout(0);
3092
3093     static WORD keys[3];
3094     static int compose_char = 0;
3095     static WPARAM compose_key = 0;
3096
3097     r = GetKeyboardState(keystate);
3098     if (!r)
3099         memset(keystate, 0, sizeof(keystate));
3100     else {
3101 #if 0
3102 #define SHOW_TOASCII_RESULT
3103         {                              /* Tell us all about key events */
3104             static BYTE oldstate[256];
3105             static int first = 1;
3106             static int scan;
3107             int ch;
3108             if (first)
3109                 memcpy(oldstate, keystate, sizeof(oldstate));
3110             first = 0;
3111
3112             if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT) {
3113                 debug(("+"));
3114             } else if ((HIWORD(lParam) & KF_UP)
3115                        && scan == (HIWORD(lParam) & 0xFF)) {
3116                 debug((". U"));
3117             } else {
3118                 debug((".\n"));
3119                 if (wParam >= VK_F1 && wParam <= VK_F20)
3120                     debug(("K_F%d", wParam + 1 - VK_F1));
3121                 else
3122                     switch (wParam) {
3123                       case VK_SHIFT:
3124                         debug(("SHIFT"));
3125                         break;
3126                       case VK_CONTROL:
3127                         debug(("CTRL"));
3128                         break;
3129                       case VK_MENU:
3130                         debug(("ALT"));
3131                         break;
3132                       default:
3133                         debug(("VK_%02x", wParam));
3134                     }
3135                 if (message == WM_SYSKEYDOWN || message == WM_SYSKEYUP)
3136                     debug(("*"));
3137                 debug((", S%02x", scan = (HIWORD(lParam) & 0xFF)));
3138
3139                 ch = MapVirtualKeyEx(wParam, 2, kbd_layout);
3140                 if (ch >= ' ' && ch <= '~')
3141                     debug((", '%c'", ch));
3142                 else if (ch)
3143                     debug((", $%02x", ch));
3144
3145                 if (keys[0])
3146                     debug((", KB0=%02x", keys[0]));
3147                 if (keys[1])
3148                     debug((", KB1=%02x", keys[1]));
3149                 if (keys[2])
3150                     debug((", KB2=%02x", keys[2]));
3151
3152                 if ((keystate[VK_SHIFT] & 0x80) != 0)
3153                     debug((", S"));
3154                 if ((keystate[VK_CONTROL] & 0x80) != 0)
3155                     debug((", C"));
3156                 if ((HIWORD(lParam) & KF_EXTENDED))
3157                     debug((", E"));
3158                 if ((HIWORD(lParam) & KF_UP))
3159                     debug((", U"));
3160             }
3161
3162             if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT);
3163             else if ((HIWORD(lParam) & KF_UP))
3164                 oldstate[wParam & 0xFF] ^= 0x80;
3165             else
3166                 oldstate[wParam & 0xFF] ^= 0x81;
3167
3168             for (ch = 0; ch < 256; ch++)
3169                 if (oldstate[ch] != keystate[ch])
3170                     debug((", M%02x=%02x", ch, keystate[ch]));
3171
3172             memcpy(oldstate, keystate, sizeof(oldstate));
3173         }
3174 #endif
3175
3176         if (wParam == VK_MENU && (HIWORD(lParam) & KF_EXTENDED)) {
3177             keystate[VK_RMENU] = keystate[VK_MENU];
3178         }
3179
3180
3181         /* Nastyness with NUMLock - Shift-NUMLock is left alone though */
3182         if ((cfg.funky_type == 3 ||
3183              (cfg.funky_type <= 1 && term->app_keypad_keys &&
3184               !cfg.no_applic_k))
3185             && wParam == VK_NUMLOCK && !(keystate[VK_SHIFT] & 0x80)) {
3186
3187             wParam = VK_EXECUTE;
3188
3189             /* UnToggle NUMLock */
3190             if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) == 0)
3191                 keystate[VK_NUMLOCK] ^= 1;
3192         }
3193
3194         /* And write back the 'adjusted' state */
3195         SetKeyboardState(keystate);
3196     }
3197
3198     /* Disable Auto repeat if required */
3199     if (term->repeat_off &&
3200         (HIWORD(lParam) & (KF_UP | KF_REPEAT)) == KF_REPEAT)
3201         return 0;
3202
3203     if ((HIWORD(lParam) & KF_ALTDOWN) && (keystate[VK_RMENU] & 0x80) == 0)
3204         left_alt = 1;
3205
3206     key_down = ((HIWORD(lParam) & KF_UP) == 0);
3207
3208     /* Make sure Ctrl-ALT is not the same as AltGr for ToAscii unless told. */
3209     if (left_alt && (keystate[VK_CONTROL] & 0x80)) {
3210         if (cfg.ctrlaltkeys)
3211             keystate[VK_MENU] = 0;
3212         else {
3213             keystate[VK_RMENU] = 0x80;
3214             left_alt = 0;
3215         }
3216     }
3217
3218     scan = (HIWORD(lParam) & (KF_UP | KF_EXTENDED | 0xFF));
3219     shift_state = ((keystate[VK_SHIFT] & 0x80) != 0)
3220         + ((keystate[VK_CONTROL] & 0x80) != 0) * 2;
3221
3222     /* Note if AltGr was pressed and if it was used as a compose key */
3223     if (!compose_state) {
3224         compose_key = 0x100;
3225         if (cfg.compose_key) {
3226             if (wParam == VK_MENU && (HIWORD(lParam) & KF_EXTENDED))
3227                 compose_key = wParam;
3228         }
3229         if (wParam == VK_APPS)
3230             compose_key = wParam;
3231     }
3232
3233     if (wParam == compose_key) {
3234         if (compose_state == 0
3235             && (HIWORD(lParam) & (KF_UP | KF_REPEAT)) == 0) compose_state =
3236                 1;
3237         else if (compose_state == 1 && (HIWORD(lParam) & KF_UP))
3238             compose_state = 2;
3239         else
3240             compose_state = 0;
3241     } else if (compose_state == 1 && wParam != VK_CONTROL)
3242         compose_state = 0;
3243
3244     if (compose_state > 1 && left_alt)
3245         compose_state = 0;
3246
3247     /* Sanitize the number pad if not using a PC NumPad */
3248     if (left_alt || (term->app_keypad_keys && !cfg.no_applic_k
3249                      && cfg.funky_type != 2)
3250         || cfg.funky_type == 3 || cfg.nethack_keypad || compose_state) {
3251         if ((HIWORD(lParam) & KF_EXTENDED) == 0) {
3252             int nParam = 0;
3253             switch (wParam) {
3254               case VK_INSERT:
3255                 nParam = VK_NUMPAD0;
3256                 break;
3257               case VK_END:
3258                 nParam = VK_NUMPAD1;
3259                 break;
3260               case VK_DOWN:
3261                 nParam = VK_NUMPAD2;
3262                 break;
3263               case VK_NEXT:
3264                 nParam = VK_NUMPAD3;
3265                 break;
3266               case VK_LEFT:
3267                 nParam = VK_NUMPAD4;
3268                 break;
3269               case VK_CLEAR:
3270                 nParam = VK_NUMPAD5;
3271                 break;
3272               case VK_RIGHT:
3273                 nParam = VK_NUMPAD6;
3274                 break;
3275               case VK_HOME:
3276                 nParam = VK_NUMPAD7;
3277                 break;
3278               case VK_UP:
3279                 nParam = VK_NUMPAD8;
3280                 break;
3281               case VK_PRIOR:
3282                 nParam = VK_NUMPAD9;
3283                 break;
3284               case VK_DELETE:
3285                 nParam = VK_DECIMAL;
3286                 break;
3287             }
3288             if (nParam) {
3289                 if (keystate[VK_NUMLOCK] & 1)
3290                     shift_state |= 1;
3291                 wParam = nParam;
3292             }
3293         }
3294     }
3295
3296     /* If a key is pressed and AltGr is not active */
3297     if (key_down && (keystate[VK_RMENU] & 0x80) == 0 && !compose_state) {
3298         /* Okay, prepare for most alts then ... */
3299         if (left_alt)
3300             *p++ = '\033';
3301
3302         /* Lets see if it's a pattern we know all about ... */
3303         if (wParam == VK_PRIOR && shift_state == 1) {
3304             SendMessage(hwnd, WM_VSCROLL, SB_PAGEUP, 0);
3305             return 0;
3306         }
3307         if (wParam == VK_PRIOR && shift_state == 2) {
3308             SendMessage(hwnd, WM_VSCROLL, SB_LINEUP, 0);
3309             return 0;
3310         }
3311         if (wParam == VK_NEXT && shift_state == 1) {
3312             SendMessage(hwnd, WM_VSCROLL, SB_PAGEDOWN, 0);
3313             return 0;
3314         }
3315         if (wParam == VK_NEXT && shift_state == 2) {
3316             SendMessage(hwnd, WM_VSCROLL, SB_LINEDOWN, 0);
3317             return 0;
3318         }
3319         if (wParam == VK_INSERT && shift_state == 1) {
3320             term_do_paste(term);
3321             return 0;
3322         }
3323         if (left_alt && wParam == VK_F4 && cfg.alt_f4) {
3324             return -1;
3325         }
3326         if (left_alt && wParam == VK_SPACE && cfg.alt_space) {
3327             SendMessage(hwnd, WM_SYSCOMMAND, SC_KEYMENU, 0);
3328             return -1;
3329         }
3330         if (left_alt && wParam == VK_RETURN && cfg.fullscreenonaltenter &&
3331             (cfg.resize_action != RESIZE_DISABLED)) {
3332             if ((HIWORD(lParam) & (KF_UP | KF_REPEAT)) != KF_REPEAT)
3333                 flip_full_screen();
3334             return -1;
3335         }
3336         /* Control-Numlock for app-keypad mode switch */
3337         if (wParam == VK_PAUSE && shift_state == 2) {
3338             term->app_keypad_keys ^= 1;
3339             return 0;
3340         }
3341
3342         /* Nethack keypad */
3343         if (cfg.nethack_keypad && !left_alt) {
3344             switch (wParam) {
3345               case VK_NUMPAD1:
3346                 *p++ = shift_state ? 'B' : 'b';
3347                 return p - output;
3348               case VK_NUMPAD2:
3349                 *p++ = shift_state ? 'J' : 'j';
3350                 return p - output;
3351               case VK_NUMPAD3:
3352                 *p++ = shift_state ? 'N' : 'n';
3353                 return p - output;
3354               case VK_NUMPAD4:
3355                 *p++ = shift_state ? 'H' : 'h';
3356                 return p - output;
3357               case VK_NUMPAD5:
3358                 *p++ = shift_state ? '.' : '.';
3359                 return p - output;
3360               case VK_NUMPAD6:
3361                 *p++ = shift_state ? 'L' : 'l';
3362                 return p - output;
3363               case VK_NUMPAD7:
3364                 *p++ = shift_state ? 'Y' : 'y';
3365                 return p - output;
3366               case VK_NUMPAD8:
3367                 *p++ = shift_state ? 'K' : 'k';
3368                 return p - output;
3369               case VK_NUMPAD9:
3370                 *p++ = shift_state ? 'U' : 'u';
3371                 return p - output;
3372             }
3373         }
3374
3375         /* Application Keypad */
3376         if (!left_alt) {
3377             int xkey = 0;
3378
3379             if (cfg.funky_type == 3 ||
3380                 (cfg.funky_type <= 1 &&
3381                  term->app_keypad_keys && !cfg.no_applic_k)) switch (wParam) {
3382                   case VK_EXECUTE:
3383                     xkey = 'P';
3384                     break;
3385                   case VK_DIVIDE:
3386                     xkey = 'Q';
3387                     break;
3388                   case VK_MULTIPLY:
3389                     xkey = 'R';
3390                     break;
3391                   case VK_SUBTRACT:
3392                     xkey = 'S';
3393                     break;
3394                 }
3395             if (term->app_keypad_keys && !cfg.no_applic_k)
3396                 switch (wParam) {
3397                   case VK_NUMPAD0:
3398                     xkey = 'p';
3399                     break;
3400                   case VK_NUMPAD1:
3401                     xkey = 'q';
3402                     break;
3403                   case VK_NUMPAD2:
3404                     xkey = 'r';
3405                     break;
3406                   case VK_NUMPAD3:
3407                     xkey = 's';
3408                     break;
3409                   case VK_NUMPAD4:
3410                     xkey = 't';
3411                     break;
3412                   case VK_NUMPAD5:
3413                     xkey = 'u';
3414                     break;
3415                   case VK_NUMPAD6:
3416                     xkey = 'v';
3417                     break;
3418                   case VK_NUMPAD7:
3419                     xkey = 'w';
3420                     break;
3421                   case VK_NUMPAD8:
3422                     xkey = 'x';
3423                     break;
3424                   case VK_NUMPAD9:
3425                     xkey = 'y';
3426                     break;
3427
3428                   case VK_DECIMAL:
3429                     xkey = 'n';
3430                     break;
3431                   case VK_ADD:
3432                     if (cfg.funky_type == 2) {
3433                         if (shift_state)
3434                             xkey = 'l';
3435                         else
3436                             xkey = 'k';
3437                     } else if (shift_state)
3438                         xkey = 'm';
3439                     else
3440                         xkey = 'l';
3441                     break;
3442
3443                   case VK_DIVIDE:
3444                     if (cfg.funky_type == 2)
3445                         xkey = 'o';
3446                     break;
3447                   case VK_MULTIPLY:
3448                     if (cfg.funky_type == 2)
3449                         xkey = 'j';
3450                     break;
3451                   case VK_SUBTRACT:
3452                     if (cfg.funky_type == 2)
3453                         xkey = 'm';
3454                     break;
3455
3456                   case VK_RETURN:
3457                     if (HIWORD(lParam) & KF_EXTENDED)
3458                         xkey = 'M';
3459                     break;
3460                 }
3461             if (xkey) {
3462                 if (term->vt52_mode) {
3463                     if (xkey >= 'P' && xkey <= 'S')
3464                         p += sprintf((char *) p, "\x1B%c", xkey);
3465                     else
3466                         p += sprintf((char *) p, "\x1B?%c", xkey);
3467                 } else
3468                     p += sprintf((char *) p, "\x1BO%c", xkey);
3469                 return p - output;
3470             }
3471         }
3472
3473         if (wParam == VK_BACK && shift_state == 0) {    /* Backspace */
3474             *p++ = (cfg.bksp_is_delete ? 0x7F : 0x08);
3475             *p++ = 0;
3476             return -2;
3477         }
3478         if (wParam == VK_BACK && shift_state == 1) {    /* Shift Backspace */
3479             /* We do the opposite of what is configured */
3480             *p++ = (cfg.bksp_is_delete ? 0x08 : 0x7F);
3481             *p++ = 0;
3482             return -2;
3483         }
3484         if (wParam == VK_TAB && shift_state == 1) {     /* Shift tab */
3485             *p++ = 0x1B;
3486             *p++ = '[';
3487             *p++ = 'Z';
3488             return p - output;
3489         }
3490         if (wParam == VK_SPACE && shift_state == 2) {   /* Ctrl-Space */
3491             *p++ = 0;
3492             return p - output;
3493         }
3494         if (wParam == VK_SPACE && shift_state == 3) {   /* Ctrl-Shift-Space */
3495             *p++ = 160;
3496             return p - output;
3497         }
3498         if (wParam == VK_CANCEL && shift_state == 2) {  /* Ctrl-Break */
3499             *p++ = 3;
3500             *p++ = 0;
3501             return -2;
3502         }
3503         if (wParam == VK_PAUSE) {      /* Break/Pause */
3504             *p++ = 26;
3505             *p++ = 0;
3506             return -2;
3507         }
3508         /* Control-2 to Control-8 are special */
3509         if (shift_state == 2 && wParam >= '2' && wParam <= '8') {
3510             *p++ = "\000\033\034\035\036\037\177"[wParam - '2'];
3511             return p - output;
3512         }
3513         if (shift_state == 2 && (wParam == 0xBD || wParam == 0xBF)) {
3514             *p++ = 0x1F;
3515             return p - output;
3516         }
3517         if (shift_state == 2 && wParam == 0xDF) {
3518             *p++ = 0x1C;
3519             return p - output;
3520         }
3521         if (shift_state == 0 && wParam == VK_RETURN && term->cr_lf_return) {
3522             *p++ = '\r';
3523             *p++ = '\n';
3524             return p - output;
3525         }
3526
3527         /*
3528          * Next, all the keys that do tilde codes. (ESC '[' nn '~',
3529          * for integer decimal nn.)
3530          *
3531          * We also deal with the weird ones here. Linux VCs replace F1
3532          * to F5 by ESC [ [ A to ESC [ [ E. rxvt doesn't do _that_, but
3533          * does replace Home and End (1~ and 4~) by ESC [ H and ESC O w
3534          * respectively.
3535          */
3536         code = 0;
3537         switch (wParam) {
3538           case VK_F1:
3539             code = (keystate[VK_SHIFT] & 0x80 ? 23 : 11);
3540             break;
3541           case VK_F2:
3542             code = (keystate[VK_SHIFT] & 0x80 ? 24 : 12);
3543             break;
3544           case VK_F3:
3545             code = (keystate[VK_SHIFT] & 0x80 ? 25 : 13);
3546             break;
3547           case VK_F4:
3548             code = (keystate[VK_SHIFT] & 0x80 ? 26 : 14);
3549             break;
3550           case VK_F5:
3551             code = (keystate[VK_SHIFT] & 0x80 ? 28 : 15);
3552             break;
3553           case VK_F6:
3554             code = (keystate[VK_SHIFT] & 0x80 ? 29 : 17);
3555             break;
3556           case VK_F7:
3557             code = (keystate[VK_SHIFT] & 0x80 ? 31 : 18);
3558             break;
3559           case VK_F8:
3560             code = (keystate[VK_SHIFT] & 0x80 ? 32 : 19);
3561             break;
3562           case VK_F9:
3563             code = (keystate[VK_SHIFT] & 0x80 ? 33 : 20);
3564             break;
3565           case VK_F10:
3566             code = (keystate[VK_SHIFT] & 0x80 ? 34 : 21);
3567             break;
3568           case VK_F11:
3569             code = 23;
3570             break;
3571           case VK_F12:
3572             code = 24;
3573             break;
3574           case VK_F13:
3575             code = 25;
3576             break;
3577           case VK_F14:
3578             code = 26;
3579             break;
3580           case VK_F15:
3581             code = 28;
3582             break;
3583           case VK_F16:
3584             code = 29;
3585             break;
3586           case VK_F17:
3587             code = 31;
3588             break;
3589           case VK_F18:
3590             code = 32;
3591             break;
3592           case VK_F19:
3593             code = 33;
3594             break;
3595           case VK_F20:
3596             code = 34;
3597             break;
3598         }
3599         if ((shift_state&2) == 0) switch (wParam) {
3600           case VK_HOME:
3601             code = 1;
3602             break;
3603           case VK_INSERT:
3604             code = 2;
3605             break;
3606           case VK_DELETE:
3607             code = 3;
3608             break;
3609           case VK_END:
3610             code = 4;
3611             break;
3612           case VK_PRIOR:
3613             code = 5;
3614             break;
3615           case VK_NEXT:
3616             code = 6;
3617             break;
3618         }
3619         /* Reorder edit keys to physical order */
3620         if (cfg.funky_type == 3 && code <= 6)
3621             code = "\0\2\1\4\5\3\6"[code];
3622
3623         if (term->vt52_mode && code > 0 && code <= 6) {
3624             p += sprintf((char *) p, "\x1B%c", " HLMEIG"[code]);
3625             return p - output;
3626         }
3627
3628         if (cfg.funky_type == 5 &&     /* SCO function keys */
3629             code >= 11 && code <= 34) {
3630             char codes[] = "MNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@[\\]^_`{";
3631             int index = 0;
3632             switch (wParam) {
3633               case VK_F1: index = 0; break;
3634               case VK_F2: index = 1; break;
3635               case VK_F3: index = 2; break;
3636               case VK_F4: index = 3; break;
3637               case VK_F5: index = 4; break;
3638               case VK_F6: index = 5; break;
3639               case VK_F7: index = 6; break;
3640               case VK_F8: index = 7; break;
3641               case VK_F9: index = 8; break;
3642               case VK_F10: index = 9; break;
3643               case VK_F11: index = 10; break;
3644               case VK_F12: index = 11; break;
3645             }
3646             if (keystate[VK_SHIFT] & 0x80) index += 12;
3647             if (keystate[VK_CONTROL] & 0x80) index += 24;
3648             p += sprintf((char *) p, "\x1B[%c", codes[index]);
3649             return p - output;
3650         }
3651         if (cfg.funky_type == 5 &&     /* SCO small keypad */
3652             code >= 1 && code <= 6) {
3653             char codes[] = "HL.FIG";
3654             if (code == 3) {
3655                 *p++ = '\x7F';
3656             } else {
3657                 p += sprintf((char *) p, "\x1B[%c", codes[code-1]);
3658             }
3659             return p - output;
3660         }
3661         if ((term->vt52_mode || cfg.funky_type == 4) && code >= 11 && code <= 24) {
3662             int offt = 0;
3663             if (code > 15)
3664                 offt++;
3665             if (code > 21)
3666                 offt++;
3667             if (term->vt52_mode)
3668                 p += sprintf((char *) p, "\x1B%c", code + 'P' - 11 - offt);
3669             else
3670                 p +=
3671                     sprintf((char *) p, "\x1BO%c", code + 'P' - 11 - offt);
3672             return p - output;
3673         }
3674         if (cfg.funky_type == 1 && code >= 11 && code <= 15) {
3675             p += sprintf((char *) p, "\x1B[[%c", code + 'A' - 11);
3676             return p - output;
3677         }
3678         if (cfg.funky_type == 2 && code >= 11 && code <= 14) {
3679             if (term->vt52_mode)
3680                 p += sprintf((char *) p, "\x1B%c", code + 'P' - 11);
3681             else
3682                 p += sprintf((char *) p, "\x1BO%c", code + 'P' - 11);
3683             return p - output;
3684         }
3685         if (cfg.rxvt_homeend && (code == 1 || code == 4)) {
3686             p += sprintf((char *) p, code == 1 ? "\x1B[H" : "\x1BOw");
3687             return p - output;
3688         }
3689         if (code) {
3690             p += sprintf((char *) p, "\x1B[%d~", code);
3691             return p - output;
3692         }
3693
3694         /*
3695          * Now the remaining keys (arrows and Keypad 5. Keypad 5 for
3696          * some reason seems to send VK_CLEAR to Windows...).
3697          */
3698         {
3699             char xkey = 0;
3700             switch (wParam) {
3701               case VK_UP:
3702                 xkey = 'A';
3703                 break;
3704               case VK_DOWN:
3705                 xkey = 'B';
3706                 break;
3707               case VK_RIGHT:
3708                 xkey = 'C';
3709                 break;
3710               case VK_LEFT:
3711                 xkey = 'D';
3712                 break;
3713               case VK_CLEAR:
3714                 xkey = 'G';
3715                 break;
3716             }
3717             if (xkey) {
3718                 if (term->vt52_mode)
3719                     p += sprintf((char *) p, "\x1B%c", xkey);
3720                 else {
3721                     int app_flg = (term->app_cursor_keys && !cfg.no_applic_c);
3722 #if 0
3723                     /*
3724                      * RDB: VT100 & VT102 manuals both state the
3725                      * app cursor keys only work if the app keypad
3726                      * is on.
3727                      * 
3728                      * SGT: That may well be true, but xterm
3729                      * disagrees and so does at least one
3730                      * application, so I've #if'ed this out and the
3731                      * behaviour is back to PuTTY's original: app
3732                      * cursor and app keypad are independently
3733                      * switchable modes. If anyone complains about
3734                      * _this_ I'll have to put in a configurable
3735                      * option.
3736                      */
3737                     if (!term->app_keypad_keys)
3738                         app_flg = 0;
3739 #endif
3740                     /* Useful mapping of Ctrl-arrows */
3741                     if (shift_state == 2)
3742                         app_flg = !app_flg;
3743
3744                     if (app_flg)
3745                         p += sprintf((char *) p, "\x1BO%c", xkey);
3746                     else
3747                         p += sprintf((char *) p, "\x1B[%c", xkey);
3748                 }
3749                 return p - output;
3750             }
3751         }
3752
3753         /*
3754          * Finally, deal with Return ourselves. (Win95 seems to
3755          * foul it up when Alt is pressed, for some reason.)
3756          */
3757         if (wParam == VK_RETURN) {     /* Return */
3758             *p++ = 0x0D;
3759             *p++ = 0;
3760             return -2;
3761         }
3762
3763         if (left_alt && wParam >= VK_NUMPAD0 && wParam <= VK_NUMPAD9)
3764             alt_sum = alt_sum * 10 + wParam - VK_NUMPAD0;
3765         else
3766             alt_sum = 0;
3767     }
3768
3769     /* Okay we've done everything interesting; let windows deal with 
3770      * the boring stuff */
3771     {
3772         BOOL capsOn=0;
3773
3774         /* helg: clear CAPS LOCK state if caps lock switches to cyrillic */
3775         if(cfg.xlat_capslockcyr && keystate[VK_CAPITAL] != 0) {
3776             capsOn= !left_alt;
3777             keystate[VK_CAPITAL] = 0;
3778         }
3779
3780         r = ToAsciiEx(wParam, scan, keystate, keys, 0, kbd_layout);
3781 #ifdef SHOW_TOASCII_RESULT
3782         if (r == 1 && !key_down) {
3783             if (alt_sum) {
3784                 if (in_utf(term) || ucsdata.dbcs_screenfont)
3785                     debug((", (U+%04x)", alt_sum));
3786                 else
3787                     debug((", LCH(%d)", alt_sum));
3788             } else {
3789                 debug((", ACH(%d)", keys[0]));
3790             }
3791         } else if (r > 0) {
3792             int r1;
3793             debug((", ASC("));
3794             for (r1 = 0; r1 < r; r1++) {
3795                 debug(("%s%d", r1 ? "," : "", keys[r1]));
3796             }
3797             debug((")"));
3798         }
3799 #endif
3800         if (r > 0) {
3801             WCHAR keybuf;
3802
3803             /*
3804              * Interrupt an ongoing paste. I'm not sure this is
3805              * sensible, but for the moment it's preferable to
3806              * having to faff about buffering things.
3807              */
3808             term_nopaste(term);
3809
3810             p = output;
3811             for (i = 0; i < r; i++) {
3812                 unsigned char ch = (unsigned char) keys[i];
3813
3814                 if (compose_state == 2 && (ch & 0x80) == 0 && ch > ' ') {
3815                     compose_char = ch;
3816                     compose_state++;
3817                     continue;
3818                 }
3819                 if (compose_state == 3 && (ch & 0x80) == 0 && ch > ' ') {
3820                     int nc;
3821                     compose_state = 0;
3822
3823                     if ((nc = check_compose(compose_char, ch)) == -1) {
3824                         MessageBeep(MB_ICONHAND);
3825                         return 0;
3826                     }
3827                     keybuf = nc;
3828                     term_seen_key_event(term);
3829                     luni_send(ldisc, &keybuf, 1, 1);
3830                     continue;
3831                 }
3832
3833                 compose_state = 0;
3834
3835                 if (!key_down) {
3836                     if (alt_sum) {
3837                         if (in_utf(term) || ucsdata.dbcs_screenfont) {
3838                             keybuf = alt_sum;
3839                             term_seen_key_event(term);
3840                             luni_send(ldisc, &keybuf, 1, 1);
3841                         } else {
3842                             ch = (char) alt_sum;
3843                             /*
3844                              * We need not bother about stdin
3845                              * backlogs here, because in GUI PuTTY
3846                              * we can't do anything about it
3847                              * anyway; there's no means of asking
3848                              * Windows to hold off on KEYDOWN
3849                              * messages. We _have_ to buffer
3850                              * everything we're sent.
3851                              */
3852                             term_seen_key_event(term);
3853                             ldisc_send(ldisc, &ch, 1, 1);
3854                         }
3855                         alt_sum = 0;
3856                     } else
3857                         term_seen_key_event(term);
3858                         lpage_send(ldisc, kbd_codepage, &ch, 1, 1);
3859                 } else {
3860                     if(capsOn && ch < 0x80) {
3861                         WCHAR cbuf[2];
3862                         cbuf[0] = 27;
3863                         cbuf[1] = xlat_uskbd2cyrllic(ch);
3864                         term_seen_key_event(term);
3865                         luni_send(ldisc, cbuf+!left_alt, 1+!!left_alt, 1);
3866                     } else {
3867                         char cbuf[2];
3868                         cbuf[0] = '\033';
3869                         cbuf[1] = ch;
3870                         term_seen_key_event(term);
3871                         lpage_send(ldisc, kbd_codepage,
3872                                    cbuf+!left_alt, 1+!!left_alt, 1);
3873                     }
3874                 }
3875                 show_mouseptr(0);
3876             }
3877
3878             /* This is so the ALT-Numpad and dead keys work correctly. */
3879             keys[0] = 0;
3880
3881             return p - output;
3882         }
3883         /* If we're definitly not building up an ALT-54321 then clear it */
3884         if (!left_alt)
3885             keys[0] = 0;
3886         /* If we will be using alt_sum fix the 256s */
3887         else if (keys[0] && (in_utf(term) || ucsdata.dbcs_screenfont))
3888             keys[0] = 10;
3889     }
3890
3891     /*
3892      * ALT alone may or may not want to bring up the System menu.
3893      * If it's not meant to, we return 0 on presses or releases of
3894      * ALT, to show that we've swallowed the keystroke. Otherwise
3895      * we return -1, which means Windows will give the keystroke
3896      * its default handling (i.e. bring up the System menu).
3897      */
3898     if (wParam == VK_MENU && !cfg.alt_only)
3899         return 0;
3900
3901     return -1;
3902 }
3903
3904 void request_paste(void *frontend)
3905 {
3906     /*
3907      * In Windows, pasting is synchronous: we can read the
3908      * clipboard with no difficulty, so request_paste() can just go
3909      * ahead and paste.
3910      */
3911     term_do_paste(term);
3912 }
3913
3914 void set_title(void *frontend, char *title)
3915 {
3916     sfree(window_name);
3917     window_name = snewn(1 + strlen(title), char);
3918     strcpy(window_name, title);
3919     if (cfg.win_name_always || !IsIconic(hwnd))
3920         SetWindowText(hwnd, title);
3921 }
3922
3923 void set_icon(void *frontend, char *title)
3924 {
3925     sfree(icon_name);
3926     icon_name = snewn(1 + strlen(title), char);
3927     strcpy(icon_name, title);
3928     if (!cfg.win_name_always && IsIconic(hwnd))
3929         SetWindowText(hwnd, title);
3930 }
3931
3932 void set_sbar(void *frontend, int total, int start, int page)
3933 {
3934     SCROLLINFO si;
3935
3936     if (is_full_screen() ? !cfg.scrollbar_in_fullscreen : !cfg.scrollbar)
3937         return;
3938
3939     si.cbSize = sizeof(si);
3940     si.fMask = SIF_ALL | SIF_DISABLENOSCROLL;
3941     si.nMin = 0;
3942     si.nMax = total - 1;
3943     si.nPage = page;
3944     si.nPos = start;
3945     if (hwnd)
3946         SetScrollInfo(hwnd, SB_VERT, &si, TRUE);
3947 }
3948
3949 Context get_ctx(void *frontend)
3950 {
3951     HDC hdc;
3952     if (hwnd) {
3953         hdc = GetDC(hwnd);
3954         if (hdc && pal)
3955             SelectPalette(hdc, pal, FALSE);
3956         return hdc;
3957     } else
3958         return NULL;
3959 }
3960
3961 void free_ctx(Context ctx)
3962 {
3963     SelectPalette(ctx, GetStockObject(DEFAULT_PALETTE), FALSE);
3964     ReleaseDC(hwnd, ctx);
3965 }
3966
3967 static void real_palette_set(int n, int r, int g, int b)
3968 {
3969     if (pal) {
3970         logpal->palPalEntry[n].peRed = r;
3971         logpal->palPalEntry[n].peGreen = g;
3972         logpal->palPalEntry[n].peBlue = b;
3973         logpal->palPalEntry[n].peFlags = PC_NOCOLLAPSE;
3974         colours[n] = PALETTERGB(r, g, b);
3975         SetPaletteEntries(pal, 0, NCOLOURS, logpal->palPalEntry);
3976     } else
3977         colours[n] = RGB(r, g, b);
3978 }
3979
3980 void palette_set(void *frontend, int n, int r, int g, int b)
3981 {
3982     static const int first[21] = {
3983         0, 2, 4, 6, 8, 10, 12, 14,
3984         1, 3, 5, 7, 9, 11, 13, 15,
3985         16, 17, 18, 20, 22
3986     };
3987     real_palette_set(first[n], r, g, b);
3988     if (first[n] >= 18)
3989         real_palette_set(first[n] + 1, r, g, b);
3990     if (pal) {
3991         HDC hdc = get_ctx(frontend);
3992         UnrealizeObject(pal);
3993         RealizePalette(hdc);
3994         free_ctx(hdc);
3995     }
3996 }
3997
3998 void palette_reset(void *frontend)
3999 {
4000     int i;
4001
4002     for (i = 0; i < NCOLOURS; i++) {
4003         if (pal) {
4004             logpal->palPalEntry[i].peRed = defpal[i].rgbtRed;
4005             logpal->palPalEntry[i].peGreen = defpal[i].rgbtGreen;
4006             logpal->palPalEntry[i].peBlue = defpal[i].rgbtBlue;
4007             logpal->palPalEntry[i].peFlags = 0;
4008             colours[i] = PALETTERGB(defpal[i].rgbtRed,
4009                                     defpal[i].rgbtGreen,
4010                                     defpal[i].rgbtBlue);
4011         } else
4012             colours[i] = RGB(defpal[i].rgbtRed,
4013                              defpal[i].rgbtGreen, defpal[i].rgbtBlue);
4014     }
4015
4016     if (pal) {
4017         HDC hdc;
4018         SetPaletteEntries(pal, 0, NCOLOURS, logpal->palPalEntry);
4019         hdc = get_ctx(frontend);
4020         RealizePalette(hdc);
4021         free_ctx(hdc);
4022     }
4023 }
4024
4025 void write_aclip(void *frontend, char *data, int len, int must_deselect)
4026 {
4027     HGLOBAL clipdata;
4028     void *lock;
4029
4030     clipdata = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, len + 1);
4031     if (!clipdata)
4032         return;
4033     lock = GlobalLock(clipdata);
4034     if (!lock)
4035         return;
4036     memcpy(lock, data, len);
4037     ((unsigned char *) lock)[len] = 0;
4038     GlobalUnlock(clipdata);
4039
4040     if (!must_deselect)
4041         SendMessage(hwnd, WM_IGNORE_CLIP, TRUE, 0);
4042
4043     if (OpenClipboard(hwnd)) {
4044         EmptyClipboard();
4045         SetClipboardData(CF_TEXT, clipdata);
4046         CloseClipboard();
4047     } else
4048         GlobalFree(clipdata);
4049
4050     if (!must_deselect)
4051         SendMessage(hwnd, WM_IGNORE_CLIP, FALSE, 0);
4052 }
4053
4054 /*
4055  * Note: unlike write_aclip() this will not append a nul.
4056  */
4057 void write_clip(void *frontend, wchar_t * data, int len, int must_deselect)
4058 {
4059     HGLOBAL clipdata, clipdata2, clipdata3;
4060     int len2;
4061     void *lock, *lock2, *lock3;
4062
4063     len2 = WideCharToMultiByte(CP_ACP, 0, data, len, 0, 0, NULL, NULL);
4064
4065     clipdata = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE,
4066                            len * sizeof(wchar_t));
4067     clipdata2 = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, len2);
4068
4069     if (!clipdata || !clipdata2) {
4070         if (clipdata)
4071             GlobalFree(clipdata);
4072         if (clipdata2)
4073             GlobalFree(clipdata2);
4074         return;
4075     }
4076     if (!(lock = GlobalLock(clipdata)))
4077         return;
4078     if (!(lock2 = GlobalLock(clipdata2)))
4079         return;
4080
4081     memcpy(lock, data, len * sizeof(wchar_t));
4082     WideCharToMultiByte(CP_ACP, 0, data, len, lock2, len2, NULL, NULL);
4083
4084     if (cfg.rtf_paste) {
4085         wchar_t unitab[256];
4086         char *rtf = NULL;
4087         unsigned char *tdata = (unsigned char *)lock2;
4088         wchar_t *udata = (wchar_t *)lock;
4089         int rtflen = 0, uindex = 0, tindex = 0;
4090         int rtfsize = 0;
4091         int multilen, blen, alen, totallen, i;
4092         char before[16], after[4];
4093
4094         get_unitab(CP_ACP, unitab, 0);
4095
4096         rtfsize = 100 + strlen(cfg.font.name);
4097         rtf = snewn(rtfsize, char);
4098         sprintf(rtf, "{\\rtf1\\ansi%d{\\fonttbl\\f0\\fmodern %s;}\\f0",
4099                 GetACP(), cfg.font.name);
4100         rtflen = strlen(rtf);
4101
4102         /*
4103          * We want to construct a piece of RTF that specifies the
4104          * same Unicode text. To do this we will read back in
4105          * parallel from the Unicode data in `udata' and the
4106          * non-Unicode data in `tdata'. For each character in
4107          * `tdata' which becomes the right thing in `udata' when
4108          * looked up in `unitab', we just copy straight over from
4109          * tdata. For each one that doesn't, we must WCToMB it
4110          * individually and produce a \u escape sequence.
4111          * 
4112          * It would probably be more robust to just bite the bullet
4113          * and WCToMB each individual Unicode character one by one,
4114          * then MBToWC each one back to see if it was an accurate
4115          * translation; but that strikes me as a horrifying number
4116          * of Windows API calls so I want to see if this faster way
4117          * will work. If it screws up badly we can always revert to
4118          * the simple and slow way.
4119          */
4120         while (tindex < len2 && uindex < len &&
4121                tdata[tindex] && udata[uindex]) {
4122             if (tindex + 1 < len2 &&
4123                 tdata[tindex] == '\r' &&
4124                 tdata[tindex+1] == '\n') {
4125                 tindex++;
4126                 uindex++;
4127             }
4128             if (unitab[tdata[tindex]] == udata[uindex]) {
4129                 multilen = 1;
4130                 before[0] = '\0';
4131                 after[0] = '\0';
4132                 blen = alen = 0;
4133             } else {
4134                 multilen = WideCharToMultiByte(CP_ACP, 0, unitab+uindex, 1,
4135                                                NULL, 0, NULL, NULL);
4136                 if (multilen != 1) {
4137                     blen = sprintf(before, "{\\uc%d\\u%d", multilen,
4138                                    udata[uindex]);
4139                     alen = 1; strcpy(after, "}");
4140                 } else {
4141                     blen = sprintf(before, "\\u%d", udata[uindex]);
4142                     alen = 0; after[0] = '\0';
4143                 }
4144             }
4145             assert(tindex + multilen <= len2);
4146             totallen = blen + alen;
4147             for (i = 0; i < multilen; i++) {
4148                 if (tdata[tindex+i] == '\\' ||
4149                     tdata[tindex+i] == '{' ||
4150                     tdata[tindex+i] == '}')
4151                     totallen += 2;
4152                 else if (tdata[tindex+i] == 0x0D || tdata[tindex+i] == 0x0A)
4153                     totallen += 6;     /* \par\r\n */
4154                 else if (tdata[tindex+i] > 0x7E || tdata[tindex+i] < 0x20)
4155                     totallen += 4;
4156                 else
4157                     totallen++;
4158             }
4159
4160             if (rtfsize < rtflen + totallen + 3) {
4161                 rtfsize = rtflen + totallen + 512;
4162                 rtf = sresize(rtf, rtfsize, char);
4163             }
4164
4165             strcpy(rtf + rtflen, before); rtflen += blen;
4166             for (i = 0; i < multilen; i++) {
4167                 if (tdata[tindex+i] == '\\' ||
4168                     tdata[tindex+i] == '{' ||
4169                     tdata[tindex+i] == '}') {
4170                     rtf[rtflen++] = '\\';
4171                     rtf[rtflen++] = tdata[tindex+i];
4172                 } else if (tdata[tindex+i] == 0x0D || tdata[tindex+i] == 0x0A) {
4173                     rtflen += sprintf(rtf+rtflen, "\\par\r\n");
4174                 } else if (tdata[tindex+i] > 0x7E || tdata[tindex+i] < 0x20) {
4175                     rtflen += sprintf(rtf+rtflen, "\\'%02x", tdata[tindex+i]);
4176                 } else {
4177                     rtf[rtflen++] = tdata[tindex+i];
4178                 }
4179             }
4180             strcpy(rtf + rtflen, after); rtflen += alen;
4181
4182             tindex += multilen;
4183             uindex++;
4184         }
4185
4186         strcpy(rtf + rtflen, "}");
4187         rtflen += 2;
4188
4189         clipdata3 = GlobalAlloc(GMEM_DDESHARE | GMEM_MOVEABLE, rtflen);
4190         if (clipdata3 && (lock3 = GlobalLock(clipdata3)) != NULL) {
4191             strcpy(lock3, rtf);
4192             GlobalUnlock(clipdata3);
4193         }
4194         sfree(rtf);
4195     } else
4196         clipdata3 = NULL;
4197
4198     GlobalUnlock(clipdata);
4199     GlobalUnlock(clipdata2);
4200
4201     if (!must_deselect)
4202         SendMessage(hwnd, WM_IGNORE_CLIP, TRUE, 0);
4203
4204     if (OpenClipboard(hwnd)) {
4205         EmptyClipboard();
4206         SetClipboardData(CF_UNICODETEXT, clipdata);
4207         SetClipboardData(CF_TEXT, clipdata2);
4208         if (clipdata3)
4209             SetClipboardData(RegisterClipboardFormat(CF_RTF), clipdata3);
4210         CloseClipboard();
4211     } else {
4212         GlobalFree(clipdata);
4213         GlobalFree(clipdata2);
4214     }
4215
4216     if (!must_deselect)
4217         SendMessage(hwnd, WM_IGNORE_CLIP, FALSE, 0);
4218 }
4219
4220 void get_clip(void *frontend, wchar_t ** p, int *len)
4221 {
4222     static HGLOBAL clipdata = NULL;
4223     static wchar_t *converted = 0;
4224     wchar_t *p2;
4225
4226     if (converted) {
4227         sfree(converted);
4228         converted = 0;
4229     }
4230     if (!p) {
4231         if (clipdata)
4232             GlobalUnlock(clipdata);
4233         clipdata = NULL;
4234         return;
4235     } else if (OpenClipboard(NULL)) {
4236         if ((clipdata = GetClipboardData(CF_UNICODETEXT))) {
4237             CloseClipboard();
4238             *p = GlobalLock(clipdata);
4239             if (*p) {
4240                 for (p2 = *p; *p2; p2++);
4241                 *len = p2 - *p;
4242                 return;
4243             }
4244         } else if ( (clipdata = GetClipboardData(CF_TEXT)) ) {
4245             char *s;
4246             int i;
4247             CloseClipboard();
4248             s = GlobalLock(clipdata);
4249             i = MultiByteToWideChar(CP_ACP, 0, s, strlen(s) + 1, 0, 0);
4250             *p = converted = snewn(i, wchar_t);
4251             MultiByteToWideChar(CP_ACP, 0, s, strlen(s) + 1, converted, i);
4252             *len = i - 1;
4253             return;
4254         } else
4255             CloseClipboard();
4256     }
4257
4258     *p = NULL;
4259     *len = 0;
4260 }
4261
4262 #if 0
4263 /*
4264  * Move `lines' lines from position `from' to position `to' in the
4265  * window.
4266  */
4267 void optimised_move(void *frontend, int to, int from, int lines)
4268 {
4269     RECT r;
4270     int min, max;
4271
4272     min = (to < from ? to : from);
4273     max = to + from - min;
4274
4275     r.left = offset_width;
4276     r.right = offset_width + term->cols * font_width;
4277     r.top = offset_height + min * font_height;
4278     r.bottom = offset_height + (max + lines) * font_height;
4279     ScrollWindow(hwnd, 0, (to - from) * font_height, &r, &r);
4280 }
4281 #endif
4282
4283 /*
4284  * Print a message box and perform a fatal exit.
4285  */
4286 void fatalbox(char *fmt, ...)
4287 {
4288     va_list ap;
4289     char stuff[200], morestuff[100];
4290
4291     va_start(ap, fmt);
4292     vsprintf(stuff, fmt, ap);
4293     va_end(ap);
4294     sprintf(morestuff, "%.70s Fatal Error", appname);
4295     MessageBox(hwnd, stuff, morestuff, MB_ICONERROR | MB_OK);
4296     cleanup_exit(1);
4297 }
4298
4299 /*
4300  * Print a modal (Really Bad) message box and perform a fatal exit.
4301  */
4302 void modalfatalbox(char *fmt, ...)
4303 {
4304     va_list ap;
4305     char stuff[200], morestuff[100];
4306
4307     va_start(ap, fmt);
4308     vsprintf(stuff, fmt, ap);
4309     va_end(ap);
4310     sprintf(morestuff, "%.70s Fatal Error", appname);
4311     MessageBox(hwnd, stuff, morestuff,
4312                MB_SYSTEMMODAL | MB_ICONERROR | MB_OK);
4313     cleanup_exit(1);
4314 }
4315
4316 /*
4317  * Manage window caption / taskbar flashing, if enabled.
4318  * 0 = stop, 1 = maintain, 2 = start
4319  */
4320 static void flash_window(int mode)
4321 {
4322     static long last_flash = 0;
4323     static int flashing = 0;
4324     if ((mode == 0) || (cfg.beep_ind == B_IND_DISABLED)) {
4325         /* stop */
4326         if (flashing) {
4327             FlashWindow(hwnd, FALSE);
4328             flashing = 0;
4329         }
4330
4331     } else if (mode == 2) {
4332         /* start */
4333         if (!flashing) {
4334             last_flash = GetTickCount();
4335             flashing = 1;
4336             FlashWindow(hwnd, TRUE);
4337         }
4338
4339     } else if ((mode == 1) && (cfg.beep_ind == B_IND_FLASH)) {
4340         /* maintain */
4341         if (flashing) {
4342             long now = GetTickCount();
4343             long fdiff = now - last_flash;
4344             if (fdiff < 0 || fdiff > 450) {
4345                 last_flash = now;
4346                 FlashWindow(hwnd, TRUE);        /* toggle */
4347             }
4348         }
4349     }
4350 }
4351
4352 /*
4353  * Beep.
4354  */
4355 void beep(void *frontend, int mode)
4356 {
4357     if (mode == BELL_DEFAULT) {
4358         /*
4359          * For MessageBeep style bells, we want to be careful of
4360          * timing, because they don't have the nice property of
4361          * PlaySound bells that each one cancels the previous
4362          * active one. So we limit the rate to one per 50ms or so.
4363          */
4364         static long lastbeep = 0;
4365         long beepdiff;
4366
4367         beepdiff = GetTickCount() - lastbeep;
4368         if (beepdiff >= 0 && beepdiff < 50)
4369             return;
4370         MessageBeep(MB_OK);
4371         /*
4372          * The above MessageBeep call takes time, so we record the
4373          * time _after_ it finishes rather than before it starts.
4374          */
4375         lastbeep = GetTickCount();
4376     } else if (mode == BELL_WAVEFILE) {
4377         if (!PlaySound(cfg.bell_wavefile.path, NULL,
4378                        SND_ASYNC | SND_FILENAME)) {
4379             char buf[sizeof(cfg.bell_wavefile) + 80];
4380             char otherbuf[100];
4381             sprintf(buf, "Unable to play sound file\n%s\n"
4382                     "Using default sound instead", cfg.bell_wavefile);
4383             sprintf(otherbuf, "%.70s Sound Error", appname);
4384             MessageBox(hwnd, buf, otherbuf,
4385                        MB_OK | MB_ICONEXCLAMATION);
4386             cfg.beep = BELL_DEFAULT;
4387         }
4388     }
4389     /* Otherwise, either visual bell or disabled; do nothing here */
4390     if (!term->has_focus) {
4391         flash_window(2);               /* start */
4392     }
4393 }
4394
4395 /*
4396  * Minimise or restore the window in response to a server-side
4397  * request.
4398  */
4399 void set_iconic(void *frontend, int iconic)
4400 {
4401     if (IsIconic(hwnd)) {
4402         if (!iconic)
4403             ShowWindow(hwnd, SW_RESTORE);
4404     } else {
4405         if (iconic)
4406             ShowWindow(hwnd, SW_MINIMIZE);
4407     }
4408 }
4409
4410 /*
4411  * Move the window in response to a server-side request.
4412  */
4413 void move_window(void *frontend, int x, int y)
4414 {
4415     if (cfg.resize_action == RESIZE_DISABLED || 
4416         cfg.resize_action == RESIZE_FONT ||
4417         IsZoomed(hwnd))
4418        return;
4419
4420     SetWindowPos(hwnd, NULL, x, y, 0, 0, SWP_NOSIZE | SWP_NOZORDER);
4421 }
4422
4423 /*
4424  * Move the window to the top or bottom of the z-order in response
4425  * to a server-side request.
4426  */
4427 void set_zorder(void *frontend, int top)
4428 {
4429     if (cfg.alwaysontop)
4430         return;                        /* ignore */
4431     SetWindowPos(hwnd, top ? HWND_TOP : HWND_BOTTOM, 0, 0, 0, 0,
4432                  SWP_NOMOVE | SWP_NOSIZE);
4433 }
4434
4435 /*
4436  * Refresh the window in response to a server-side request.
4437  */
4438 void refresh_window(void *frontend)
4439 {
4440     InvalidateRect(hwnd, NULL, TRUE);
4441 }
4442
4443 /*
4444  * Maximise or restore the window in response to a server-side
4445  * request.
4446  */
4447 void set_zoomed(void *frontend, int zoomed)
4448 {
4449     if (IsZoomed(hwnd)) {
4450         if (!zoomed)
4451             ShowWindow(hwnd, SW_RESTORE);
4452     } else {
4453         if (zoomed)
4454             ShowWindow(hwnd, SW_MAXIMIZE);
4455     }
4456 }
4457
4458 /*
4459  * Report whether the window is iconic, for terminal reports.
4460  */
4461 int is_iconic(void *frontend)
4462 {
4463     return IsIconic(hwnd);
4464 }
4465
4466 /*
4467  * Report the window's position, for terminal reports.
4468  */
4469 void get_window_pos(void *frontend, int *x, int *y)
4470 {
4471     RECT r;
4472     GetWindowRect(hwnd, &r);
4473     *x = r.left;
4474     *y = r.top;
4475 }
4476
4477 /*
4478  * Report the window's pixel size, for terminal reports.
4479  */
4480 void get_window_pixels(void *frontend, int *x, int *y)
4481 {
4482     RECT r;
4483     GetWindowRect(hwnd, &r);
4484     *x = r.right - r.left;
4485     *y = r.bottom - r.top;
4486 }
4487
4488 /*
4489  * Return the window or icon title.
4490  */
4491 char *get_window_title(void *frontend, int icon)
4492 {
4493     return icon ? icon_name : window_name;
4494 }
4495
4496 /*
4497  * See if we're in full-screen mode.
4498  */
4499 int is_full_screen()
4500 {
4501     if (!IsZoomed(hwnd))
4502         return FALSE;
4503     if (GetWindowLong(hwnd, GWL_STYLE) & WS_CAPTION)
4504         return FALSE;
4505     return TRUE;
4506 }
4507
4508 /* Get the rect/size of a full screen window using the nearest available
4509  * monitor in multimon systems; default to something sensible if only
4510  * one monitor is present. */
4511 static int get_fullscreen_rect(RECT * ss)
4512 {
4513 #ifdef MONITOR_DEFAULTTONEAREST
4514         HMONITOR mon;
4515         MONITORINFO mi;
4516         mon = MonitorFromWindow(hwnd, MONITOR_DEFAULTTONEAREST);
4517         mi.cbSize = sizeof(mi);
4518         GetMonitorInfo(mon, &mi);
4519
4520         /* structure copy */
4521         *ss = mi.rcMonitor;
4522         return TRUE;
4523 #else
4524 /* could also use code like this:
4525         ss->left = ss->top = 0;
4526         ss->right = GetSystemMetrics(SM_CXSCREEN);
4527         ss->bottom = GetSystemMetrics(SM_CYSCREEN);
4528 */ 
4529         return GetClientRect(GetDesktopWindow(), ss);
4530 #endif
4531 }
4532
4533
4534 /*
4535  * Go full-screen. This should only be called when we are already
4536  * maximised.
4537  */
4538 void make_full_screen()
4539 {
4540     DWORD style;
4541         RECT ss;
4542
4543     assert(IsZoomed(hwnd));
4544
4545         if (is_full_screen())
4546                 return;
4547         
4548     /* Remove the window furniture. */
4549     style = GetWindowLong(hwnd, GWL_STYLE);
4550     style &= ~(WS_CAPTION | WS_BORDER | WS_THICKFRAME);
4551     if (cfg.scrollbar_in_fullscreen)
4552         style |= WS_VSCROLL;
4553     else
4554         style &= ~WS_VSCROLL;
4555     SetWindowLong(hwnd, GWL_STYLE, style);
4556
4557     /* Resize ourselves to exactly cover the nearest monitor. */
4558         get_fullscreen_rect(&ss);
4559     SetWindowPos(hwnd, HWND_TOP, ss.left, ss.top,
4560                         ss.right - ss.left,
4561                         ss.bottom - ss.top,
4562                         SWP_FRAMECHANGED);
4563
4564     /* Tick the menu item in the System menu. */
4565     CheckMenuItem(GetSystemMenu(hwnd, FALSE), IDM_FULLSCREEN,
4566                   MF_CHECKED);
4567 }
4568
4569 /*
4570  * Clear the full-screen attributes.
4571  */
4572 void clear_full_screen()
4573 {
4574     DWORD oldstyle, style;
4575
4576     /* Reinstate the window furniture. */
4577     style = oldstyle = GetWindowLong(hwnd, GWL_STYLE);
4578     style |= WS_CAPTION | WS_BORDER;
4579     if (cfg.resize_action == RESIZE_DISABLED)
4580         style &= ~WS_THICKFRAME;
4581     else
4582         style |= WS_THICKFRAME;
4583     if (cfg.scrollbar)
4584         style |= WS_VSCROLL;
4585     else
4586         style &= ~WS_VSCROLL;
4587     if (style != oldstyle) {
4588         SetWindowLong(hwnd, GWL_STYLE, style);
4589         SetWindowPos(hwnd, NULL, 0, 0, 0, 0,
4590                      SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER |
4591                      SWP_FRAMECHANGED);
4592     }
4593
4594     /* Untick the menu item in the System menu. */
4595     CheckMenuItem(GetSystemMenu(hwnd, FALSE), IDM_FULLSCREEN,
4596                   MF_UNCHECKED);
4597 }
4598
4599 /*
4600  * Toggle full-screen mode.
4601  */
4602 void flip_full_screen()
4603 {
4604     if (is_full_screen()) {
4605         ShowWindow(hwnd, SW_RESTORE);
4606     } else if (IsZoomed(hwnd)) {
4607         make_full_screen();
4608     } else {
4609         SendMessage(hwnd, WM_FULLSCR_ON_MAX, 0, 0);
4610         ShowWindow(hwnd, SW_MAXIMIZE);
4611     }
4612 }
4613
4614 void frontend_keypress(void *handle)
4615 {
4616     /*
4617      * Keypress termination in non-Close-On-Exit mode is not
4618      * currently supported in PuTTY proper, because the window
4619      * always has a perfectly good Close button anyway. So we do
4620      * nothing here.
4621      */
4622     return;
4623 }